diff --git a/app/assets/javascripts/lib/models/input_element.coffee b/app/assets/javascripts/lib/models/input_element.coffee index a42ee5699..e480d74c9 100644 --- a/app/assets/javascripts/lib/models/input_element.coffee +++ b/app/assets/javascripts/lib/models/input_element.coffee @@ -25,7 +25,7 @@ class @InputElement extends Backbone.Model @get('disabled') || App.scenario.isReadOnly() isCoupled: -> - this.isDisabled() && @get('coupling_groups') + this.isDisabled() && @get('coupling_disabled') conversions: -> conversions = @get('conversions') or [] @@ -191,8 +191,8 @@ class @InputElementList extends Backbone.Collection i.set({ user_value: def disabled: dis - # Was it disabled by a coupling? - coupled: values.coupling_groups && dis + coupled: dis && values.coupling_disabled + coupling_groups: values.coupling_groups }, { silent: true }) i.trigger('initial-set:user_value') diff --git a/app/assets/javascripts/lib/views/input_element_view.js b/app/assets/javascripts/lib/views/input_element_view.js index 17776a448..69160640a 100644 --- a/app/assets/javascripts/lib/views/input_element_view.js +++ b/app/assets/javascripts/lib/views/input_element_view.js @@ -439,7 +439,10 @@ input_element_key: this.model.get('key'), end_year: App.settings.get('end_year'), info_link: I18n.t('input_elements.common.info_link'), + coupling_icon: this.model.get('coupling_icon'), + coupling_groups: this.model.get('coupling_groups'), info_coupling: I18n.t('input_elements.common.info_coupling'), + label_groups: I18n.t('input_elements.common.coupling_groups_label'), }) ); @@ -596,6 +599,7 @@ } if (this.model.get('coupled')) { + this.$el.addClass('hidden'); this.valueElement.addClass('coupled'); this.valueElement.html(''); } @@ -603,6 +607,7 @@ this.quinn.disable(); } else { this.$el.removeClass('disabled'); + this.$el.removeClass('hidden'); this.valueElement.removeClass('coupled'); this.setTransientValue(this.quinn.model.value); this.quinn.enable(); diff --git a/app/assets/stylesheets/_slider.sass b/app/assets/stylesheets/_slider.sass index 9c9f60996..79ef23395 100644 --- a/app/assets/stylesheets/_slider.sass +++ b/app/assets/stylesheets/_slider.sass @@ -63,6 +63,17 @@ $slider-box-height: 22px margin-left: 4px width: 20px + .show-info.coupling-icon + background: asset-url("icons/link.svg") right no-repeat + color: #8f8f8f + width: 20px + display: inline-block + height: 20px + margin-bottom: -3px + &:hover + background: asset-url("icons/link.svg") right no-repeat + filter: brightness(0.5) + .reset @include input-slider-button(0px) margin-left: 0 @@ -142,6 +153,14 @@ $slider-box-height: 22px margin: -0.75rem 0 0 svg margin-bottom: -0.2rem + .coupling-groups + margin-bottom: 0.75rem + .group + background: #fff + padding: 0.2rem 0.5rem + border-radius: 2px + color: $landing-grey + margin-left: 0.25rem &.info-box-visible .show-info @@ -149,6 +168,9 @@ $slider-box-height: 22px -webkit-user-select: none -moz-user-select: none user-select: none + &.coupling-icon + background: asset-url("icons/link.svg") right no-repeat + filter: brightness(0.5) // Adjustment to vertical alignment of label and value text. label, .output @@ -162,11 +184,8 @@ $slider-box-height: 22px .output background: none cursor: default - - .output.coupled - background: asset-url("icons/link.svg") right no-repeat - color: #aaa - + &.hidden + display: none // Buttons are only visible on hovering the slider div. .reset, .decrease, .increase @@ -398,6 +417,13 @@ html.no-opacity .quinn.disabled border-top: none padding-top: 0 + // Hide coupled sliders + .with-group.unmixed:has(.hidden) + display: none + .slider:has(.hidden) + display: none + + // Inputs where values are rendered as a radio button list. .radio-collection-view diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 5d6367ee0..60fda519b 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -116,6 +116,12 @@ def format_description(text) end end + # Public: returns true if the sliders are a mix of coupling and + # ordinary sliders + def mixed_coupled?(sliders) + sliders.any?(&:coupling_icon) && !sliders.all?(&:coupling_icon) + end + # Public: Receives a settings object and converts it to a hash suitable for # serialization as JSON. def settings_as_json(setting) diff --git a/app/models/engine/input.rb b/app/models/engine/input.rb index c2cd4e123..b79a38f78 100644 --- a/app/models/engine/input.rb +++ b/app/models/engine/input.rb @@ -10,6 +10,6 @@ class Input < Dry::Struct attribute :default, Dry::Types['nominal.float'] | Dry::Types['nominal.string'] | Dry::Types['nominal.nil'] attribute :unit, Dry::Types['nominal.string'] | Dry::Types['nominal.nil'] attribute? :disabled, Dry::Types['nominal.bool'] | Dry::Types['nominal.nil'] - attribute? :coupling_groups, Dry::Types['nominal.bool'] | Dry::Types['nominal.nil'] + attribute? :coupling_disabled, Dry::Types['nominal.bool'] | Dry::Types['nominal.nil'] end end diff --git a/app/models/engine/scenario.rb b/app/models/engine/scenario.rb index 68a352508..03edc1628 100644 --- a/app/models/engine/scenario.rb +++ b/app/models/engine/scenario.rb @@ -9,7 +9,8 @@ class Scenario < Dry::Struct attribute :area_code, Dry::Types['strict.string'] attribute :balanced_values, Dry::Types['strict.hash'] - attribute :coupling, Dry::Types['strict.bool'] + attribute :active_couplings, Dry::Types['strict.array'] + attribute :inactive_couplings, Dry::Types['strict.array'] attribute :end_year, Dry::Types['strict.integer'] attribute :id, Dry::Types['strict.integer'] attribute :keep_compatible, Dry::Types['strict.bool'] @@ -29,7 +30,6 @@ class Scenario < Dry::Struct alias_method :keep_compatible?, :keep_compatible alias_method :private?, :private alias_method :edsl_exportable?, :esdl_exportable - alias_method :coupled?, :coupling # Loads multiple scenarios by ID. Excludes any missing or inaccessable scenarios. # @@ -67,6 +67,10 @@ def owned? owner.present? end + def coupled? + active_couplings.present? || inactive_couplings.present? + end + def inputs(http_client) http_client.get("/api/v3/scenarios/#{id}/inputs").body end diff --git a/app/models/input_element.rb b/app/models/input_element.rb index c103d8282..b99255da0 100644 --- a/app/models/input_element.rb +++ b/app/models/input_element.rb @@ -79,7 +79,7 @@ def json_attributes self, :unit, :share_group, :key, :related_node, :node_source_url, :step_value, :draw_to_min, :draw_to_max, :disabled, :translated_name, :sanitized_description, :fixed, - :has_flash_movie, :additional_specs, :config + :has_flash_movie, :additional_specs, :config, :coupling_icon ) end end diff --git a/app/services/uncouple_api_scenario.rb b/app/services/uncouple_api_scenario.rb index e93c16532..552fb765a 100644 --- a/app/services/uncouple_api_scenario.rb +++ b/app/services/uncouple_api_scenario.rb @@ -10,7 +10,7 @@ def initialize(http_client, id) end def call - @http_client.put("/api/v3/scenarios/#{@id}", coupling: false) + @http_client.post("/api/v3/scenarios/#{@id}/uncouple", force: true) ServiceResult.success rescue Faraday::ResourceNotFound ServiceResult.failure('Scenario not found') diff --git a/app/views/input_elements/_input_element.html b/app/views/input_elements/_input_element.html index 94bc80aac..d3947d03d 100644 --- a/app/views/input_elements/_input_element.html +++ b/app/views/input_elements/_input_element.html @@ -22,13 +22,17 @@
-
+ <% if (coupling_icon) { %> +
+ <% } else { %> +
+ <% } %>
- <% if (coupling) { %> + <% if (coupling_icon) { %>
@@ -38,6 +42,12 @@ <%= info_coupling %> +
+ <%= label_groups %> + <% _.each(coupling_groups, function (coupling_group) { %> + <%= coupling_group %> + <% }); %> +
<% } %> <%= info %> diff --git a/app/views/scenarios/_slide.html.haml b/app/views/scenarios/_slide.html.haml index 4109870e1..066c8dbd2 100644 --- a/app/views/scenarios/_slide.html.haml +++ b/app/views/scenarios/_slide.html.haml @@ -25,16 +25,17 @@ = render :partial => 'input_elements/slider', :object => input_element - slide.grouped_input_elements.each do |group, sliders| - .interface_group - %hr - %span.label - = t("accordion.#{to_yml_syntax(group)}").html_safe - - unless slide.group_sub_header.blank? - %span.sub_header_arrow - .arrow-down - = t("subheaders.#{to_yml_syntax(group)}", default: t("subheaders.#{to_yml_syntax(slide.group_sub_header)}")) - - sliders.each do |input_element| - = render :partial => 'input_elements/slider', :object => input_element + .with-group{ class: mixed_coupled?(sliders) ? 'mixed' : 'unmixed' } + .interface_group + %hr + %span.label + = t("accordion.#{to_yml_syntax(group)}").html_safe + - unless slide.group_sub_header.blank? + %span.sub_header_arrow + .arrow-down + = t("subheaders.#{to_yml_syntax(group)}", default: t("subheaders.#{to_yml_syntax(slide.group_sub_header)}")) + - sliders.each do |input_element| + = render :partial => 'input_elements/slider', :object => input_element -if lookup_context.exists?(slide.key.to_s, ['scenarios/slides'], true) = render partial: "scenarios/slides/#{slide.key}" diff --git a/config/interface/input_elements/external_coupling_ccus.yml b/config/interface/input_elements/external_coupling_ccus.yml new file mode 100644 index 000000000..08d8bce62 --- /dev/null +++ b/config/interface/input_elements/external_coupling_ccus.yml @@ -0,0 +1,25 @@ +--- +- key: external_coupling_molecules_other_utilisation_demand + step_value: 0.1 + unit: Mton + position: 100 + slide_key: supply_ccus_utilisation_storage + share_group: '' + interface_group: external_coupling_ccus_utilisation + coupling_icon: true +- key: external_coupling_energy_production_synthetic_kerosene_demand + step_value: 0.1 + unit: PJ + position: 105 + slide_key: supply_ccus_utilisation_storage + share_group: '' + interface_group: external_coupling_ccus_utilisation + coupling_icon: true +- key: external_coupling_energy_production_synthetic_methanol_demand + step_value: 0.1 + unit: PJ + position: 110 + slide_key: supply_ccus_utilisation_storage + share_group: '' + interface_group: external_coupling_ccus_utilisation + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_chemical_fertilizers.yml b/config/interface/input_elements/external_coupling_industry_chemical_fertilizers.yml new file mode 100644 index 000000000..b97806440 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_chemical_fertilizers.yml @@ -0,0 +1,385 @@ +--- +- key: external_coupling_industry_chemical_fertilizers_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_burner_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_burner_hydrogen_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_burner_coal_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_burner_crude_oil_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_burner_network_gas_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_useable_heat_input + interface_group: external_coupling_industry_chemical_fertilizers_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_total_useable_heat_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_residual_heat_share + step_value: 0.1 + unit: '%' + position: 205 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_total_excluding_electricity + step_value: 0.1 + unit: '%' + position: 210 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_electricity + step_value: 0.1 + unit: '%' + position: 215 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_total_demand + step_value: 0.1 + unit: PJ + position: 220 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_p2h_capacity + step_value: 1.0 + unit: MW + position: 225 + slide_key: demand_industry_chemical_fertilizers + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_general + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_non_energetic_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 300 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_non_energetic_input + interface_group: external_coupling_industry_chemical_fertilizers_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_non_energetic_coal_share + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_non_energetic_input + interface_group: external_coupling_industry_chemical_fertilizers_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_non_energetic_crude_oil_share + step_value: 0.1 + unit: '%' + position: 310 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_non_energetic_input + interface_group: external_coupling_industry_chemical_fertilizers_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_non_energetic_network_gas_share + step_value: 0.1 + unit: '%' + position: 315 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_non_energetic_input + interface_group: external_coupling_industry_chemical_fertilizers_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_non_energetic_hydrogen_share + step_value: 0.1 + unit: '%' + position: 320 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemicals_fertilizers_non_energetic_input + interface_group: external_coupling_industry_chemical_fertilizers_non_energetic + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_input_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_input_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_input_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_wood_pellets_input_share + step_value: 0.1 + unit: '%' + position: 415 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_input_share + step_value: 0.1 + unit: '%' + position: 420 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_input_share + step_value: 0.1 + unit: '%' + position: 425 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_input_share + step_value: 0.1 + unit: '%' + position: 430 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_steam_hot_water_input_share + step_value: 0.1 + unit: '%' + position: 435 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_waste_mix_input_share + step_value: 0.1 + unit: '%' + position: 440 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_electricity_input_share + step_value: 0.1 + unit: '%' + position: 445 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_input_share + step_value: 0.1 + unit: '%' + position: 450 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_input + interface_group: external_coupling_industry_chemical_fertilizers_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_output_share + step_value: 0.1 + unit: '%' + position: 500 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_output_share + step_value: 0.1 + unit: '%' + position: 505 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_output_share + step_value: 0.1 + unit: '%' + position: 510 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_kerosene_output_share + step_value: 0.1 + unit: '%' + position: 515 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_output_share + step_value: 0.1 + unit: '%' + position: 520 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_output_share + step_value: 0.1 + unit: '%' + position: 525 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_gasoline_output_share + step_value: 0.1 + unit: '%' + position: 530 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_diesel_output_share + step_value: 0.1 + unit: '%' + position: 535 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_lpg_output_share + step_value: 0.1 + unit: '%' + position: 540 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_output_share + step_value: 0.1 + unit: '%' + position: 545 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_loss_output_share + step_value: 0.1 + unit: '%' + position: 550 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_output_share + step_value: 0.1 + unit: '%' + position: 555 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_heavy_fuel_oil_output_share + step_value: 0.1 + unit: '%' + position: 560 + slide_key: demand_industry_chemical_fertilizers + share_group: external_coupling_chemical_fertilizers_transformation_output + interface_group: external_coupling_industry_chemical_fertilizers_transformation_output + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_p2h_wtp + step_value: 0.1 + unit: "€/MWh" + position: 600 + slide_key: flexibility_flexibility_power_to_heat_for_industry + share_group: '' + interface_group: external_coupling_industry_willingness_to_pay + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_combustion_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 700 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_combustion_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_combustion_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 705 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_combustion_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_combustion_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 710 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_combustion_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_processes_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 800 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_processes_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_processes_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 805 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_processes_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_fertilizers_processes_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 810 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_fertilizers_processes_ccus + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_chemical_other.yml b/config/interface/input_elements/external_coupling_industry_chemical_other.yml new file mode 100644 index 000000000..be903f79d --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_chemical_other.yml @@ -0,0 +1,385 @@ +--- +- key: external_coupling_industry_chemical_other_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_burner_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_heater_electricity_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_burner_network_gas_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_burner_coal_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_steam_recompression_electricity_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_burner_crude_oil_share + step_value: 0.1 + unit: '%' + position: 130 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_heatpump_water_water_electricity_share + step_value: 0.1 + unit: '%' + position: 135 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_burner_hydrogen_share + step_value: 0.1 + unit: '%' + position: 140 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_heat + interface_group: external_coupling_industry_chemical_other_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_residual_heat_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_industry_chemical_other_useable_heat + step_value: 0.001 + unit: '%' + position: 205 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_industry_chemical_other_electricity + step_value: 0.001 + unit: '%' + position: 210 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_total_demand + step_value: 0.1 + unit: PJ + position: 215 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_industry_chemical_other_total_non_energetic + step_value: 0.001 + unit: '%' + position: 220 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_industry_chemical_other_p2h_capacity + step_value: 1.0 + unit: MW + position: 225 + slide_key: demand_industry_chemical_other + share_group: '' + interface_group: external_coupling_industry_chemical_other_general + coupling_icon: true +- key: external_coupling_industry_chemical_other_non_energetic_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 300 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_non_energetic + interface_group: external_coupling_industry_chemical_other_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_non_energetic_coal_share + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_non_energetic + interface_group: external_coupling_industry_chemical_other_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_non_energetic_crude_oil_share + step_value: 0.1 + unit: '%' + position: 310 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_non_energetic + interface_group: external_coupling_industry_chemical_other_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_non_energetic_network_gas_share + step_value: 0.1 + unit: '%' + position: 315 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_non_energetic + interface_group: external_coupling_industry_chemical_other_non_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_other_non_energetic_hydrogen_share + step_value: 0.1 + unit: '%' + position: 320 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_non_energetic + interface_group: external_coupling_industry_chemical_other_non_energetic + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_input_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_input_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_input_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_wood_pellets_input_share + step_value: 0.1 + unit: '%' + position: 415 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_input_share + step_value: 0.1 + unit: '%' + position: 420 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_input_share + step_value: 0.1 + unit: '%' + position: 425 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_input_share + step_value: 0.1 + unit: '%' + position: 430 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_steam_hot_water_input_share + step_value: 0.1 + unit: '%' + position: 435 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_waste_mix_input_share + step_value: 0.1 + unit: '%' + position: 440 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_electricity_input_share + step_value: 0.1 + unit: '%' + position: 445 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_input_share + step_value: 0.1 + unit: '%' + position: 450 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_input + interface_group: external_coupling_industry_chemical_other_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_output_share + step_value: 0.1 + unit: '%' + position: 500 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_output_share + step_value: 0.1 + unit: '%' + position: 505 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_output_share + step_value: 0.1 + unit: '%' + position: 510 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_kerosene_output_share + step_value: 0.1 + unit: '%' + position: 515 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_output_share + step_value: 0.1 + unit: '%' + position: 520 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_output_share + step_value: 0.1 + unit: '%' + position: 525 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_gasoline_output_share + step_value: 0.1 + unit: '%' + position: 530 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_diesel_output_share + step_value: 0.1 + unit: '%' + position: 535 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_lpg_output_share + step_value: 0.1 + unit: '%' + position: 540 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_output_share + step_value: 0.1 + unit: '%' + position: 545 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_loss_output_share + step_value: 0.1 + unit: '%' + position: 550 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_output_share + step_value: 0.1 + unit: '%' + position: 555 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_other_transformation_external_coupling_node_heavy_fuel_oil_output_share + step_value: 0.1 + unit: '%' + position: 560 + slide_key: demand_industry_chemical_other + share_group: external_coupling_chemical_other_transformation_output + interface_group: external_coupling_industry_chemical_other_transformation_output + coupling_icon: true +- key: external_coupling_industry_chemical_other_p2h_wtp + step_value: 0.1 + unit: "€/MWh" + position: 600 + slide_key: flexibility_flexibility_power_to_heat_for_industry + share_group: '' + interface_group: external_coupling_industry_willingness_to_pay + coupling_icon: true +- key: external_coupling_industry_chemical_other_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 700 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_other_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_other_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 705 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_other_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_other_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 710 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_other_ccus + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_chemical_refineries.yml b/config/interface/input_elements/external_coupling_industry_chemical_refineries.yml new file mode 100644 index 000000000..e33e1ff3e --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_chemical_refineries.yml @@ -0,0 +1,313 @@ +--- +- key: external_coupling_industry_chemical_refineries_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_burner_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_burner_network_gas_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_burner_coal_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_burner_crude_oil_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_burner_hydrogen_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_heat + interface_group: external_coupling_industry_chemical_refineries_energetic + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_residual_heat_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_general + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_useable_heat + step_value: 0.001 + unit: '%' + position: 205 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_general + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_electricity + step_value: 0.001 + unit: '%' + position: 210 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_general + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_total_demand + step_value: 0.1 + unit: PJ + position: 215 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_general + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_p2h_capacity + step_value: 1.0 + unit: MW + position: 220 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_general + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_input_share + step_value: 0.1 + unit: '%' + position: 300 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_input_share + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_input_share + step_value: 0.1 + unit: '%' + position: 310 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_wood_pellets_input_share + step_value: 0.1 + unit: '%' + position: 315 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_input_share + step_value: 0.1 + unit: '%' + position: 320 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_input_share + step_value: 0.1 + unit: '%' + position: 325 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_input_share + step_value: 0.1 + unit: '%' + position: 330 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_steam_hot_water_input_share + step_value: 0.1 + unit: '%' + position: 335 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_waste_mix_input_share + step_value: 0.1 + unit: '%' + position: 340 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_electricity_input_share + step_value: 0.1 + unit: '%' + position: 345 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_input_share + step_value: 0.1 + unit: '%' + position: 350 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_input + interface_group: external_coupling_industry_chemical_refineries_transformation_input + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_output_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_output_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_output_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_kerosene_output_share + step_value: 0.1 + unit: '%' + position: 415 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_output_share + step_value: 0.1 + unit: '%' + position: 420 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_output_share + step_value: 0.1 + unit: '%' + position: 425 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_gasoline_output_share + step_value: 0.1 + unit: '%' + position: 430 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_diesel_output_share + step_value: 0.1 + unit: '%' + position: 435 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_lpg_output_share + step_value: 0.1 + unit: '%' + position: 440 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_output_share + step_value: 0.1 + unit: '%' + position: 445 + slide_key: demand_industry_chemical_refineries + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_loss_output_share + step_value: 0.1 + unit: '%' + position: 450 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_output_share + step_value: 0.1 + unit: '%' + position: 455 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_energy_chemical_refineries_transformation_external_coupling_node_heavy_fuel_oil_output_share + step_value: 0.1 + unit: '%' + position: 460 + slide_key: demand_industry_chemical_refineries + share_group: external_coupling_chemical_refineries_transformation_output + interface_group: external_coupling_industry_chemical_refineries_transformation_output + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_p2h_wtp + step_value: 0.1 + unit: "€/MWh" + position: 500 + slide_key: flexibility_flexibility_power_to_heat_for_industry + share_group: '' + interface_group: external_coupling_industry_willingness_to_pay + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 600 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 605 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_ccus + coupling_icon: true +- key: external_coupling_industry_chemical_refineries_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 610 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_chemical_refineries_ccus + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_chp.yml b/config/interface/input_elements/external_coupling_industry_chp.yml new file mode 100644 index 000000000..3019cbf97 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_chp.yml @@ -0,0 +1,145 @@ +--- +- key: external_coupling_efficiency_industry_chp_ultra_supercritical_coal_electricity + step_value: 1.0 + unit: '%' + position: 100 + slide_key: specs_electricity_coal_plants + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_ultra_supercritical_coal_heat + step_value: 1.0 + unit: '%' + position: 105 + slide_key: specs_electricity_coal_plants + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_electricity + step_value: 1.0 + unit: '%' + position: 200 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_electricity + step_value: 1.0 + unit: '%' + position: 205 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_electricity + step_value: 1.0 + unit: '%' + position: 210 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_heat + step_value: 1.0 + unit: '%' + position: 215 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_heat + step_value: 1.0 + unit: '%' + position: 220 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_heat + step_value: 1.0 + unit: '%' + position: 225 + slide_key: specs_electricity_gas_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_wood_pellets_electricity + step_value: 1.0 + unit: '%' + position: 300 + slide_key: specs_electricity_renewable_biomass_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_wood_pellets_heat + step_value: 1.0 + unit: '%' + position: 305 + slide_key: specs_electricity_renewable_biomass_plants + share_group: '' + interface_group: efficiency_industry_plants + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_turbine_hydrogen_electricity + step_value: 1.0 + unit: '%' + position: 400 + slide_key: specs_electricity_renewable_hydrogen_plants + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_efficiency_industry_chp_turbine_hydrogen_heat + step_value: 1.0 + unit: '%' + position: 405 + slide_key: specs_electricity_renewable_hydrogen_plants + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_combined_cycle_gas_power_fuelmix + step_value: 1.0 + unit: MW + position: 500 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_engine_gas_power_fuelmix + step_value: 1.0 + unit: MW + position: 505 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_turbine_gas_power_fuelmix + step_value: 1.0 + unit: MW + position: 510 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_turbine_hydrogen + step_value: 1.0 + unit: MW + position: 515 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_ultra_supercritical_coal + step_value: 1.0 + unit: MW + position: 520 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true +- key: external_coupling_capacity_of_industry_chp_wood_pellets + step_value: 1.0 + unit: MW + position: 525 + slide_key: supply_heat_network_industry + share_group: '' + interface_group: industry_chps + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_metal_aluminium.yml b/config/interface/input_elements/external_coupling_industry_metal_aluminium.yml new file mode 100644 index 000000000..907e93174 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_metal_aluminium.yml @@ -0,0 +1,105 @@ +--- +- key: external_coupling_industry_metal_aluminium_investment_costs + step_value: 1.0 + unit: "€/unit" + position: 100 + slide_key: demand_industry_aluminium + share_group: '' + interface_group: external_coupling_industry_metal_aluminium_costs + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_technical_lifetime + step_value: 1.0 + unit: year + position: 105 + slide_key: demand_industry_aluminium + share_group: '' + interface_group: external_coupling_industry_metal_aluminium_costs + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_fixed_om_costs + step_value: 1.0 + unit: "€/year/unit" + position: 110 + slide_key: demand_industry_aluminium + share_group: '' + interface_group: external_coupling_industry_metal_aluminium_costs + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_energetic_electricity_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_energetic_input + interface_group: external_coupling_industry_metal_aluminium_energetic + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_energetic_network_gas_share + step_value: 0.1 + unit: '%' + position: 205 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_energetic_input + interface_group: external_coupling_industry_metal_aluminium_energetic + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_energetic_hydrogen_share + step_value: 0.1 + unit: '%' + position: 210 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_energetic_input + interface_group: external_coupling_industry_metal_aluminium_energetic + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_production + step_value: 0.1 + unit: '%' + position: 300 + slide_key: demand_industry_aluminium + share_group: '' + interface_group: external_coupling_industry_metal_aluminium_general + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_efficiency + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_aluminium + share_group: '' + interface_group: external_coupling_industry_metal_aluminium_general + coupling_icon: true +- key: external_coupling_industry_aluminium_electrolysis_bat_electricity_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_production_route + interface_group: external_coupling_industry_metal_aluminium_production_route + coupling_icon: true +- key: external_coupling_industry_metal_aluminium_external_coupling_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_production_route + interface_group: external_coupling_industry_metal_aluminium_production_route + coupling_icon: true +- key: external_coupling_industry_aluminium_smeltoven_electricity_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_production_route + interface_group: external_coupling_industry_metal_aluminium_production_route + coupling_icon: true +- key: external_coupling_industry_aluminium_electrolysis_current_electricity_share + step_value: 0.1 + unit: '%' + position: 415 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_production_route + interface_group: external_coupling_industry_metal_aluminium_production_route + coupling_icon: true +- key: external_coupling_industry_aluminium_carbothermalreduction_electricity_share + step_value: 0.1 + unit: '%' + position: 420 + slide_key: demand_industry_aluminium + share_group: external_coupling_industry_aluminium_production_route + interface_group: external_coupling_industry_metal_aluminium_production_route + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_metal_other.yml b/config/interface/input_elements/external_coupling_industry_metal_other.yml new file mode 100644 index 000000000..9054ea3db --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_metal_other.yml @@ -0,0 +1,113 @@ +--- +- key: external_coupling_industry_metal_other_metals_investment_costs + step_value: 1.0 + unit: "€/unit" + position: 100 + slide_key: demand_industry_other_metals + share_group: '' + interface_group: external_coupling_industry_metal_other_costs + coupling_icon: true +- key: external_coupling_industry_metal_other_metals_technical_lifetime + step_value: 1.0 + unit: year + position: 105 + slide_key: demand_industry_other_metals + share_group: '' + interface_group: external_coupling_industry_metal_other_costs + coupling_icon: true +- key: external_coupling_industry_metal_other_metals_fixed_om_costs + step_value: 1.0 + unit: "€/year/unit" + position: 110 + slide_key: demand_industry_other_metals + share_group: '' + interface_group: external_coupling_industry_metal_other_costs + coupling_icon: true +- key: external_coupling_industry_other_metals_crude_oil_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_other_metals_heat_useable_heat_share + step_value: 0.1 + unit: '%' + position: 205 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_other_metals_electricity_share + step_value: 0.1 + unit: '%' + position: 210 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_other_metals_coal_share + step_value: 0.1 + unit: '%' + position: 215 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_other_metals_network_gas_share + step_value: 0.1 + unit: '%' + position: 220 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_other_metals_hydrogen_share + step_value: 0.1 + unit: '%' + position: 225 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_energetic_input + interface_group: external_coupling_industry_metal_other_energetic + coupling_icon: true +- key: external_coupling_industry_metal_other_metals_hydrogen_efficiency + step_value: 1.0 + unit: '%' + position: 300 + slide_key: demand_industry_other_metals + share_group: '' + interface_group: external_coupling_industry_metal_other_general + coupling_icon: true +- key: external_coupling_industry_metal_other_metals_total_demand + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_other_metals + share_group: '' + interface_group: external_coupling_industry_metal_other_general + coupling_icon: true +- key: external_coupling_industry_other_metals_external_coupling_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_production_route + interface_group: external_coupling_industry_metal_other_production_route + coupling_icon: true +- key: external_coupling_industry_other_metals_process_electricity_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_production_route + interface_group: external_coupling_industry_metal_other_production_route + coupling_icon: true +- key: external_coupling_industry_other_metals_process_heat_useable_heat_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_other_metals + share_group: external_coupling_industry_other_metal_production_route + interface_group: external_coupling_industry_metal_other_production_route + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_metal_steel.yml b/config/interface/input_elements/external_coupling_industry_metal_steel.yml new file mode 100644 index 000000000..f2f5b4f12 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_metal_steel.yml @@ -0,0 +1,217 @@ +--- +- key: external_coupling_industry_metal_steel_investment_costs + step_value: 1.0 + unit: "€/Mton" + position: 100 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_costs + coupling_icon: true +- key: external_coupling_industry_metal_steel_wacc + step_value: 1.0 + unit: '%' + position: 105 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_costs + coupling_icon: true +- key: external_coupling_industry_metal_steel_technical_lifetime + step_value: 1.0 + unit: year + position: 110 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_costs + coupling_icon: true +- key: external_coupling_industry_metal_steel_fixed_om_costs + step_value: 1.0 + unit: "€/year/Mton" + position: 115 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_costs + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_coal_gas_share + step_value: 0.1 + unit: '%' + position: 205 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_crude_oil_share + step_value: 0.1 + unit: '%' + position: 210 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 215 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_electricity_share + step_value: 0.1 + unit: '%' + position: 220 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_coal_share + step_value: 0.1 + unit: '%' + position: 225 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_cokes_share + step_value: 0.1 + unit: '%' + position: 230 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_network_gas_share + step_value: 0.1 + unit: '%' + position: 235 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_energetic_hydrogen_share + step_value: 0.1 + unit: '%' + position: 240 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_energetic_input + interface_group: external_coupling_industry_metal_steel_energetic + coupling_icon: true +- key: external_coupling_industry_metal_steel_efficiency + step_value: 1.0 + unit: '%' + position: 300 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_general + coupling_icon: true +- key: external_coupling_industry_metal_steel_total_demand + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_steel + share_group: '' + interface_group: external_coupling_industry_metal_steel_general + coupling_icon: true +- key: external_coupling_industry_metal_steel_cyclonefurnace_bof_share + step_value: 0.1 + unit: '%' + position: 400 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_external_coupling_share + step_value: 0.1 + unit: '%' + position: 405 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_blastfurnace_bof_share + step_value: 0.1 + unit: '%' + position: 410 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_scrap_hbi_eaf_share + step_value: 0.1 + unit: '%' + position: 415 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_dri_network_gas_share + step_value: 0.1 + unit: '%' + position: 420 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_dri_hydrogen_share + step_value: 0.1 + unit: '%' + position: 425 + slide_key: demand_industry_steel + share_group: external_coupling_industry_steel_production_route + interface_group: external_coupling_industry_metal_steel_production_route + coupling_icon: true +- key: external_coupling_industry_metal_steel_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 500 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_metal_steel_ccus + coupling_icon: true +- key: external_coupling_industry_metal_steel_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 505 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_metal_steel_ccus + coupling_icon: true +- key: external_coupling_industry_metal_steel_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 510 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_metal_steel_ccus + coupling_icon: true +- key: external_coupling_energy_distribution_coal_gas_final_demand_share + step_value: 0.01 + unit: '%' + position: 600 + slide_key: supply_ccus_steel_coal_gas + share_group: external_coupling_coal_gas_distribution + interface_group: external_coupling_industry_metal_steel_coal_gas + coupling_icon: true +- key: external_coupling_energy_distribution_coal_gas_energy_production_share + step_value: 0.01 + unit: '%' + position: 605 + slide_key: supply_ccus_steel_coal_gas + share_group: external_coupling_coal_gas_distribution + interface_group: external_coupling_industry_metal_steel_coal_gas + coupling_icon: true +- key: external_coupling_energy_distribution_coal_gas_chemical_feedstock_share + step_value: 0.01 + unit: '%' + position: 610 + slide_key: supply_ccus_steel_coal_gas + share_group: external_coupling_coal_gas_distribution + interface_group: external_coupling_industry_metal_steel_coal_gas + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_oil_mix.yml b/config/interface/input_elements/external_coupling_industry_oil_mix.yml new file mode 100644 index 000000000..40fa55d07 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_oil_mix.yml @@ -0,0 +1,113 @@ +--- +- key: external_coupling_industry_bio_kerosene_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_other_bio_oil_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_other_oil_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_biodiesel_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_diesel_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_kerosene_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_lpg_in_crude_oil_share + step_value: 0.1 + unit: '%' + position: 130 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil + interface_group: external_coupling_industry_oil_mix_energetic + coupling_icon: true +- key: external_coupling_industry_bio_kerosene_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 200 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_oil_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 205 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_lpg_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 210 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_biodiesel_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 215 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_diesel_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 220 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_kerosene_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 225 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_bio_oil_in_crude_oil_non_energetic_share + step_value: 0.1 + unit: '%' + position: 230 + slide_key: supply_oil_mix + share_group: external_coupling_industry_crude_oil_non_energetic + interface_group: external_coupling_industry_oil_mix_non_energetic + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_other_food.yml b/config/interface/input_elements/external_coupling_industry_other_food.yml new file mode 100644 index 000000000..ff2468ae1 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_other_food.yml @@ -0,0 +1,113 @@ +--- +- key: external_coupling_industry_other_food_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_burner_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_heater_electricity_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_burner_hydrogen_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_burner_coal_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_burner_crude_oil_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_burner_network_gas_share + step_value: 0.1 + unit: '%' + position: 130 + slide_key: demand_industry_other_food + share_group: external_coupling_other_food_heat + interface_group: external_coupling_industry_other_food_energetic + coupling_icon: true +- key: external_coupling_industry_other_food_useable_heat + step_value: 0.001 + unit: '%' + position: 200 + slide_key: demand_industry_other_food + share_group: '' + interface_group: external_coupling_industry_other_food_general + coupling_icon: true +- key: external_coupling_industry_other_food_electricity + step_value: 0.001 + unit: '%' + position: 205 + slide_key: demand_industry_other_food + share_group: '' + interface_group: external_coupling_industry_other_food_general + coupling_icon: true +- key: external_coupling_industry_other_food_p2h_capacity + step_value: 1.0 + unit: MW + position: 210 + slide_key: demand_industry_other_food + share_group: '' + interface_group: external_coupling_industry_other_food_general + coupling_icon: true +- key: external_coupling_industry_other_food_p2h_wtp + step_value: 0.1 + unit: "€/MWh" + position: 300 + slide_key: flexibility_flexibility_power_to_heat_for_industry + share_group: '' + interface_group: external_coupling_industry_willingness_to_pay + coupling_icon: true +- key: external_coupling_industry_other_food_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 400 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_food_ccus + coupling_icon: true +- key: external_coupling_industry_other_food_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 405 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_food_ccus + coupling_icon: true +- key: external_coupling_industry_other_food_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 410 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_food_ccus + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_other_non_specified.yml b/config/interface/input_elements/external_coupling_industry_other_non_specified.yml new file mode 100644 index 000000000..fa7d93a0e --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_other_non_specified.yml @@ -0,0 +1,153 @@ +--- +- key: external_coupling_industry_useful_demand_for_other_non_specified_energetic + step_value: 0.1 + unit: '%' + position: 10 + slide_key: demand_industry_aggregated_other + share_group: '' + interface_group: external_coupling_industry_other_non_specified_general + coupling_icon: true +- key: external_coupling_industry_useful_demand_for_other_non_specified_non_energetic + step_value: 0.1 + unit: '%' + position: 20 + slide_key: demand_industry_aggregated_other + share_group: '' + interface_group: external_coupling_industry_other_non_specified_general + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_wood_pellets_share_energetic + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_crude_oil_share_energetic + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_useable_heat_share_energetic + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_electricity_share_energetic + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_coal_share_energetic + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_cokes_share_energetic + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_network_gas_share_energetic + step_value: 0.1 + unit: '%' + position: 130 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_hydrogen_share_energetic + step_value: 0.1 + unit: '%' + position: 135 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_energetic + interface_group: external_coupling_industry_other_non_specified_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_ammonia_share_non_energetic + step_value: 0.1 + unit: '%' + position: 300 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_wood_pellets_share_non_energetic + step_value: 0.1 + unit: '%' + position: 305 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_coal_share_non_energetic + step_value: 0.1 + unit: '%' + position: 310 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_methanol_share_non_energetic + step_value: 0.1 + unit: '%' + position: 315 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_crude_oil_share_non_energetic + step_value: 0.1 + unit: '%' + position: 320 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_waste_mix_share_non_energetic + step_value: 0.1 + unit: '%' + position: 325 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_cokes_share_non_energetic + step_value: 0.1 + unit: '%' + position: 330 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_network_gas_share_non_energetic + step_value: 0.1 + unit: '%' + position: 335 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true +- key: external_coupling_industry_other_non_specified_industry_hydrogen_share_non_energetic + step_value: 0.1 + unit: '%' + position: 340 + slide_key: demand_industry_aggregated_other + share_group: external_coupling_other_industry_non_energetic + interface_group: external_coupling_industry_other_non_specified_non_energetic + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_industry_other_paper.yml b/config/interface/input_elements/external_coupling_industry_other_paper.yml new file mode 100644 index 000000000..66c8493a6 --- /dev/null +++ b/config/interface/input_elements/external_coupling_industry_other_paper.yml @@ -0,0 +1,113 @@ +--- +- key: external_coupling_industry_other_paper_steam_hot_water_share + step_value: 0.1 + unit: '%' + position: 100 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_burner_wood_pellets_share + step_value: 0.1 + unit: '%' + position: 105 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_heater_electricity_share + step_value: 0.1 + unit: '%' + position: 110 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_burner_hydrogen_share + step_value: 0.1 + unit: '%' + position: 115 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_burner_coal_share + step_value: 0.1 + unit: '%' + position: 120 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_burner_crude_oil_share + step_value: 0.1 + unit: '%' + position: 125 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_burner_network_gas_share + step_value: 0.1 + unit: '%' + position: 130 + slide_key: demand_industry_other_paper + share_group: external_coupling_other_paper_heat + interface_group: external_coupling_industry_other_paper_energetic + coupling_icon: true +- key: external_coupling_industry_other_paper_useable_heat + step_value: 0.001 + unit: '%' + position: 200 + slide_key: demand_industry_other_paper + share_group: '' + interface_group: external_coupling_industry_other_paper_general + coupling_icon: true +- key: external_coupling_industry_other_paper_electricity + step_value: 0.001 + unit: '%' + position: 205 + slide_key: demand_industry_other_paper + share_group: '' + interface_group: external_coupling_industry_other_paper_general + coupling_icon: true +- key: external_coupling_industry_other_paper_p2h_capacity + step_value: 1.0 + unit: MW + position: 210 + slide_key: demand_industry_other_paper + share_group: '' + interface_group: external_coupling_industry_other_paper_general + coupling_icon: true +- key: external_coupling_industry_other_paper_p2h_wtp + step_value: 0.1 + unit: "€/MWh" + position: 300 + slide_key: flexibility_flexibility_power_to_heat_for_industry + share_group: '' + interface_group: external_coupling_industry_willingness_to_pay + coupling_icon: true +- key: external_coupling_industry_other_paper_ccus_capture_potential + step_value: 1.0 + unit: '%' + position: 400 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_paper_ccus + coupling_icon: true +- key: external_coupling_industry_other_paper_ccus_electricity_use + step_value: 1.0 + unit: PJ/Mton + position: 405 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_paper_ccus + coupling_icon: true +- key: external_coupling_industry_other_paper_ccus_captured_co2 + step_value: 1.0 + unit: '%' + position: 410 + slide_key: supply_ccus_capture_industry + share_group: '' + interface_group: external_coupling_industry_other_paper_ccus + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_residual_heat.yml b/config/interface/input_elements/external_coupling_residual_heat.yml new file mode 100644 index 000000000..05c5a2b96 --- /dev/null +++ b/config/interface/input_elements/external_coupling_residual_heat.yml @@ -0,0 +1,33 @@ +--- +- key: external_coupling_energy_heat_production_ht_residual_heat_investment_costs + step_value: 1.0 + unit: "€/unit" + position: 100 + slide_key: costs_heat_sources_other + share_group: '' + interface_group: residual_heat + coupling_icon: true +- key: external_coupling_energy_heat_production_ht_residual_heat_wacc + step_value: 1.0 + unit: '%' + position: 105 + slide_key: costs_heat_sources_other + share_group: '' + interface_group: residual_heat + coupling_icon: true +- key: external_coupling_energy_heat_production_ht_residual_heat_technical_lifetime + step_value: 1.0 + unit: year + position: 110 + slide_key: costs_heat_sources_other + share_group: '' + interface_group: residual_heat + coupling_icon: true +- key: external_coupling_energy_heat_production_ht_residual_heat_fixed_om_costs + step_value: 1.0 + unit: "€/year/unit" + position: 115 + slide_key: costs_heat_sources_other + share_group: '' + interface_group: residual_heat + coupling_icon: true diff --git a/config/interface/input_elements/external_coupling_waste_chp.yml b/config/interface/input_elements/external_coupling_waste_chp.yml new file mode 100644 index 000000000..956559260 --- /dev/null +++ b/config/interface/input_elements/external_coupling_waste_chp.yml @@ -0,0 +1,81 @@ +--- +- key: external_coupling_energy_chp_supercritical_ccs_waste_mix_electrical_efficiency + step_value: 1.0 + unit: '%' + position: 100 + slide_key: specs_electricity_renewable_waste_power + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_energy_chp_supercritical_waste_mix_electrical_efficiency + step_value: 1.0 + unit: '%' + position: 105 + slide_key: specs_electricity_renewable_waste_power + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_energy_chp_supercritical_ccs_waste_mix_heat_efficiency + step_value: 1.0 + unit: '%' + position: 110 + slide_key: specs_electricity_renewable_waste_power + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_energy_chp_supercritical_waste_mix_heat_efficiency + step_value: 1.0 + unit: '%' + position: 115 + slide_key: specs_electricity_renewable_waste_power + share_group: '' + interface_group: efficiency + coupling_icon: true +- key: external_coupling_biogenic_waste_max_demand + step_value: 0.1 + unit: PJ + position: 200 + slide_key: supply_biomass_potential + share_group: '' + interface_group: '' + coupling_icon: true +- key: external_coupling_non_biogenic_waste_max_demand + step_value: 0.1 + unit: PJ + position: 205 + slide_key: supply_biomass_potential + share_group: '' + interface_group: '' + coupling_icon: true +- key: external_coupling_waste_mix_biogenic_waste_share + step_value: 0.1 + unit: '%' + position: 300 + slide_key: supply_biomass_potential + share_group: waste_mix + interface_group: external_coupling_biomass_waste_mix + coupling_icon: true +- key: external_coupling_waste_mix_non_biogenic_waste_share + step_value: 0.1 + unit: '%' + position: 305 + slide_key: supply_biomass_potential + share_group: waste_mix + interface_group: external_coupling_biomass_waste_mix + coupling_icon: true +- key: external_coupling_energy_chp_supercritical_ccs_waste_mix_captured_co2 + step_value: 1.0 + unit: '%' + position: 400 + slide_key: supply_ccus_capture_energy + share_group: '' + interface_group: power_plants + coupling_icon: true +- key: external_coupling_energy_chp_supercritical_waste_mix_capacity + step_value: 1.0 + unit: MW + position: 500 + slide_key: supply_electricity_renewable_waste_power + share_group: '' + interface_group: '' + coupling_icon: true diff --git a/config/locales/en_etm.yml b/config/locales/en_etm.yml index f5159880d..d0a0e71c8 100644 --- a/config/locales/en_etm.yml +++ b/config/locales/en_etm.yml @@ -256,6 +256,21 @@ en: share_in_residences: "% of residences" share_in_hot_water: "% of hot water demand" utilisation_dispatchable: "electricity input" + external_coupling_industry_metal_other_costs: "value" + external_coupling_industry_metal_aluminium_costs: "value" + external_coupling_industry_metal_steel_costs: "value" + external_coupling_industry_metal_other_energetic: "share" + external_coupling_industry_metal_other_production_route: "share" + external_coupling_industry_willingness_to_pay: "price" + external_coupling_industry_metal_other_general: "value" + external_coupling_industry_metal_steel_general: "value" + external_coupling_industry_metal_aluminium_general: "value" + external_coupling_industry_chemical_refineries_general: "value" + external_coupling_industry_chemical_other_general: "value" + external_coupling_industry_chemical_fertilizers_general: "value" + external_coupling_industry_other_paper_general: "value" + external_coupling_industry_other_non_specified_general: "value" + external_coupling_industry_other_food_general: "value" #------------ Output Serie Labels ------------- # scenario: @@ -624,6 +639,52 @@ en: auxiliary_space_heating_technologies: "Space heating and hot water" auxiliary_water_heating_technologies: "Hot water" share_in_hot_water: "Hot water" + external_coupling_ccus_utilisation: "Utilisation (must-run)" + external_coupling_industry_chemical_fertilizers_combustion_ccus: "Industry fertilizers (combustion emissions)" + external_coupling_industry_chemical_fertilizers_energetic: "Heat production" + external_coupling_industry_chemical_fertilizers_general: "General" + external_coupling_industry_chemical_fertilizers_non_energetic: "Non-energetic use" + external_coupling_industry_chemical_fertilizers_processes_ccus: "Industry fertilizers (process emissions)" + external_coupling_industry_chemical_fertilizers_transformation_input: "Transformation - carrier input" + external_coupling_industry_chemical_fertilizers_transformation_output: "Transformation - carrier output" + external_coupling_industry_willingness_to_pay: "Willingness to pay" + external_coupling_industry_chemical_other_ccus: "Industry other" + external_coupling_industry_chemical_other_energetic: "Heat production" + external_coupling_industry_chemical_other_general: "General" + external_coupling_industry_chemical_other_non_energetic: "Non-energetic use" + external_coupling_industry_chemical_other_transformation_input: "Transformation - carrier input" + external_coupling_industry_chemical_other_transformation_output: "Transformation - carrier output" + external_coupling_industry_chemical_refineries_ccus: "Industry refineries" + external_coupling_industry_chemical_refineries_energetic: "Heat production" + external_coupling_industry_chemical_refineries_general: "General" + external_coupling_industry_chemical_refineries_transformation_input: "Transformation - carrier input" + external_coupling_industry_chemical_refineries_transformation_output: "Transformation - carrier output" + external_coupling_industry_metal_aluminium_costs: "Costs" + external_coupling_industry_metal_aluminium_energetic: "Energetic use" + external_coupling_industry_metal_aluminium_general: "General" + external_coupling_industry_metal_aluminium_production_route: "Production route" + external_coupling_industry_metal_other_costs: "Costs" + external_coupling_industry_metal_other_energetic: "Energetic use" + external_coupling_industry_metal_other_general: "General" + external_coupling_industry_metal_other_production_route: "Production route" + external_coupling_industry_metal_steel_ccus: "Industry steel" + external_coupling_industry_metal_steel_coal_gas: "Allocation" + external_coupling_industry_metal_steel_costs: "Costs" + external_coupling_industry_metal_steel_energetic: "Energetic use" + external_coupling_industry_metal_steel_general: "General" + external_coupling_industry_metal_steel_production_route: "Production route" + external_coupling_industry_oil_mix_energetic: "Energetic oil mix industry" + external_coupling_industry_oil_mix_non_energetic: "Non-energetic oil mix industry" + external_coupling_industry_other_food_ccus: "Industry food" + external_coupling_industry_other_food_energetic: "Heat production" + external_coupling_industry_other_food_general: "General" + external_coupling_industry_other_non_specified_energetic: "Energetic use" + external_coupling_industry_other_non_specified_general: "General" + external_coupling_industry_other_non_specified_non_energetic: "Non-energetic use" + external_coupling_industry_other_paper_ccus: "Industry paper" + external_coupling_industry_other_paper_energetic: "Heat production" + external_coupling_industry_other_paper_general: "General" + external_coupling_biomass_waste_mix: "Waste mix" "or": "or" "go": "go" diff --git a/config/locales/interface/input_elements/en_common.yml b/config/locales/interface/input_elements/en_common.yml index 4a3ad8c16..50e7e2616 100644 --- a/config/locales/interface/input_elements/en_common.yml +++ b/config/locales/interface/input_elements/en_common.yml @@ -2,4 +2,5 @@ en: input_elements: common: info_link: Technical and financial properties - info_coupling: Why is this slider deactivated? + info_coupling: This slider is coupled with an external model, what does this mean? + coupling_groups_label: Part of the following couplings diff --git a/config/locales/interface/input_elements/en_external_coupling.yml b/config/locales/interface/input_elements/en_external_coupling.yml new file mode 100644 index 000000000..20e20a498 --- /dev/null +++ b/config/locales/interface/input_elements/en_external_coupling.yml @@ -0,0 +1,1143 @@ +--- +en: + input_elements: + external_coupling_molecules_other_utilisation_demand: + title: Other utilisation + description: | + CO2 demand for other utilisation + external_coupling_energy_production_synthetic_kerosene_demand: + title: Synthetic kerosene production + description: | + Energetic production of kerosene from captured CO2 + external_coupling_energy_production_synthetic_methanol_demand: + title: Synthetic methanol production + description: | + Energetic production of methanol from captured CO2 + external_coupling_industry_chemical_fertilizers_combustion_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_chemical_fertilizers_combustion_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_chemical_fertilizers_combustion_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_industry_chemical_fertilizers_steam_hot_water_share: + title: Steam network + description: | + Share of steam hot water from the steam network in energetic heat demand + external_coupling_industry_chemical_fertilizers_burner_wood_pellets_share: + title: Biomass-fired heater + description: | + Share of wood pellets burner in energetic heat demand + external_coupling_industry_chemical_fertilizers_burner_hydrogen_share: + title: Hydrogen-fired heater + description: | + Share of hybrid hydrogen heater in energetic heat demand + external_coupling_industry_chemical_fertilizers_burner_coal_share: + title: Coal-fired heater + description: | + Share of coal burner in energetic heat demand + external_coupling_industry_chemical_fertilizers_burner_crude_oil_share: + title: Oil-fired heater + description: | + Share of crude oil burner in energetic heat demand + external_coupling_industry_chemical_fertilizers_burner_network_gas_share: + title: Gas-fired heater + description: | + Share of hybrid network gas heater in energetic heat demand + external_coupling_industry_chemical_fertilizers_total_useable_heat_share: + title: Energetic heat demand for production + description: | + Share of energetic heat demand in useful energetic and non-energetic demand + external_coupling_industry_chemical_fertilizers_residual_heat_share: + title: Residual heat output + description: | + Share of residual heat potential in useful energetic and non-energetic demand (excl. electricity demand) + external_coupling_industry_chemical_fertilizers_total_excluding_electricity: + title: Energetic demand (excl. electricity) + description: | + Useful energetic and non-energetic demand (excl. electricity demand) (scaling factor) + external_coupling_industry_chemical_fertilizers_electricity: + title: Energetic demand for electricity + description: | + Useful energetic demand for electricity (excl. demand for CCUS and heat) (scaling factor) + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_total_demand: + title: Size + description: | + Useful energetic demand of industrial transformation + external_coupling_industry_chemical_fertilizers_p2h_capacity: + title: Power-to-heat boiler for gas and H2 heaters + description: | + Total capacity of hybrid hydrogen and network gas heaters + external_coupling_industry_chemical_fertilizers_non_energetic_wood_pellets_share: + title: Biomass + description: | + Share of wood pellets in non-energetic demand + external_coupling_industry_chemical_fertilizers_non_energetic_coal_share: + title: Coal + description: | + Share of coal in non-energetic demand + external_coupling_industry_chemical_fertilizers_non_energetic_crude_oil_share: + title: Oil + description: | + Share of crude oil in non-energetic demand + external_coupling_industry_chemical_fertilizers_non_energetic_network_gas_share: + title: Network gas + description: | + Share of network gas in non-energetic demand + external_coupling_industry_chemical_fertilizers_non_energetic_hydrogen_share: + title: Hydrogen + description: | + Share of hydrogen in non-energetic demand + external_coupling_industry_chemical_fertilizers_processes_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from production processes that could potentially be captured by CCS + external_coupling_industry_chemical_fertilizers_processes_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from processes + external_coupling_industry_chemical_fertilizers_processes_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from production processes that is actually captured by CCS + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_input_share: + title: Natural gas + description: | + Share of natural gas in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_input_share: + title: Ammonia + description: | + Share of ammonia in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_input_share: + title: Green gas + description: | + Share of green gas in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomass + description: | + Share of wood pellets in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_input_share: + title: Not defined + description: | + Share of not defind carrier in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Share of methanol in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_input_share: + title: Oil + description: | + Share of crude oil in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_steam_hot_water_input_share: + title: Steam network + description: | + Share of steam hot water from the steam network in input of industral transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_waste_mix_input_share: + title: Waste + description: | + Share of waste mix in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_electricity_input_share: + title: Electricity + description: | + Share of electricity in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_input_share: + title: Hydrogen + description: | + Share of hydrogen in input of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_output_share: + title: Natural gas + description: | + Share of natural gas in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_output_share: + title: Ammonia + description: | + Share of ammonia in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_output_share: + title: Green gas + description: | + Share of green gas in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_kerosene_output_share: + title: Kerosene + description: | + Share of kerosene in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Share of methanol in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_output_share: + title: Oil + description: | + Share of crude oil in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_gasoline_output_share: + title: Gasoline + description: | + Share of gasoline in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Share of diesel in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Share of LPG in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_output_share: + title: Not defined + description: | + Share of not defined carrier in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_loss_output_share: + title: Loss + description: | + Share of loss in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_output_share: + title: Hydrogen + description: | + Share of hydrogen in output of industrial transformation + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Heavy fuel oil + description: | + Share of heavy fuel oil in output of industrial transformation + external_coupling_industry_chemical_fertilizers_p2h_wtp: + title: Power-to-heat boiler for fertilizers + description: | + Willingness to pay (WTP) of hybrid hydrogen and network gas heaters + external_coupling_industry_chemical_other_ccus_capture_potential: + title: CO2 capture potential + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_chemical_other_ccus_electricity_use: + title: Potential CO2 capture from emissions + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_chemical_other_ccus_captured_co2: + title: Electricity use of CO2 capture + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_industry_chemical_other_steam_hot_water_share: + title: Captured CO2 from potential + description: | + Share of steam hot water from the steam network in energetic heat demand + external_coupling_industry_chemical_other_burner_wood_pellets_share: + title: Biomass-fired heater + description: | + Share of wood pellets burner in energetic heat demand + external_coupling_industry_chemical_other_heater_electricity_share: + title: Electric boiler + description: | + Share of electrici boiler in energetic heat demand + external_coupling_industry_chemical_other_burner_network_gas_share: + title: Gas-fired heater + description: | + Share of network gas burner in energetic heat demand + external_coupling_industry_chemical_other_burner_coal_share: + title: Coal-fired heater + description: | + Share of coal burner in energetic heat demand + external_coupling_industry_chemical_other_steam_recompression_electricity_share: + title: Mechanical vapour recompression + description: | + Share of mechanical vapour recompression in energetic heat demand + external_coupling_industry_chemical_other_burner_crude_oil_share: + title: Oil-fired heater + description: | + Share of crude oil burner in energetic heat demand + external_coupling_industry_chemical_other_heatpump_water_water_electricity_share: + title: Heat pump + description: | + Share of heat pump in energetic heat demand + external_coupling_industry_chemical_other_burner_hydrogen_share: + title: Hydrogen-fired heater + description: | + Share of hydrogen burner in energetic heat demand + external_coupling_industry_chemical_other_residual_heat_share: + title: Residual heat output + description: | + Share of residual heat potential in useful energetic demand (excl. electricity demand) + external_coupling_industry_chemical_other_useable_heat: + title: Energetic demand (excl. electricity) + description: | + Useful energetic demand (excl. electricity demand) (scaling factor) + external_coupling_industry_chemical_other_electricity: + title: Energetic demand for electricity + description: | + Useful energetic demand for electricity (excl. demand for CCUS and heat) (scaling factor) + external_coupling_energy_chemical_other_transformation_external_coupling_node_total_demand: + title: Size + description: | + Useful energetic demand of industrial transformation + external_coupling_industry_chemical_other_total_non_energetic: + title: Size (non-energetic) + description: | + Useful non-energetic demand (scaling factor) + external_coupling_industry_chemical_other_p2h_capacity: + title: Power-to-heat boiler for gas and H2 heaters + description: | + Total capacity of hybrid hydrogen and network gas heaters + external_coupling_industry_chemical_other_non_energetic_wood_pellets_share: + title: Biomass + description: | + Share of wood pellets in non-energetic demand + external_coupling_industry_chemical_other_non_energetic_coal_share: + title: Coal + description: | + Share of coal in non-energetic demand + external_coupling_industry_chemical_other_non_energetic_crude_oil_share: + title: Crude oil + description: | + Share of crude oil in non-energetic demand + external_coupling_industry_chemical_other_non_energetic_network_gas_share: + title: Network gas + description: | + Share of network gas in non-energetic demand + external_coupling_industry_chemical_other_non_energetic_hydrogen_share: + title: Hydrogen + description: | + Share of hydrogen in non-energetic demand + external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_input_share: + title: Natural gas + description: | + Share of natural gas in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_input_share: + title: Ammonia + description: | + Share of ammonia in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_input_share: + title: Green gas + description: | + Share of green gas in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomass + description: | + Share of wood pellets in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_input_share: + title: Not defined + description: | + Share of not defind carrier in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Share of methanol in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_input_share: + title: Oil + description: | + Share of crude oil in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_steam_hot_water_input_share: + title: Steam network + description: | + Share of steam hot water from the steam network in input of industral transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_waste_mix_input_share: + title: Waste + description: | + Share of waste mix in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_electricity_input_share: + title: Electricity + description: | + Share of electricity in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_input_share: + title: Hydrogen + description: | + Share of hydrogen in input of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_output_share: + title: Natural gas + description: | + Share of natural gas in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_output_share: + title: Ammonia + description: | + Share of ammonia in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_output_share: + title: Green gas + description: | + Share of green gas in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_kerosene_output_share: + title: Kerosene + description: | + Share of kerosene in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Share of methanol in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_output_share: + title: Oil + description: | + Share of crude oil in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_gasoline_output_share: + title: Gasoline + description: | + Share of gasoline in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Share of diesel in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Share of LPG in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_output_share: + title: Not defined + description: | + Share of not defined carrier in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_loss_output_share: + title: Loss + description: | + Share of loss in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_output_share: + title: Hydrogen + description: | + Share of hydrogen in output of industrial transformation + external_coupling_energy_chemical_other_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Heavy fuel oil + description: | + Share of heavy fuel oil in output of industrial transformation + external_coupling_industry_chemical_other_p2h_wtp: + title: Power-to-heat boiler for chemical industry + description: | + Willingness to pay (WTP) of hybrid hydrogen and network gas heaters + external_coupling_industry_chemical_refineries_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_chemical_refineries_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_chemical_refineries_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_industry_chemical_refineries_steam_hot_water_share: + title: Steam network + description: | + Share of steam hot water from the steam network in energetic heat demand + external_coupling_industry_chemical_refineries_burner_wood_pellets_share: + title: Biomass-fired heater + description: | + Share of wood pellets burner in energetic heat demand + external_coupling_industry_chemical_refineries_burner_network_gas_share: + title: Gas-fired heater + description: | + Share of network gas burner in energetic heat demand + external_coupling_industry_chemical_refineries_burner_coal_share: + title: Coal-fired heater + description: | + Share of coal burner in energetic heat demand + external_coupling_industry_chemical_refineries_burner_crude_oil_share: + title: Oil-fired heater + description: | + Share of crude oil burner in energetic heat demand + external_coupling_industry_chemical_refineries_burner_hydrogen_share: + title: Hydrogen-fired heater + description: | + Share of hydrogen burner in energetic heat demand + external_coupling_industry_chemical_refineries_residual_heat_share: + title: Residual heat output + description: | + Share of residual heat potential in useful energetic demand (excl. electricity demand) + external_coupling_industry_chemical_refineries_useable_heat: + title: Energetic demand (excl. electricity) + description: | + Useful energetic demand (excl. electricity demand) (scaling factor) + external_coupling_industry_chemical_refineries_electricity: + title: Energetic demand for electricity + description: | + Useful energetic demand for electricity (excl. demand for CCUS and heat) (scaling factor) + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_total_demand: + title: Size + description: | + Useful energetic demand of industrial transformation + external_coupling_industry_chemical_refineries_p2h_capacity: + title: Power-to-heat boiler for gas and H2 heaters + description: | + Total capacity of hybrid hydrogen and network gas heaters + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_input_share: + title: Natural gas + description: | + Share of natural gas in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_input_share: + title: Ammonia + description: | + Share of ammonia in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_input_share: + title: Green gas + description: | + Share of green gas in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomass + description: | + Share of wood pellets in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_input_share: + title: Not defined + description: | + Share of not defined carrier in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Share of methanol in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_input_share: + title: Oil + description: | + Share of crude oil in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_steam_hot_water_input_share: + title: Steam network + description: | + Share of steam hot water from the steam network in input of industral transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_waste_mix_input_share: + title: Waste + description: | + Share of waste mix in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_electricity_input_share: + title: Electricity + description: | + Share of electricity in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_input_share: + title: Hydrogen + description: | + Share of hydrogen in input of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_output_share: + title: Natural gas + description: | + Share of natural gas in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_output_share: + title: Ammonia + description: | + Share of ammonia in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_output_share: + title: Green gas + description: | + Share of green gas in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_kerosene_output_share: + title: Kerosene + description: | + Share of kerosene in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Share of methanol in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_output_share: + title: Oil + description: | + Share of crude oil in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_gasoline_output_share: + title: Gasoline + description: | + Share of gasoline in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Share of diesel in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Share of LPG in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_output_share: + title: Not defined + description: | + Share of not defind carrier in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_loss_output_share: + title: Loss + description: | + Share of loss in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_output_share: + title: Hydrogen + description: | + Share of hydrogen in output of industrial transformation + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Heavy fuel oil + description: | + Share of heavy fuel oil in output of industrial transformation + external_coupling_industry_chemical_refineries_p2h_wtp: + title: Power-to-heat boiler for refineries + description: | + Willingness to pay (WTP) of hybrid hydrogen and network gas heaters + external_coupling_efficiency_industry_chp_turbine_hydrogen_electricity: + title: Hydrogen turbine CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_ultra_supercritical_coal_electricity: + title: Pulverized coal CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_turbine_hydrogen_heat: + title: Hydrogen turbine CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_efficiency_industry_chp_ultra_supercritical_coal_heat: + title: Pulverized coal CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_electricity: + title: Gas CCGT CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_electricity: + title: Gas motor CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_electricity: + title: Gas turbine CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_wood_pellets_electricity: + title: Biomass CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_heat: + title: Gas CCGT CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_heat: + title: Gas motor CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_heat: + title: Gas turbine CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_efficiency_industry_chp_wood_pellets_heat: + title: Biomass CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_capacity_of_industry_chp_combined_cycle_gas_power_fuelmix: + title: Gas CCGT CHP + description: | + Installed electricity output capacity of CHP + external_coupling_capacity_of_industry_chp_engine_gas_power_fuelmix: + title: Gas motor CHP + description: | + Installed electricity output capacity of CHP + external_coupling_capacity_of_industry_chp_turbine_gas_power_fuelmix: + title: Gas turbine CHP + description: | + Installed electricity output capacity of CHP + external_coupling_capacity_of_industry_chp_turbine_hydrogen: + title: Hydrogen turbine CHP + description: | + Installed electricity output capacity of CHP + external_coupling_capacity_of_industry_chp_ultra_supercritical_coal: + title: Pulverized coal CHP + description: | + Installed electricity output capacity of CHP + external_coupling_capacity_of_industry_chp_wood_pellets: + title: Biomass CHP + description: | + Installed electricity output capacity of CHP + external_coupling_industry_metal_aluminium_investment_costs: + title: Investment costs + description: | + Initial investment costs of aluminium production + external_coupling_industry_metal_aluminium_technical_lifetime: + title: Technical lifetime + description: | + Technical lifetime of aluminium production plants + external_coupling_industry_metal_aluminium_fixed_om_costs: + title: Fixed operation and maintenance costs + description: | + Fixed operation and maintenance costs of aluminium production + external_coupling_industry_metal_aluminium_energetic_electricity_share: + title: Electricity + description: | + Share of electricity in useful energetic demand + external_coupling_industry_metal_aluminium_energetic_network_gas_share: + title: Network gas + description: | + Share of network gas in useful energetic demand + external_coupling_industry_metal_aluminium_energetic_hydrogen_share: + title: Hydrogen + description: | + Share of hydrogen in useful energetic demand + external_coupling_industry_metal_aluminium_production: + title: Production + description: | + Useful aluminium production (scaling factor) + external_coupling_industry_metal_aluminium_efficiency: + title: Conversion energetic demand to production + description: | + Useful energetic demand conversion to aluminium production + external_coupling_industry_aluminium_electrolysis_bat_electricity_share: + title: Electrolysis BAT + description: | + Share of BAT electrolysis in aluminium production + external_coupling_industry_metal_aluminium_external_coupling_share: + title: External coupling + description: | + Share of production route via external coupling in aluminium production + external_coupling_industry_aluminium_smeltoven_electricity_share: + title: Smelt oven (recycling) + description: | + Share of smelt oven in aluminium production + external_coupling_industry_aluminium_electrolysis_current_electricity_share: + title: Electrolysis + description: | + Share of current electrolysis in aluminium production + external_coupling_industry_aluminium_carbothermalreduction_electricity_share: + title: Carbothermal reduction + description: | + Share of carbothermal reduction in aluminium production + external_coupling_industry_metal_other_metals_investment_costs: + title: Investment costs + description: | + Initial investment costs of other metals production + external_coupling_industry_metal_other_metals_technical_lifetime: + title: Technical lifetime + description: | + Technical lifetime of other metals production plants + external_coupling_industry_metal_other_metals_fixed_om_costs: + title: Fixed operation and maintenance costs + description: | + Fixed operation and maintenance costs of other metals production + external_coupling_industry_other_metals_crude_oil_share: + title: Oil + description: | + Share of crude oil in useful energetic demand + external_coupling_industry_other_metals_heat_useable_heat_share: + title: Steam + description: | + Share of steam hot water from the steam network in useful energetic demand + external_coupling_industry_other_metals_electricity_share: + title: Electricity + description: | + Share of electricity in useful energetic demand + external_coupling_industry_other_metals_coal_share: + title: Coal + description: | + Share of coal in useful energetic demand + external_coupling_industry_other_metals_network_gas_share: + title: Network gas + description: | + Share of network gas in useful energetic demand + external_coupling_industry_other_metals_hydrogen_share: + title: Hydrogen + description: | + Share of hydrogen in useful energetic demand + external_coupling_industry_metal_other_metals_hydrogen_efficiency: + title: Conversion energetic demand to production + description: | + Useful energetic demand conversion to other metals production + external_coupling_industry_metal_other_metals_total_demand: + title: Production + description: | + Useful demand production other metals (scaling factor) + external_coupling_industry_other_metals_external_coupling_share: + title: External coupling + description: | + Share of production route via external coupling in other metals production + external_coupling_industry_other_metals_process_electricity_share: + title: Electricity use in process + description: | + Share of electricity use in production processes of other metals + external_coupling_industry_other_metals_process_heat_useable_heat_share: + title: Useable heat use in process + description: | + Share of useable heat use in production processes of other metals + external_coupling_industry_metal_steel_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_metal_steel_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_metal_steel_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_energy_distribution_coal_gas_final_demand_share: + title: Final demand + description: | + Share of coal gas to final demand from central coal gas distribution + external_coupling_energy_distribution_coal_gas_energy_production_share: + title: Energy production + description: | + Share of coal gas to energy production from central coal gas distribution + external_coupling_energy_distribution_coal_gas_chemical_feedstock_share: + title: Chemical feedstock + description: | + Share of coal gas to chemical feedstock production from central coal gas distribution + external_coupling_industry_metal_steel_investment_costs: + title: Investment costs + description: | + Initial investment costs of steel production + external_coupling_industry_metal_steel_wacc: + title: WACC + description: | + Weighted average cost of capital (WACC) of steel production + external_coupling_industry_metal_steel_technical_lifetime: + title: Technical lifetime + description: | + Technical lifetime of steel production plants + external_coupling_industry_metal_steel_fixed_om_costs: + title: Fixed operation and maintenance costs + description: | + Fixed operation and maintenance costs of steel production + external_coupling_industry_metal_steel_energetic_wood_pellets_share: + title: Biomass + description: | + Share of wood pellets in useful energetic demand + external_coupling_industry_metal_steel_energetic_coal_gas_share: + title: Coal gas + description: | + Share of coal gas in useful energetic demand + external_coupling_industry_metal_steel_energetic_crude_oil_share: + title: Oil + description: | + Share of crude oil in useful energetic demand + external_coupling_industry_metal_steel_energetic_steam_hot_water_share: + title: Steam network + description: | + Share of steam hot water from the steam network in useful energetic demand + external_coupling_industry_metal_steel_energetic_electricity_share: + title: Electricity + description: | + Share of electricity in useful energetic demand + external_coupling_industry_metal_steel_energetic_coal_share: + title: Coal + description: | + Share of coal in useful energetic demand + external_coupling_industry_metal_steel_energetic_cokes_share: + title: Cokes + description: | + Share of kooks in useful energetic demand + external_coupling_industry_metal_steel_energetic_network_gas_share: + title: Network gas + description: | + Share of network gas in useful energetic demand + external_coupling_industry_metal_steel_energetic_hydrogen_share: + title: Hydrogen + description: | + Share of hydrogen in useful energetic demand + external_coupling_industry_metal_steel_efficiency: + title: Production efficiency + description: | + Useful energetic conversion efficiency to steel production + external_coupling_industry_metal_steel_total_demand: + title: Production + description: | + Useful steel production (scaling factor) + external_coupling_industry_metal_steel_cyclonefurnace_bof_share: + title: Cyclone furnace + description: | + Share of cyrclone furnace BOF in aluminium production + external_coupling_industry_metal_steel_external_coupling_share: + title: External coupling + description: | + Share of production route via external coupling in steel production + external_coupling_industry_metal_steel_blastfurnace_bof_share: + title: Blast furnace + description: | + Share of blast furnace BOF in aluminium production + external_coupling_industry_metal_steel_scrap_hbi_eaf_share: + title: Recycling / HBI + description: | + Share of scrap HBI EAF in aluminium production + external_coupling_industry_metal_steel_dri_network_gas_share: + title: DRI (network gas) + description: | + Share of network gas DRI EAF in aluminium production + external_coupling_industry_metal_steel_dri_hydrogen_share: + title: DRI (hydrogen) + description: | + Share of hydrogen DRI EAF in aluminium production + external_coupling_industry_bio_kerosene_in_crude_oil_share: + title: Bio kerosene + description: | + Share of bio kerosene in industry final energetic oil demand + external_coupling_industry_other_bio_oil_in_crude_oil_share: + title: Other bio oil + description: | + Share of other bio-oil in industry final energetic oil demand + external_coupling_industry_other_oil_in_crude_oil_share: + title: Other oil + description: | + Share of other oil in industry final energetic oil demand + external_coupling_industry_biodiesel_in_crude_oil_share: + title: Biodiesel + description: | + Share of biodiesel in industry final energetic oil demand + external_coupling_industry_diesel_in_crude_oil_share: + title: Diesel + description: | + Share of diesel in industry final energetic oil demand + external_coupling_industry_kerosene_in_crude_oil_share: + title: Kerosene + description: | + Share of kerosene in industry final energetic oil demand + external_coupling_industry_lpg_in_crude_oil_share: + title: LPG + description: | + Share of LPG in industry final energetic oil demand + external_coupling_industry_bio_kerosene_in_crude_oil_non_energetic_share: + title: Bio kerosene + description: | + Share of bio kerosene in industry final non-energetic oil demand + external_coupling_industry_other_oil_in_crude_oil_non_energetic_share: + title: Other oil + description: | + Share of other oil in industry final non-energetic oil demand + external_coupling_industry_lpg_in_crude_oil_non_energetic_share: + title: LPG + description: | + Share of LPG in industry final non-energetic oil demand + external_coupling_industry_biodiesel_in_crude_oil_non_energetic_share: + title: Biodiesel + description: | + Share of biodiesel in industry final non-energetic oil demand + external_coupling_industry_diesel_in_crude_oil_non_energetic_share: + title: Diesel + description: | + Share of diesel in industry final non-energetic oil demand + external_coupling_industry_kerosene_in_crude_oil_non_energetic_share: + title: Kerosene + description: | + Share of kerosene in industry final non-energetic oil demand + external_coupling_industry_other_bio_oil_in_crude_oil_non_energetic_share: + title: Other bio oil + description: | + Share of other bio-oil in industry final non-energetic oil demand + external_coupling_industry_other_food_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_other_food_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_other_food_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_industry_other_food_steam_hot_water_share: + title: Steam network + description: | + Share of steam hot water from the steam network in energetic heat demand + external_coupling_industry_other_food_burner_wood_pellets_share: + title: Biomass-fired heater + description: | + Share of wood pellets burner in energetic heat demand + external_coupling_industry_other_food_heater_electricity_share: + title: Electric boiler + description: | + Share of electrici boiler in energetic heat demand + external_coupling_industry_other_food_burner_hydrogen_share: + title: Hydrogen-fired heater + description: | + Share of hybrid hydrogen heater in energetic heat demand + external_coupling_industry_other_food_burner_coal_share: + title: Coal-fired heater + description: | + Share of coal burner in energetic heat demand + external_coupling_industry_other_food_burner_crude_oil_share: + title: Oil-fired heater + description: | + Share of crude oil burner in energetic heat demand + external_coupling_industry_other_food_burner_network_gas_share: + title: Gas-fired heater + description: | + Share of hybrid network gas heater in energetic heat demand + external_coupling_industry_other_food_useable_heat: + title: Energetic demand (excl. electricity) + description: | + Useful energetic demand (excl. electricity demand) (scaling factor) + external_coupling_industry_other_food_electricity: + title: Energetic demand for electricity + description: | + Useful energetic demand for electricity (excl. demand for CCUS and heat) (scaling factor) + external_coupling_industry_other_food_p2h_capacity: + title: Power-to-heat boiler for gas and H2 heaters + description: | + Total capacity of hybrid hydrogen and network gas heaters + external_coupling_industry_other_food_p2h_wtp: + title: Power-to-heat boiler for food industy + description: | + Willingness to pay (WTP) of hybrid hydrogen and network gas heaters + external_coupling_industry_other_non_specified_industry_wood_pellets_share_energetic: + title: Biomass + description: | + Share of wood pellets in useful energetic demand + external_coupling_industry_other_non_specified_industry_crude_oil_share_energetic: + title: Oil + description: | + Share of crude oil in useful energetic demand + external_coupling_industry_other_non_specified_industry_useable_heat_share_energetic: + title: Steam network + description: | + Share of steam hot water from the steam network in useful energetic demand + external_coupling_industry_other_non_specified_industry_electricity_share_energetic: + title: Electricity + description: | + Share of electricity in useful energetic demand + external_coupling_industry_other_non_specified_industry_coal_share_energetic: + title: Coal + description: | + Share of coal in useful energetic demand + external_coupling_industry_other_non_specified_industry_cokes_share_energetic: + title: Cokes + description: | + Share of kooks in useful energetic demand + external_coupling_industry_other_non_specified_industry_network_gas_share_energetic: + title: Network gas + description: | + Share of network gas in useful energetic demand + external_coupling_industry_other_non_specified_industry_hydrogen_share_energetic: + title: Hydrogen + description: | + Share of hydrogen in useful energetic demand + external_coupling_industry_useful_demand_for_other_non_specified_energetic: + title: Size (energetic) + description: | + Useful energetic demand (scaling factor) + external_coupling_industry_useful_demand_for_other_non_specified_non_energetic: + title: Size (non-energetic) + description: | + Useful non-energetic demand (scaling factor) + external_coupling_industry_other_non_specified_industry_ammonia_share_non_energetic: + title: Ammonia + description: | + Share of ammonia in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_wood_pellets_share_non_energetic: + title: Biomass + description: | + Share of wood pellets in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_coal_share_non_energetic: + title: Coal + description: | + Share of coal in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_methanol_share_non_energetic: + title: Methanol + description: | + Share of methanol in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_crude_oil_share_non_energetic: + title: Oil + description: | + Share of crude oil in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_waste_mix_share_non_energetic: + title: Waste + description: | + Share of waste mix in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_cokes_share_non_energetic: + title: Cokes + description: | + Share of kooks in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_network_gas_share_non_energetic: + title: Network gas + description: | + Share of network gas in useful non-energetic demand + external_coupling_industry_other_non_specified_industry_hydrogen_share_non_energetic: + title: Hydrogen + description: | + Share of hydrogen in useful non-energetic demand + external_coupling_industry_other_paper_ccus_capture_potential: + title: Potential CO2 capture from emissions + description: | + Share of CO2 from combustion that could potentially be captured by CCS + external_coupling_industry_other_paper_ccus_electricity_use: + title: Electricity use of CO2 capture + description: | + Electricity demand per captured CO2 from combustion + external_coupling_industry_other_paper_ccus_captured_co2: + title: Captured CO2 from potential + description: | + Share of CO2 capture potential from combustion that is actually captured by CCS + external_coupling_industry_other_paper_steam_hot_water_share: + title: Steam network + description: | + Share of steam hot water from the steam network in energetic heat demand + external_coupling_industry_other_paper_burner_wood_pellets_share: + title: Biomass-fired heater + description: | + Share of wood pellets burner in energetic heat demand + external_coupling_industry_other_paper_heater_electricity_share: + title: Electric boiler + description: | + Share of electrici boiler in energetic heat demand + external_coupling_industry_other_paper_burner_hydrogen_share: + title: Hydrogen-fired heater + description: | + Share of hybrid hydrogen heater in energetic heat demand + external_coupling_industry_other_paper_burner_coal_share: + title: Coal-fired heater + description: | + Share of coal burner in energetic heat demand + external_coupling_industry_other_paper_burner_crude_oil_share: + title: Oil-fired heater + description: | + Share of crude oil burner in energetic heat demand + external_coupling_industry_other_paper_burner_network_gas_share: + title: Gas-fired heater + description: | + Share of hybrid network gas heater in energetic heat demand + external_coupling_industry_other_paper_useable_heat: + title: Energetic demand (excl. electricity) + description: | + Useful energetic demand (excl. electricity demand) (scaling factor) + external_coupling_industry_other_paper_electricity: + title: Energetic demand for electricity + description: | + Useful energetic demand for electricity (excl. demand for CCUS and heat) (scaling factor) + external_coupling_industry_other_paper_p2h_capacity: + title: Power-to-heat boiler for gas and H2 heaters + description: | + Total capacity of hybrid hydrogen and network gas heaters + external_coupling_industry_other_paper_p2h_wtp: + title: Power-to-heat boiler for paper industry + description: | + Willingness to pay (WTP) of hybrid hydrogen and network gas heaters + external_coupling_energy_heat_production_ht_residual_heat_investment_costs: + title: Investment costs + description: | + Initial investment costs of HT residual heat + external_coupling_energy_heat_production_ht_residual_heat_wacc: + title: WACC + description: | + Weighted average cost of capital (WACC) of HT residual heat + external_coupling_energy_heat_production_ht_residual_heat_technical_lifetime: + title: Technical lifetime + description: | + Technical lifetime of HT residual heat plants + external_coupling_energy_heat_production_ht_residual_heat_fixed_om_costs: + title: Fixed operation and maintenance costs + description: | + Fixed operation and maintenance costs of HT residual heat + external_coupling_energy_chp_supercritical_ccs_waste_mix_electrical_efficiency: + title: Waste CHP with CCS - electricity + description: | + Electricity output efficiency of CHP + external_coupling_energy_chp_supercritical_waste_mix_electrical_efficiency: + title: Waste CHP - electricity + description: | + Electricity output efficiency of CHP + external_coupling_energy_chp_supercritical_ccs_waste_mix_heat_efficiency: + title: Waste CHP with CCS - heat + description: | + Heat output efficiency of CHP + external_coupling_energy_chp_supercritical_waste_mix_heat_efficiency: + title: Waste CHP - heat + description: | + Heat output efficiency of CHP + external_coupling_waste_mix_biogenic_waste_share: + title: Biogenic + description: | + Share of biogenic waste in waste mix + external_coupling_waste_mix_non_biogenic_waste_share: + title: Non-biogenic + description: | + Share of non-biogenic waste in waste mix + external_coupling_energy_chp_supercritical_waste_mix_capacity: + title: Waste CHP + description: | + Installed electricity output capacity of CHP + external_coupling_biogenic_waste_max_demand: + title: Biogenic waste + description: | + Maximum domestic supply of biogenic waste + external_coupling_non_biogenic_waste_max_demand: + title: Non-biogenic waste + description: | + Maximum domestic supply of non-biogenic waste + external_coupling_energy_chp_supercritical_ccs_waste_mix_captured_co2: + title: Waste CHP + CCS + description: | + Share of installed CHP electricity output capacity equipped with CCS \ No newline at end of file diff --git a/config/locales/interface/input_elements/en_external_coupling_test.yml b/config/locales/interface/input_elements/en_external_coupling_test.yml new file mode 100644 index 000000000..4d502d9d5 --- /dev/null +++ b/config/locales/interface/input_elements/en_external_coupling_test.yml @@ -0,0 +1,14 @@ +en: + input_elements: + external_coupling_molecules_other_utilisation_demand: + title: Other utilisation + description: | + Description + external_coupling_energy_production_synthetic_kerosene_demand: + title: Synthetic kerosene + description: | + Description + external_coupling_energy_production_synthetic_methanol_demand: + title: Synthetic methanol + description: | + Description diff --git a/config/locales/interface/input_elements/nl_common.yml b/config/locales/interface/input_elements/nl_common.yml index dfbb7f5f8..0beb0d4d3 100644 --- a/config/locales/interface/input_elements/nl_common.yml +++ b/config/locales/interface/input_elements/nl_common.yml @@ -2,4 +2,5 @@ nl: input_elements: common: info_link: Technische parameters en kosten - info_coupling: Waarom is dit schuifje gedeactiveerd? + info_coupling: Deze schuif is gekoppeld aan een extern model, wat betekent dit? + coupling_groups_label: Maakt deel uit van de volgende koppelingen diff --git a/config/locales/interface/input_elements/nl_external_coupling.yml b/config/locales/interface/input_elements/nl_external_coupling.yml new file mode 100644 index 000000000..4a7d93247 --- /dev/null +++ b/config/locales/interface/input_elements/nl_external_coupling.yml @@ -0,0 +1,1143 @@ +--- +nl: + input_elements: + external_coupling_molecules_other_utilisation_demand: + title: Overig gebruik + description: | + CO2-vraag voor overig gebruik + external_coupling_energy_production_synthetic_kerosene_demand: + title: Synthetische kerosineproductie + description: | + Energetische productie van kerosine uit afgevangen CO2 + external_coupling_energy_production_synthetic_methanol_demand: + title: Synthetische methanolproductie + description: | + Energetische productie van methanol uit afgevangen CO2 + external_coupling_industry_chemical_fertilizers_combustion_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_chemical_fertilizers_combustion_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_chemical_fertilizers_combustion_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_industry_chemical_fertilizers_steam_hot_water_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_burner_wood_pellets_share: + title: Biomassaketel + description: | + Aandeel van biomassaketel in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_burner_hydrogen_share: + title: Waterstofketel + description: | + Aandeel van hybride waterstofketel in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_burner_coal_share: + title: Kolenketel + description: | + Aandeel van kolenketel in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_burner_crude_oil_share: + title: Olieketel + description: | + Aandeel van olieketel in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_burner_network_gas_share: + title: Gasketel + description: | + Het aandeel van de hybride gasketels in energetische warmtevraag + external_coupling_industry_chemical_fertilizers_total_useable_heat_share: + title: Energetische warmtevraag voor productie + description: | + Het aandeel van de energetische warmtevraag in de nuttige energetische en niet-energetische vraag + external_coupling_industry_chemical_fertilizers_residual_heat_share: + title: Productie van restwarmte + description: | + Het aandeel van het restwarmtepotentieel in nuttige energetische en niet-energetische vraag (excl. elektriciteitsvraag) + external_coupling_industry_chemical_fertilizers_total_excluding_electricity: + title: Energetische vraag (excl. elektriciteit) + description: | + Nuttige energetische en niet-energetische vraag (excl. elektriciteitsvraag) (schaalfactor) + external_coupling_industry_chemical_fertilizers_electricity: + title: Energetische elektriciteitsvraag + description: | + Nuttige energetische vraag naar elektriciteit (excl. vraag naar CCUS en warmte) (schaalfactor) + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_total_demand: + title: Grootte + description: | + Nuttige energetische vraag van industriële transformatie + external_coupling_industry_chemical_fertilizers_p2h_capacity: + title: Power-to-heat boiler voor H2 en gasketels + description: | + Totale capaciteit van hybride waterstof- en gasketels + external_coupling_industry_chemical_fertilizers_non_energetic_wood_pellets_share: + title: Biomassa + description: | + Aandeel houtpellets naar niet-energetische vraag + external_coupling_industry_chemical_fertilizers_non_energetic_coal_share: + title: Kolen + description: | + Aandeel kolen in niet-energetische vraag + external_coupling_industry_chemical_fertilizers_non_energetic_crude_oil_share: + title: Olie + description: | + Aandeel ruwe olie in niet-energetische vraag + external_coupling_industry_chemical_fertilizers_non_energetic_network_gas_share: + title: Netwerkgas + description: | + Aandeel van netwerkgas naar niet-energetische vraag + external_coupling_industry_chemical_fertilizers_non_energetic_hydrogen_share: + title: Waterstof + description: | + Aandeel waterstof in niet-energetische vraag + external_coupling_industry_chemical_fertilizers_processes_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 uit productieprocessen die mogelijk door CCS kan worden afgevangen + external_coupling_industry_chemical_fertilizers_processes_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit productieprocessen + external_coupling_industry_chemical_fertilizers_processes_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit productieprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_input_share: + title: Aardgas + description: | + Aandeel aardgas in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_input_share: + title: Ammoniak + description: | + Aandeel ammoniak in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_input_share: + title: Groen gas + description: | + Aandeel groen gas in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomassa + description: | + Aandeel houtpellets in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_input_share: + title: Niet-gedefinieerd + description: | + Aandeel in niet-gedefinieerde drager in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Aandeel methanol in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_input_share: + title: Olie + description: | + Aandeel ruwe olie in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_steam_hot_water_input_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_waste_mix_input_share: + title: Afval + description: | + Aandeel van afvalmix in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_electricity_input_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_input_share: + title: Waterstof + description: | + Aandeel van waterstof in de input van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_natural_gas_output_share: + title: Aardgas + description: | + Aandeel aardgas in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_ammonia_output_share: + title: Ammoniak + description: | + Aandeel ammoniak in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_greengas_output_share: + title: Groen gas + description: | + Aandeel groen gas in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_kerosene_output_share: + title: Kerosine + description: | + Aandeel kerosine in output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Aandeel methanol in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_crude_oil_output_share: + title: Olie + description: | + Aandeel ruwe olie in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_gasoline_output_share: + title: Benzine + description: | + Aandeel van benzine in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Aandeel van diesel in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Aandeel van LPG in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_not_defined_output_share: + title: Niet-gedefinieerd + description: | + Aandeel van niet-gedefinieerde drager in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_loss_output_share: + title: Verliezen + description: | + Aandeel van verlies in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_hydrogen_output_share: + title: Waterstof + description: | + Aandeel van waterstof in de output van industriële transformatie + external_coupling_energy_chemical_fertilizers_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Zware stookolie + description: | + Aandeel van zware stookolie in de output van industriële transformatie + external_coupling_industry_chemical_fertilizers_p2h_wtp: + title: Power-to-heat boiler voor kunstmestindustrie + description: | + Betalingsbereidheid (willingness to pay, WTP) van hybride waterstof- en gasketels + external_coupling_industry_chemical_other_ccus_capture_potential: + title: CO2-afvangpotentie + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_chemical_other_ccus_electricity_use: + title: CO2-afvangpotentieel van emissies + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_chemical_other_ccus_captured_co2: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_industry_chemical_other_steam_hot_water_share: + title: Afgevangen CO2 van potentieel + description: | + Aandeel stoom uit het stoomnetwerk in energetische warmtevraag + external_coupling_industry_chemical_other_burner_wood_pellets_share: + title: Biomassaketel + description: | + Aandeel van biomassaketel in energetische warmtevraag + external_coupling_industry_chemical_other_heater_electricity_share: + title: Elektrische boiler + description: | + Aandeel van elektrische boiler in energetische warmtevraag + external_coupling_industry_chemical_other_burner_network_gas_share: + title: Gasketel + description: | + Aandeel van gasketel in energetische warmtevraag + external_coupling_industry_chemical_other_burner_coal_share: + title: Kolenketel + description: | + Aandeel van kolenketel in energetische warmtevraag + external_coupling_industry_chemical_other_steam_recompression_electricity_share: + title: Stoomrecompressie + description: | + Aandeel van mechanische stoomcompressie in energetische warmtevraag + external_coupling_industry_chemical_other_burner_crude_oil_share: + title: Olieketel + description: | + Aandeel van olieketel in energetische warmtevraag + external_coupling_industry_chemical_other_heatpump_water_water_electricity_share: + title: Warmtepomp + description: | + Aandeel van warmtepompen in energetische warmtevraag + external_coupling_industry_chemical_other_burner_hydrogen_share: + title: Waterstofketel + description: | + Aandeel van waterstofketel in de vraag van energetische warmte + external_coupling_industry_chemical_other_residual_heat_share: + title: Productie van restwarmte + description: | + Het aandeel van het restwarmtepotentieel in nuttige energetische vraag (excl. elektriciteitsvraag) + external_coupling_industry_chemical_other_useable_heat: + title: Energetische vraag (excl. elektriciteit) + description: | + Nuttige energetische vraag (excl. elektriciteitsvraag) (schaalfactor) + external_coupling_industry_chemical_other_electricity: + title: Energetische elektriciteitsvraag + description: | + Nuttige energetische vraag naar elektriciteit (excl. vraag voor CCUS en warmte) (schaalfactor) + external_coupling_energy_chemical_other_transformation_external_coupling_node_total_demand: + title: Grootte + description: | + Nuttige energetische vraag van industriële transformatie + external_coupling_industry_chemical_other_total_non_energetic: + title: Groote (niet-energetisch) + description: | + Nuttige niet-energetische vraag (schaalfactor) + external_coupling_industry_chemical_other_p2h_capacity: + title: Power-to-heat boiler voor H2 en gasketels + description: | + Totale capaciteit van hybride waterstof- en gasketels + external_coupling_industry_chemical_other_non_energetic_wood_pellets_share: + title: Biomassa + description: | + Aandeel houtpellets naar niet-energetische vraag + external_coupling_industry_chemical_other_non_energetic_coal_share: + title: Kolen + description: | + Aandeel kolen in niet-energetische vraag + external_coupling_industry_chemical_other_non_energetic_crude_oil_share: + title: Olie + description: | + Aandeel ruwe olie in niet-energetische vraag + external_coupling_industry_chemical_other_non_energetic_network_gas_share: + title: Netwerkgas + description: | + Aandeel van netwerkgas naar niet-energetische vraag + external_coupling_industry_chemical_other_non_energetic_hydrogen_share: + title: Waterstof + description: | + Aandeel waterstof in niet-energetische vraag + external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_input_share: + title: Aardgas + description: | + Aandeel aardgas in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_input_share: + title: Ammoniak + description: | + Aandeel ammoniak in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_input_share: + title: Groen gas + description: | + Aandeel groen gas in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomassa + description: | + Aandeel houtpellets in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_input_share: + title: Niet-gedefinieerd + description: | + Aandeel in niet-gedefinieerde drager in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Aandeel methanol in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_input_share: + title: Olie + description: | + Aandeel ruwe olie in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_steam_hot_water_input_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_waste_mix_input_share: + title: Afval + description: | + Aandeel van afvalmix in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_electricity_input_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_input_share: + title: Waterstof + description: | + Aandeel van waterstof in de input van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_natural_gas_output_share: + title: Aardgas + description: | + Aandeel aardgas in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_ammonia_output_share: + title: Ammoniak + description: | + Aandeel ammoniak in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_greengas_output_share: + title: Groen gas + description: | + Aandeel groen gas in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_kerosene_output_share: + title: Kerosine + description: | + Aandeel kerosine in output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Aandeel methanol in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_crude_oil_output_share: + title: Olie + description: | + Aandeel ruwe olie in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_gasoline_output_share: + title: Benzine + description: | + Aandeel van benzine in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Aandeel van diesel in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Aandeel van LPG in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_not_defined_output_share: + title: Niet-gedefinieerd + description: | + Aandeel van niet-gedefinieerde drager in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_loss_output_share: + title: Verliezen + description: | + Aandeel van verlies in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_hydrogen_output_share: + title: Waterstof + description: | + Aandeel van waterstof in de output van industriële transformatie + external_coupling_energy_chemical_other_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Zware stookolie + description: | + Aandeel van zware stookolie in de output van industriële transformatie + external_coupling_industry_chemical_other_p2h_wtp: + title: Power-to-heat boiler voor chemische industrie + description: | + Betalingsbereidheid (willingness to pay, WTP) van hybride waterstof- en gasketels + external_coupling_industry_chemical_refineries_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_chemical_refineries_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_chemical_refineries_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_industry_chemical_refineries_steam_hot_water_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in energetische warmtevraag + external_coupling_industry_chemical_refineries_burner_wood_pellets_share: + title: Biomassaketel + description: | + Aandeel van biomassaketel in energetische warmtevraag + external_coupling_industry_chemical_refineries_burner_network_gas_share: + title: Gasketel + description: | + Aandeel van gasketel in energetische warmtevraag + external_coupling_industry_chemical_refineries_burner_coal_share: + title: Kolenketel + description: | + Aandeel van kolenketel in energetische warmtevraag + external_coupling_industry_chemical_refineries_burner_crude_oil_share: + title: Olieketel + description: | + Aandeel van olieketel in energetische warmtevraag + external_coupling_industry_chemical_refineries_burner_hydrogen_share: + title: Waterstofketel + description: | + Aandeel van waterstofketel in de vraag van energetische warmte + external_coupling_industry_chemical_refineries_residual_heat_share: + title: Productie van restwarmte + description: | + Het aandeel van het restwarmtepotentieel in nuttige energetische vraag (excl. elektriciteitsvraag) + external_coupling_industry_chemical_refineries_useable_heat: + title: Energetische vraag (excl. elektriciteit) + description: | + Nuttige energetische vraag (excl. elektriciteitsvraag) (schaalfactor) + external_coupling_industry_chemical_refineries_electricity: + title: Energetische elektriciteitsvraag + description: | + Nuttige energetische vraag naar elektriciteit (excl. vraag voor CCUS en warmte) (schaalfactor) + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_total_demand: + title: Grootte + description: | + Nuttige energetische vraag van industriële transformatie + external_coupling_industry_chemical_refineries_p2h_capacity: + title: Power-to-heat boiler voor H2 en gasketels + description: | + Totale capaciteit van hybride waterstof- en gasketels + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_input_share: + title: Aardgas + description: | + Aandeel aardgas in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_input_share: + title: Ammoniak + description: | + Aandeel ammoniak in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_input_share: + title: Groen gas + description: | + Aandeel groen gas in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_wood_pellets_input_share: + title: Biomassa + description: | + Aandeel houtpellets in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_input_share: + title: Niet-gedefinieerd + description: | + Aandeel in niet-gedefinieerde drager in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_input_share: + title: Methanol + description: | + Aandeel methanol in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_input_share: + title: Olie + description: | + Aandeel ruwe olie in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_steam_hot_water_input_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_waste_mix_input_share: + title: Afval + description: | + Aandeel van afvalmix in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_electricity_input_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_input_share: + title: Waterstof + description: | + Aandeel van waterstof in de input van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_natural_gas_output_share: + title: Aardgas + description: | + Aandeel aardgas in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_ammonia_output_share: + title: Ammoniak + description: | + Aandeel ammoniak in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_greengas_output_share: + title: Groen gas + description: | + Aandeel groen gas in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_kerosene_output_share: + title: Kerosine + description: | + Aandeel kerosine in output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_methanol_output_share: + title: Methanol + description: | + Aandeel methanol in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_crude_oil_output_share: + title: Olie + description: | + Aandeel ruwe olie in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_gasoline_output_share: + title: Benzine + description: | + Aandeel van benzine in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_diesel_output_share: + title: Diesel + description: | + Aandeel van diesel in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_lpg_output_share: + title: LPG + description: | + Aandeel van LPG in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_not_defined_output_share: + title: Niet-gedefinieerd + description: | + Aandeel van niet-gedefinieerde drager in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_loss_output_share: + title: Verliezen + description: | + Aandeel van verlies in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_hydrogen_output_share: + title: Waterstof + description: | + Aandeel van waterstof in de output van industriële transformatie + external_coupling_energy_chemical_refineries_transformation_external_coupling_node_heavy_fuel_oil_output_share: + title: Zware stookolie + description: | + Aandeel van zware stookolie in de output van industriële transformatie + external_coupling_industry_chemical_refineries_p2h_wtp: + title: Power-to-heat boiler voor raffinaderijen + description: | + Betalingsbereidheid (willingness to pay, WTP) van hybride waterstof- en gasketels + external_coupling_efficiency_industry_chp_turbine_hydrogen_electricity: + title: Waterstofturbine-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_ultra_supercritical_coal_electricity: + title: Poederkolen-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_turbine_hydrogen_heat: + title: Waterstofturbine-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_efficiency_industry_chp_ultra_supercritical_coal_heat: + title: Poederkolen-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_electricity: + title: Gas STEG WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_electricity: + title: Gasmotor-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_electricity: + title: Gasturbine-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_wood_pellets_electricity: + title: Biomassa-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_efficiency_industry_chp_combined_cycle_gas_power_fuelmix_heat: + title: Gas STEG WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_efficiency_industry_chp_engine_gas_power_fuelmix_heat: + title: Gasmotor-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_efficiency_industry_chp_turbine_gas_power_fuelmix_heat: + title: Gasturbine-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_efficiency_industry_chp_wood_pellets_heat: + title: Biomassa-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_capacity_of_industry_chp_combined_cycle_gas_power_fuelmix: + title: Gas STEG WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_capacity_of_industry_chp_engine_gas_power_fuelmix: + title: Gasmotor-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_capacity_of_industry_chp_turbine_gas_power_fuelmix: + title: Gasturbine-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_capacity_of_industry_chp_turbine_hydrogen: + title: Waterstofturbine-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_capacity_of_industry_chp_ultra_supercritical_coal: + title: Poederkolen-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_capacity_of_industry_chp_wood_pellets: + title: Biomassa-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_industry_metal_aluminium_investment_costs: + title: Investeringskosten + description: | + De initiële investeringskosten van aluminiumproductie + external_coupling_industry_metal_aluminium_technical_lifetime: + title: Technische levensduur + description: | + Technische levensduur van installaties voor aluminiumproductie + external_coupling_industry_metal_aluminium_fixed_om_costs: + title: Vaste onderhoudskosten + description: | + Vaste exploitatie- en onderhoudskosten (O&M) van aluminiumproductie + external_coupling_industry_metal_aluminium_energetic_electricity_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in nuttige energetische vraag + external_coupling_industry_metal_aluminium_energetic_network_gas_share: + title: Netwerkgas + description: | + Aandeel van netwerkgas in nuttige energetische vraag + external_coupling_industry_metal_aluminium_energetic_hydrogen_share: + title: Waterstof + description: | + Aandeel waterstof in een nuttige energetische vraag + external_coupling_industry_metal_aluminium_production: + title: Productie + description: | + Handige aluminiumproductie (schaalfactor) + external_coupling_industry_metal_aluminium_efficiency: + title: Conversie energetische vraag naar productie + description: | + Nuttige energetische vraagconversie naar aluminiumproductie + external_coupling_industry_aluminium_electrolysis_bat_electricity_share: + title: Elektrolyse BAT + description: | + Aandeel van BAT elektrolyse in aluminiumproductie + external_coupling_industry_metal_aluminium_external_coupling_share: + title: Externe koppeling + description: | + Aandeel van de productieroute via externe koppeling in aluminiumproductie + external_coupling_industry_aluminium_smeltoven_electricity_share: + title: Smeltoven (recycling) + description: | + Aandeel van de smeltoven in aluminiumproductie + external_coupling_industry_aluminium_electrolysis_current_electricity_share: + title: Elektrolyse + description: | + Het aandeel van elektrolyse bij aluminiumproductie + external_coupling_industry_aluminium_carbothermalreduction_electricity_share: + title: Carbothermische reductie + description: | + Het deel van de carbothermische reductie in de aluminiumproductie + external_coupling_industry_metal_other_metals_investment_costs: + title: Investeringskosten + description: | + De initiële investeringskosten van productie van overige metalen + external_coupling_industry_metal_other_metals_technical_lifetime: + title: Technische levensduur + description: | + Technische levensduur van installaties voor productie van overige metalen + external_coupling_industry_metal_other_metals_fixed_om_costs: + title: Vaste onderhoudskosten + description: | + Vaste exploitatie- en onderhoudskosten (O&M) van de productie van overige metalen + external_coupling_industry_other_metals_crude_oil_share: + title: Olie + description: | + Aandeel ruwe olie in nuttige energetische vraag + external_coupling_industry_other_metals_heat_useable_heat_share: + title: Stoom + description: | + Aandeel stoom uit het stoomnetwerk in een nuttige energetische vraag + external_coupling_industry_other_metals_electricity_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in nuttige energetische vraag + external_coupling_industry_other_metals_coal_share: + title: Kolen + description: | + Aandeel van kolen in nuttige energetische vraag + external_coupling_industry_other_metals_network_gas_share: + title: Netwerkgas + description: | + Aandeel van netwerkgas in nuttige energetische vraag + external_coupling_industry_other_metals_hydrogen_share: + title: Waterstof + description: | + Aandeel waterstof in een nuttige energetische vraag + external_coupling_industry_metal_other_metals_hydrogen_efficiency: + title: Conversie energetische vraag naar productie + description: | + Nuttige energetische vraagconversie naar de productie van andere metalen + external_coupling_industry_metal_other_metals_total_demand: + title: Productie + description: | + Nuttige productie overige metalen (schaalfactor) + external_coupling_industry_other_metals_external_coupling_share: + title: Externe koppeling + description: | + Aandeel van de productieroute via externe koppeling in de productie van andere metalen + external_coupling_industry_other_metals_process_electricity_share: + title: Elektriciteitsverbruik in proces + description: | + Aandeel van elektriciteitsgebruik in productieprocessen van andere metalen + external_coupling_industry_other_metals_process_heat_useable_heat_share: + title: Nuttige warmteverbruik in proces + description: | + Aandeel van nuttige warmte in productieprocessen van overige metalen + external_coupling_industry_metal_steel_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_metal_steel_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_metal_steel_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_energy_distribution_coal_gas_final_demand_share: + title: Finale vraag + description: | + Aandeel finale vraag naar kolengas in de centrale distributie van kolengas + external_coupling_energy_distribution_coal_gas_energy_production_share: + title: Energieproductie + description: | + Aandeel van kolengas naar energieproductie in centrale kolengasdistributie + external_coupling_energy_distribution_coal_gas_chemical_feedstock_share: + title: Grondstof voor chemiesector + description: | + Het aandeel van kolengas naar chemische grondstofproductie in de centrale kolengasdistributie + external_coupling_industry_metal_steel_investment_costs: + title: Investeringskosten + description: | + De initiële investeringskosten van de staalproductie + external_coupling_industry_metal_steel_wacc: + title: WACC + description: | + Gewogen gemiddelde kapitaalkosten (weighted average cost of capital, WACC) van staalproductie + external_coupling_industry_metal_steel_technical_lifetime: + title: Technische levensduur + description: | + Technische levensduur van installaties voor staalproductie + external_coupling_industry_metal_steel_fixed_om_costs: + title: Vaste onderhoudskosten + description: | + Vaste exploitatie- en onderhoudskosten (O&M) van staalproductie + external_coupling_industry_metal_steel_energetic_wood_pellets_share: + title: Biomassa + description: | + Aandeel houtpellets in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_coal_gas_share: + title: Kolengas + description: | + Aandeel kolengas in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_crude_oil_share: + title: Olie + description: | + Aandeel ruwe olie in een nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_steam_hot_water_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in een nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_electricity_share: + title: Elektriciteit + description: | + Aandeel van elektriciteit in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_coal_share: + title: Kolen + description: | + Aandeel van kolen in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_cokes_share: + title: Kooks + description: | + Aandeel van kooks in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_network_gas_share: + title: Netwerkgas + description: | + Aandeel van netwerkgas in nuttige energetische vraag + external_coupling_industry_metal_steel_energetic_hydrogen_share: + title: Waterstof + description: | + Aandeel waterstof in een nuttige energetische vraag + external_coupling_industry_metal_steel_efficiency: + title: Productie-efficiëntie + description: | + Nuttige energetische conversie-efficiëntie naar staalproductie + external_coupling_industry_metal_steel_total_demand: + title: Productie + description: | + Nuttige staalproductie (schaalfactor) + external_coupling_industry_metal_steel_cyclonefurnace_bof_share: + title: Cycloonoven + description: | + Aandeel van cycloonovens in aluminiumproductie + external_coupling_industry_metal_steel_external_coupling_share: + title: Externe koppeling + description: | + Aandeel van de productieroute via externe koppeling in staalproductie + external_coupling_industry_metal_steel_blastfurnace_bof_share: + title: Hoogoven + description: | + Aandeel van hoogovens in aluminiumproductie + external_coupling_industry_metal_steel_scrap_hbi_eaf_share: + title: Recycling / HBI + description: | + Aandeel van schroot HBI EAF in aluminiumproductie + external_coupling_industry_metal_steel_dri_network_gas_share: + title: DRI (netwerkgas) + description: | + Het aandeel van DRI netwerkgas in aluminiumproductie + external_coupling_industry_metal_steel_dri_hydrogen_share: + title: DRI (waterstof) + description: | + Het aandeel van DRI waterstof in aluminiumproductie + external_coupling_industry_bio_kerosene_in_crude_oil_share: + title: Bio-kerosine + description: | + Aandeel bio-kerosine in de finale energetische olievraag in de industrie + external_coupling_industry_other_bio_oil_in_crude_oil_share: + title: Andere bio-olie + description: | + Aandeel in andere bio-olie in de finale energetische olie-vraag in de industrie + external_coupling_industry_other_oil_in_crude_oil_share: + title: Andere olie + description: | + Aandeel overige olie in finale energetische olievraag in de industrie + external_coupling_industry_biodiesel_in_crude_oil_share: + title: Biodiesel + description: | + Aandeel van biodiesel in de finale energetische olievraag in de industrie + external_coupling_industry_diesel_in_crude_oil_share: + title: Diesel + description: | + Aandeel van diesel in de finale energetische olievraag in de industrie + external_coupling_industry_kerosene_in_crude_oil_share: + title: Kerosine + description: | + Aandeel van kerosine in de finale energetische olievraag in de industrie + external_coupling_industry_lpg_in_crude_oil_share: + title: LPG + description: | + Aandeel van LPG in de finale energetische olievraag in de industrie + external_coupling_industry_bio_kerosene_in_crude_oil_non_energetic_share: + title: Bio-kerosine + description: | + Aandeel bio-kerosine in de finale niet-energetische olievraag in de industrie + external_coupling_industry_other_oil_in_crude_oil_non_energetic_share: + title: Andere olie + description: | + Aandeel overige olie in finale niet-energetische olievraag in de industrie + external_coupling_industry_lpg_in_crude_oil_non_energetic_share: + title: LPG + description: | + Aandeel van LPG in de finale niet-energetische olievraag in de industrie + external_coupling_industry_biodiesel_in_crude_oil_non_energetic_share: + title: Biodiesel + description: | + Het aandeel van biodiesel in de finale niet-energetische olievraag van de industrie + external_coupling_industry_diesel_in_crude_oil_non_energetic_share: + title: Diesel + description: | + Het aandeel van diesel in de finale niet-energetische olievraag van de industrie + external_coupling_industry_kerosene_in_crude_oil_non_energetic_share: + title: Kerosine + description: | + Het aandeel van kerosine in de finale niet-energetsiche olievraag van de industrie + external_coupling_industry_other_bio_oil_in_crude_oil_non_energetic_share: + title: Andere bio-olie + description: | + Het deel van de overige bio-olie in de finale niet-energetische olievraag in de industrie + external_coupling_industry_other_food_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_other_food_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_other_food_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_industry_other_food_steam_hot_water_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in energetische warmtevraag + external_coupling_industry_other_food_burner_wood_pellets_share: + title: Biomassaketel + description: | + Aandeel van biomassaketel in energetische warmtevraag + external_coupling_industry_other_food_heater_electricity_share: + title: Elektrische boiler + description: | + Aandeel van elektrische boiler in energetische warmtevraag + external_coupling_industry_other_food_burner_hydrogen_share: + title: Waterstofketel + description: | + Aandeel van hybride waterstofketel in energetische warmtevraag + external_coupling_industry_other_food_burner_coal_share: + title: Kolenketel + description: | + Aandeel van kolenketel in energetische warmtevraag + external_coupling_industry_other_food_burner_crude_oil_share: + title: Olieketel + description: | + Aandeel van olieketel in energetische warmtevraag + external_coupling_industry_other_food_burner_network_gas_share: + title: Gasketel + description: | + Het aandeel van de hybride gasketels in energetische warmtevraag + external_coupling_industry_other_food_useable_heat: + title: Energetische vraag (excl. elektriciteit) + description: | + Nuttige energetische vraag (excl. elektriciteitsvraag) (schaalfactor) + external_coupling_industry_other_food_electricity: + title: Energetische elektriciteitsvraag + description: | + Nuttige energetische vraag naar elektriciteit (excl. vraag voor CCUS en warmte) (schaalfactor) + external_coupling_industry_other_food_p2h_capacity: + title: Power-to-heat boiler voor H2 en gasketels + description: | + Totale capaciteit van hybride waterstof- en gasketels + external_coupling_industry_other_food_p2h_wtp: + title: Power-to-heat boiler voor voedingsmiddelenindustrie + description: | + Betalingsbereidheid (willingness to pay, WTP) van hybride waterstof- en gasketels + external_coupling_industry_other_non_specified_industry_wood_pellets_share_energetic: + title: Biomassa + description: | + Aandeel houtpellets in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_crude_oil_share_energetic: + title: Olie + description: | + Aandeel ruwe olie in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_useable_heat_share_energetic: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in een nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_electricity_share_energetic: + title: Elektriciteit + description: | + Aandeel van elektriciteit in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_coal_share_energetic: + title: Kolen + description: | + Aandeel van kolen in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_cokes_share_energetic: + title: Kooks + description: | + Aandeel van kooks in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_network_gas_share_energetic: + title: Netwerkgas + description: | + Aandeel van netwerkgas in nuttige energetische vraag + external_coupling_industry_other_non_specified_industry_hydrogen_share_energetic: + title: Waterstof + description: | + Aandeel waterstof in een nuttige energetische vraag + external_coupling_industry_useful_demand_for_other_non_specified_energetic: + title: Grootte (energetisch) + description: | + Nuttige energetische vraag (schaalfactor) + external_coupling_industry_useful_demand_for_other_non_specified_non_energetic: + title: Grootte (niet-energetisch) + description: | + Nuttige niet-energetische vraag (schaalfactor) + external_coupling_industry_other_non_specified_industry_ammonia_share_non_energetic: + title: Ammoniak + description: | + Aandeel ammoniak in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_wood_pellets_share_non_energetic: + title: Biomassa + description: | + Aandeel houtpellets in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_coal_share_non_energetic: + title: Kolen + description: | + Aandeel kolen in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_methanol_share_non_energetic: + title: Methanol + description: | + Aandeel methanol in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_crude_oil_share_non_energetic: + title: Oie + description: | + Aandeel ruwe olie in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_waste_mix_share_non_energetic: + title: Afval + description: | + Aandeel van afvalmix in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_cokes_share_non_energetic: + title: Kooks + description: | + Aandeel van kooks in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_network_gas_share_non_energetic: + title: Netwerkgas + description: | + Aandeel van netwerkgas in nuttige niet-energetische vraag + external_coupling_industry_other_non_specified_industry_hydrogen_share_non_energetic: + title: Waterstof + description: | + Aandeel van waterstof in nuttige niet-energetische vraag + external_coupling_industry_other_paper_ccus_capture_potential: + title: CO2-afvangpotentieel van emissies + description: | + Aandeel van CO2 van verbrandingsprocessen dat mogelijk door CCS kan worden afgevangen + external_coupling_industry_other_paper_ccus_electricity_use: + title: Elektriciteitsverbruik van CO2-afvang + description: | + Elektriciteitsvraag per vastgelegde CO2 uit verbrandingsprocessen + external_coupling_industry_other_paper_ccus_captured_co2: + title: Afgevangen CO2 van potentieel + description: | + Het aandeel van CO2-afvangpotentieel uit verbrandingsprocessen dat daadwerkelijk wordt afgevangen door CCS + external_coupling_industry_other_paper_steam_hot_water_share: + title: Stoomnet + description: | + Aandeel stoom uit het stoomnetwerk in energetische warmtevraag + external_coupling_industry_other_paper_burner_wood_pellets_share: + title: Biomassaketel + description: | + Aandeel van biomassaketel in energetische warmtevraag + external_coupling_industry_other_paper_heater_electricity_share: + title: Elektrische boiler + description: | + Aandeel van elektrische boiler in energetische warmtevraag + external_coupling_industry_other_paper_burner_hydrogen_share: + title: Waterstofketel + description: | + Aandeel van hybride waterstofketel in energetische warmtevraag + external_coupling_industry_other_paper_burner_coal_share: + title: Kolenketel + description: | + Aandeel van kolenketel in energetische warmtevraag + external_coupling_industry_other_paper_burner_crude_oil_share: + title: Olieketel + description: | + Aandeel van olieketel in energetische warmtevraag + external_coupling_industry_other_paper_burner_network_gas_share: + title: Gasketel + description: | + Het aandeel van de hybride gasketels in energetische warmtevraag + external_coupling_industry_other_paper_useable_heat: + title: Energetische vraag (excl. elektriciteit) + description: | + Nuttige energetische vraag (excl. elektriciteitsvraag) (schaalfactor) + external_coupling_industry_other_paper_electricity: + title: Energetische elektriciteitsvraag + description: | + Nuttige energetische vraag naar elektriciteit (excl. vraag voor CCUS en warmte) (schaalfactor) + external_coupling_industry_other_paper_p2h_capacity: + title: Power-to-heat boiler voor H2 en gasketels + description: | + Totale capaciteit van hybride waterstof- en gasketels + external_coupling_industry_other_paper_p2h_wtp: + title: Power-to-heat boiler voor papierindustrie + description: | + Betalingsbereidheid (willingness to pay, WTP) van hybride waterstof- en gasketels + external_coupling_energy_heat_production_ht_residual_heat_investment_costs: + title: Investeringskosten + description: | + De initiële investeringskosten van HT-restwarmte + external_coupling_energy_heat_production_ht_residual_heat_wacc: + title: WACC + description: | + Gewogen gemiddelde kapitaalkosten (weighted average cost of capital, WACC) van HT -restwarmte + external_coupling_energy_heat_production_ht_residual_heat_technical_lifetime: + title: Technische levensduur + description: | + Technische levensduur van installaties voor restwarmteproductie (HT) + external_coupling_energy_heat_production_ht_residual_heat_fixed_om_costs: + title: Vaste onderhoudskosten + description: | + Vaste exploitatie- en onderhoudskosten (O&M) van restwarmte (HT) + external_coupling_energy_chp_supercritical_ccs_waste_mix_electrical_efficiency: + title: Afval-WKK met CCS - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_energy_chp_supercritical_waste_mix_electrical_efficiency: + title: Afval-WKK - elektriciteit + description: | + Efficiëntie van elektriciteitsoutput van WKK + external_coupling_energy_chp_supercritical_ccs_waste_mix_heat_efficiency: + title: Afval-WKK met CCS - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_energy_chp_supercritical_waste_mix_heat_efficiency: + title: Afval-WKK - warmte + description: | + Efficiëntie van warmteouptut van WKK + external_coupling_waste_mix_biogenic_waste_share: + title: Biogeen + description: | + Aandeel van biogeen afval in afvalmix + external_coupling_waste_mix_non_biogenic_waste_share: + title: Niet-biogeen + description: | + Aandeel van niet-biogeen afval in afvalmix + external_coupling_energy_chp_supercritical_waste_mix_capacity: + title: Afval-WKK + description: | + Geïnstalleerd vermogen van elektriciteitsoutput van WKK + external_coupling_biogenic_waste_max_demand: + title: Biogeen afval + description: | + Maximaal binnenlands aanbod van biogeen afval + external_coupling_non_biogenic_waste_max_demand: + title: Niet-biogeen afval + description: | + Maximaal binnenlands aanbod van niet-biogeen afval + external_coupling_energy_chp_supercritical_ccs_waste_mix_captured_co2: + title: Afval WKK + CCS + description: | + Aandeel van geïnstalleerd WKK elektriciteitsoutputvermogen uitgerust met CCS \ No newline at end of file diff --git a/config/locales/nl_etm.yml b/config/locales/nl_etm.yml index f08762dc1..442784df6 100644 --- a/config/locales/nl_etm.yml +++ b/config/locales/nl_etm.yml @@ -257,6 +257,21 @@ nl: share_in_residences: "% van woningen" share_in_hot_water: "% van warm watervraag" utilisation_dispatchable: "elektriciteit-input" + external_coupling_industry_metal_other_costs: "waarde" + external_coupling_industry_metal_aluminium_costs: "waarde" + external_coupling_industry_metal_steel_costs: "waarde" + external_coupling_industry_metal_other_energetic: "aandeel" + external_coupling_industry_metal_other_production_route: "aandeel" + external_coupling_industry_willingness_to_pay: "prijs" + external_coupling_industry_metal_other_general: "waarde" + external_coupling_industry_metal_steel_general: "waarde" + external_coupling_industry_metal_aluminium_general: "waarde" + external_coupling_industry_chemical_refineries_general: "waarde" + external_coupling_industry_chemical_other_general: "waarde" + external_coupling_industry_chemical_fertilizers_general: "waarde" + external_coupling_industry_other_paper_general: "waarde" + external_coupling_industry_other_non_specified_general: "waarde" + external_coupling_industry_other_food_general: "waarde" #------------ Output Serie Labels ------------- # scenario: @@ -636,6 +651,52 @@ nl: auxiliary_space_heating_technologies: "Ruimteverwarming" auxiliary_water_heating_technologies: "Warm water" share_in_hot_water: "Warm water" + external_coupling_ccus_utilisation: "Hergebruik (niet-regelbaar)" + external_coupling_industry_chemical_fertilizers_combustion_ccus: "Kunstmestindustrie (verbrandingsemissies)" + external_coupling_industry_chemical_fertilizers_energetic: "Warmteproductie" + external_coupling_industry_chemical_fertilizers_general: "Algemeen" + external_coupling_industry_chemical_fertilizers_non_energetic: "Niet-energetisch gebruik" + external_coupling_industry_chemical_fertilizers_processes_ccus: "Kunstmestindustrie (procesemissies)" + external_coupling_industry_chemical_fertilizers_transformation_input: "Transformatie - input van dragers" + external_coupling_industry_chemical_fertilizers_transformation_output: "Transformatie - output van dragers" + external_coupling_industry_willingness_to_pay: "Betalingsbereidheid" + external_coupling_industry_chemical_other_ccus: "Industrie overig" + external_coupling_industry_chemical_other_energetic: "Warmteproductie" + external_coupling_industry_chemical_other_general: "Algemeen" + external_coupling_industry_chemical_other_non_energetic: "Niet-energetisch gebruik" + external_coupling_industry_chemical_other_transformation_input: "Transformatie - input van dragers" + external_coupling_industry_chemical_other_transformation_output: "Transformatie - output van dragers" + external_coupling_industry_chemical_refineries_ccus: "Raffinage-industrie" + external_coupling_industry_chemical_refineries_energetic: "Warmteproductie" + external_coupling_industry_chemical_refineries_general: "Algemeen" + external_coupling_industry_chemical_refineries_transformation_input: "Transformatie - input van dragers" + external_coupling_industry_chemical_refineries_transformation_output: "Transformatie - output van dragers" + external_coupling_industry_metal_aluminium_costs: "Kosten" + external_coupling_industry_metal_aluminium_energetic: "Energetisch gebruik" + external_coupling_industry_metal_aluminium_general: "Algemeen" + external_coupling_industry_metal_aluminium_production_route: "Productieroute" + external_coupling_industry_metal_other_costs: "Kosten" + external_coupling_industry_metal_other_energetic: "Energetisch gebruik" + external_coupling_industry_metal_other_general: "Algemeen" + external_coupling_industry_metal_other_production_route: "Productieroute" + external_coupling_industry_metal_steel_ccus: "Staalindustrie" + external_coupling_industry_metal_steel_coal_gas: "Allocatie" + external_coupling_industry_metal_steel_costs: "Kosten" + external_coupling_industry_metal_steel_energetic: "Energetisch gebruik" + external_coupling_industry_metal_steel_general: "Algemeen" + external_coupling_industry_metal_steel_production_route: "Productieroute" + external_coupling_industry_oil_mix_energetic: "Energetische oliemix industrie" + external_coupling_industry_oil_mix_non_energetic: "Niet-energetische oliemix industrie" + external_coupling_industry_other_food_ccus: "Voedselindustrie" + external_coupling_industry_other_food_energetic: "Warmteproductie" + external_coupling_industry_other_food_general: "Algemeen" + external_coupling_industry_other_non_specified_energetic: "Energetisch gebruik" + external_coupling_industry_other_non_specified_general: "Algemeen" + external_coupling_industry_other_non_specified_non_energetic: "Niet-energetisch gebruik" + external_coupling_industry_other_paper_ccus: "Papierindustrie" + external_coupling_industry_other_paper_energetic: "Warmteproductie" + external_coupling_industry_other_paper_general: "Algemeen" + external_coupling_biomass_waste_mix: "Afvalmix" "or": "of" "go": "ga" diff --git a/spec/cassettes/SavedScenariosController/_GET_show/responds_to_the_csv_format.yml b/spec/cassettes/SavedScenariosController/_GET_show/responds_to_the_csv_format.yml index 62c8f00ac..7fc76a5b6 100644 --- a/spec/cassettes/SavedScenariosController/_GET_show/responds_to_the_csv_format.yml +++ b/spec/cassettes/SavedScenariosController/_GET_show/responds_to_the_csv_format.yml @@ -53,6 +53,6 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:29 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/changes_the_session_active_saved_scenario_id_in_settings.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/changes_the_session_active_saved_scenario_id_in_settings.yml index a5a2f1224..4625ce138 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/changes_the_session_active_saved_scenario_id_in_settings.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/changes_the_session_active_saved_scenario_id_in_settings.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:34 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '0.055247' body: encoding: UTF-8 - string: '{"id":2259129,"created_at":"2023-05-23T11:10:35.000Z","updated_at":"2023-05-23T11:10:35.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259129"}' + string: '{"id":2259129,"created_at":"2023-05-23T11:10:35.000Z","updated_at":"2023-05-23T11:10:35.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259129"}' recorded_at: Tue, 23 May 2023 11:10:35 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_non-existent_scenario_redirects_to_show.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_non-existent_scenario_redirects_to_show.yml index 122187cdd..eed8a5034 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_non-existent_scenario_redirects_to_show.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_non-existent_scenario_redirects_to_show.yml @@ -55,6 +55,6 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:35 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_not-loadable_scenario_redirects_to_show.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_not-loadable_scenario_redirects_to_show.yml index 2dfc0e27f..eead25d40 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_not-loadable_scenario_redirects_to_show.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_a_not-loadable_scenario_redirects_to_show.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:32 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '1.575978' body: encoding: UTF-8 - string: '{"id":2259128,"created_at":"2023-05-23T11:10:34.000Z","updated_at":"2023-05-23T11:10:34.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259128"}' + string: '{"id":2259128,"created_at":"2023-05-23T11:10:34.000Z","updated_at":"2023-05-23T11:10:34.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259128"}' recorded_at: Tue, 23 May 2023 11:10:34 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_1.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_1.yml index 45f405648..4352f78b2 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_1.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_1.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:38 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '0.045472' body: encoding: UTF-8 - string: '{"id":2259133,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259133"}' + string: '{"id":2259133,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259133"}' recorded_at: Tue, 23 May 2023 11:10:38 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_2.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_2.yml index fde56cbab..be8cd599c 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_2.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_an_owned_saved_scenario/1_2_1_1_2.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:38 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '0.073414' body: encoding: UTF-8 - string: '{"id":2259134,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259134"}' + string: '{"id":2259134,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259134"}' recorded_at: Tue, 23 May 2023 11:10:38 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/doesn_t_change_the_active_saved_scenario_id_in_the_settings.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/doesn_t_change_the_active_saved_scenario_id_in_the_settings.yml index 25bea757e..1cb288eec 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/doesn_t_change_the_active_saved_scenario_id_in_the_settings.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/doesn_t_change_the_active_saved_scenario_id_in_the_settings.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:35 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '0.028111' body: encoding: UTF-8 - string: '{"id":2259131,"created_at":"2023-05-23T11:10:36.000Z","updated_at":"2023-05-23T11:10:36.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259131"}' + string: '{"id":2259131,"created_at":"2023-05-23T11:10:36.000Z","updated_at":"2023-05-23T11:10:36.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259131"}' recorded_at: Tue, 23 May 2023 11:10:36 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/redirects_to_play_path.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/redirects_to_play_path.yml index d784ec20c..46b002733 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/redirects_to_play_path.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/redirects_to_play_path.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:36 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '1.579141' body: encoding: UTF-8 - string: '{"id":2259132,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259132"}' + string: '{"id":2259132,"created_at":"2023-05-23T11:10:38.000Z","updated_at":"2023-05-23T11:10:38.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259132"}' recorded_at: Tue, 23 May 2023 11:10:38 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/sets_the_scenario_title_in_the_settings.yml b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/sets_the_scenario_title_in_the_settings.yml index 896fd8ae5..072af3ef5 100644 --- a/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/sets_the_scenario_title_in_the_settings.yml +++ b/spec/cassettes/SavedScenariosController/a_regular_user/GET_load/with_unowned_saved_scenario/sets_the_scenario_title_in_the_settings.yml @@ -55,7 +55,7 @@ http_interactions: body: encoding: UTF-8 string: '{"id":648695,"created_at":"2017-03-13T19:22:35.000Z","updated_at":"2019-12-05T09:14:10.000Z","user_values":{},"end_year":2050,"keep_compatible":true,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{"title":"ETM - Test Scenario"},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' + Test Scenario"},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/648695"}' recorded_at: Tue, 23 May 2023 11:10:35 GMT - request: method: post @@ -113,6 +113,6 @@ http_interactions: - '0.031559' body: encoding: UTF-8 - string: '{"id":2259130,"created_at":"2023-05-23T11:10:35.000Z","updated_at":"2023-05-23T11:10:35.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"coupling":false,"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259130"}' + string: '{"id":2259130,"created_at":"2023-05-23T11:10:35.000Z","updated_at":"2023-05-23T11:10:35.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"active_couplings":[],"inactive_couplings":[],"owner":null,"scaling":null,"template":648695,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2259130"}' recorded_at: Tue, 23 May 2023 11:10:35 GMT recorded_with: VCR 6.0.0 diff --git a/spec/cassettes/ScenariosController/with_a_registered_user/with_an_active_scenario/_merge/creates_a_remote_scenario_with_the_average_values.yml b/spec/cassettes/ScenariosController/with_a_registered_user/with_an_active_scenario/_merge/creates_a_remote_scenario_with_the_average_values.yml index 86887cfe4..e6ff30703 100644 --- a/spec/cassettes/ScenariosController/with_a_registered_user/with_an_active_scenario/_merge/creates_a_remote_scenario_with_the_average_values.yml +++ b/spec/cassettes/ScenariosController/with_a_registered_user/with_an_active_scenario/_merge/creates_a_remote_scenario_with_the_average_values.yml @@ -56,6 +56,6 @@ http_interactions: - '1.736149' body: encoding: UTF-8 - string: '{"id":2255690,"created_at":"2023-05-15T10:08:09.000Z","updated_at":"2023-05-15T10:08:09.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"owner":null,"coupling":false,"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2255690"}' + string: '{"id":2255690,"created_at":"2023-05-15T10:08:09.000Z","updated_at":"2023-05-15T10:08:09.000Z","user_values":{},"end_year":2050,"keep_compatible":false,"private":false,"area_code":"nl","source":"ETM","balanced_values":{},"metadata":{},"start_year":2015,"owner":null,"active_couplings":[],"inactive_couplings":[],"scaling":null,"template":null,"url":"https://beta-engine.energytransitionmodel.com/api/v3/scenarios/2255690"}' recorded_at: Mon, 15 May 2023 10:08:09 GMT recorded_with: VCR 6.0.0 diff --git a/spec/factories/engine_scenario.rb b/spec/factories/engine_scenario.rb index 8bd5a0b85..83e0cbf6c 100644 --- a/spec/factories/engine_scenario.rb +++ b/spec/factories/engine_scenario.rb @@ -6,7 +6,8 @@ balanced_values { {} } end_year { 2050 } esdl_exportable { false } - coupling { false } + active_couplings { [] } + inactive_couplings { [] } keep_compatible { false } metadata { {} } users { [{ id: 1, name: 'John Doe' }] } diff --git a/spec/models/engine/scenario_spec.rb b/spec/models/engine/scenario_spec.rb index f96875eb3..d32e9e055 100644 --- a/spec/models/engine/scenario_spec.rb +++ b/spec/models/engine/scenario_spec.rb @@ -11,7 +11,8 @@ esdl_exportable: false, id: 123, keep_compatible: false, - coupling: false, + active_couplings: [], + inactive_couplings: [], metadata: {}, private: false, user_values: {} diff --git a/spec/services/fetch_api_scenario_spec.rb b/spec/services/fetch_api_scenario_spec.rb index 0497418c5..60c9a291c 100644 --- a/spec/services/fetch_api_scenario_spec.rb +++ b/spec/services/fetch_api_scenario_spec.rb @@ -16,7 +16,8 @@ 'private' => false, 'user_values' => { 'a' => 1 }, 'esdl_exportable' => false, - 'coupling' => false, + 'active_couplings' => [], + 'inactive_couplings' => [], 'owner' => nil, 'scaling' => nil, 'template' => nil, @@ -60,7 +61,8 @@ private: response_data['private'], user_values: response_data['user_values'], esdl_exportable: response_data['esdl_exportable'], - coupling: response_data['coupling'], + active_couplings: response_data['active_couplings'], + inactive_couplings: response_data['inactive_couplings'], template: response_data['template'], url: response_data['url'], created_at: Time.parse(response_data['created_at']).utc, diff --git a/spec/support/mocks/ete_scenario.rb b/spec/support/mocks/ete_scenario.rb index f27f4979d..e98dc83ff 100644 --- a/spec/support/mocks/ete_scenario.rb +++ b/spec/support/mocks/ete_scenario.rb @@ -13,7 +13,8 @@ def ete_scenario_mock allow(mock).to receive(:updated_at) { Time.now.utc } allow(mock).to receive(:loadable?).and_return(true) allow(mock).to receive(:coupled?).and_return(false) - allow(mock).to receive(:coupling).and_return(false) + allow(mock).to receive(:active_couplings).and_return([]) + allow(mock).to receive(:inactive_couplings).and_return([]) allow(mock).to receive(:created_at) { Time.now.utc } allow(mock).to receive(:all_inputs).and_return({}) allow(mock).to receive(:days_old).and_return(1)