diff --git a/app/assets/javascripts/d3/sankey.coffee b/app/assets/javascripts/d3/sankey.coffee index cadfe8beb..3888e705d 100644 --- a/app/assets/javascripts/d3/sankey.coffee +++ b/app/assets/javascripts/d3/sankey.coffee @@ -521,79 +521,179 @@ D3.sankey = biomass_sankey: data: nodes: [ - {id: 'local', column: 0, label: 'local', color: '#416B86'}, - {id: 'import', column: 0, label: 'import', color: '#b71540'}, - {id: 'non_biogenic_carriers_supply', column: 0, label: 'non_biogenic_carriers', color: '#8c564b'}, - {id: 'wet', column: 1, label: 'wet', color: '#38ada9'}, - {id: 'oily', column: 1, label: 'oily', color: '#f9ca24'}, - {id: 'dry', column: 1, label: 'dry', color: '#009432'}, - {id: 'biogenic_waste', column: 1, label: 'biogenic_waste', color: '#006266'}, - {id: 'biogas', column: 2, label: 'biogas', color: '#ffff99'}, - {id: 'greengas', column: 2, label: 'greengas', color: '#A3CB38'}, - {id: 'biofuels', column: 2, label: 'biofuels', color: '#00b894'}, + {id: 'greengas_primary', column: 0, label: 'greengas', color: '#CFEA85'}, + {id: 'biogas', column: 0, label: 'biogas', color: '#7FA025'}, + {id: 'biogenic_waste', column: 0, label: 'biogenic_waste', color: '#A8C19C'}, + {id: 'wood_pellets', column: 0, label: 'wood_pellets', color: '#228B22'}, + {id: 'torrefied_biomass_pellets', column: 0, label: 'torrefied_biomass_pellets', color: '#145814'}, + {id: 'bio_kerosene_primary', column: 0, label: 'bio_kerosene', color: '#2E8B57'}, + {id: 'biodiesel_primary', column: 0, label: 'biodiesel', color: '#9ACD32'}, + {id: 'bionaphtha_primary', column: 0, label: 'bionaphtha', color: '#3CB371'}, + {id: 'bio_ethanol', column: 0, label: 'bio_ethanol', color: '#76B776'}, + {id: 'biomethanol_primary', column: 0, label: 'biomethanol', color: '#95B15C'}, + {id: 'bio_pyrolysis_oil_primary', column: 0, label: 'bio_pyrolysis_oil', color: '#6B8E23'}, + {id: 'bio_lng', column: 0, label: 'bio_lng', color: '#BDB828'}, + {id: 'bio_oil', column: 0, label: 'bio_oil', color: '#9E9911'}, + {id: 'hydrogen', column: 0, label: 'hydrogen', color: '#87cfeb'}, + {id: 'heat', column: 0, label: 'heat', color: '#cc0000'}, + + {id: 'biomethanol_secondary', column: 1, label: 'biomethanol', color: '#95B15C'}, + {id: 'bio_pyrolysis_oil_secondary', column: 1, label: 'bio_pyrolysis_oil', color: '#6B8E23'}, + {id: 'industry_transformation', column: 1, label: 'industry_transformation', color: '#A9A9A9'}, + + {id: 'greengas_secondary', column: 2, label: 'greengas', color: '#CFEA85'}, + {id: 'bio_kerosene_secondary', column: 2, label: 'bio_kerosene', color: '#2E8B57'}, + {id: 'biodiesel_secondary', column: 2, label: 'biodiesel', color: '#9ACD32'}, + {id: 'bionaphtha_secondary', column: 2, label: 'bionaphtha', color: '#3CB371'}, + {id: 'households', column: 3, label: 'households', color: '#4169E1'}, {id: 'buildings', column: 3, label: 'buildings', color: '#ADD8E6'}, {id: 'transport', column: 3, label: 'transport', color: '#8B0000'}, - {id: 'industry', column: 3, label: 'industry', color: '#A9A9A9'}, {id: 'bunkers', column: 3, label: 'bunkers', color: '#8B4513'}, + {id: 'industry', column: 3, label: 'industry', color: '#A9A9A9'}, {id: 'agriculture', column: 3, label: 'agriculture', color: '#FFD700'}, + {id: 'energy', column: 3, label: 'energy', color: '#CC6677'}, {id: 'other', column: 3, label: 'other', color: '#E07033'}, {id: 'export', column: 3, label: 'export', color: '#43464B'}, - {id: 'non_biogenic_carriers_demand', column: 3, label: 'non_biogenic_carriers', color: '#8c564b'}, + {id: 'electricity_production', column: 3, label: 'electricity_production', color: '#1f77b4'}, + {id: 'heat_production', column: 3, label: 'heat_production', color: '#cc0000'}, + {id: 'hydrogen_production', column: 3, label: 'hydrogen_production', color: '#87cfeb'}, {id: 'losses', column: 3, label: 'losses', color: '#DCDCDC'}, ] links: [ - {left: 'local', right: 'wet', gquery: 'local_wet_biomass_in_biomass_sankey', color: '#416B86'}, - {left: 'local', right: 'oily', gquery: 'local_oily_biomass_in_biomass_sankey', color: '#416B86'}, - {left: 'local', right: 'dry', gquery: 'local_dry_biomass_in_biomass_sankey', color: '#416B86'}, - {left: 'local', right: 'biogenic_waste', gquery: 'local_biogenic_waste_in_biomass_sankey', color: '#416B86'}, - {left: 'wet', right: 'biogas', gquery: 'wet_biomass_to_biogas_in_biomass_sankey', color: '#38ada9'}, - {left: 'wet', right: 'greengas', gquery: 'wet_biomass_to_greengas_in_biomass_sankey', color: '#38ada9'}, - {left: 'wet', right: 'biofuels', gquery: 'wet_biomass_to_biofuels_in_biomass_sankey', color: '#38ada9'}, - {left: 'oily', right: 'biofuels', gquery: 'oily_biomass_to_biofuels_in_biomass_sankey', color: '#f9ca24'}, - {left: 'dry', right: 'greengas', gquery: 'dry_biomass_to_greengas_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'households', gquery: 'dry_biomass_to_households_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'buildings', gquery: 'dry_biomass_to_buildings_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'transport', gquery: 'dry_biomass_to_transport_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'industry', gquery: 'dry_biomass_to_industry_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'agriculture', gquery: 'dry_biomass_to_agriculture_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'other', gquery: 'dry_biomass_to_other_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'bunkers', gquery: 'dry_biomass_to_bunkers_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'biofuels', gquery: 'dry_biomass_to_biofuels_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'non_biogenic_carriers_demand',gquery: 'dry_biomass_to_non_biogenic_carriers_in_biomass_sankey', color: '#009432'}, - {left: 'dry', right: 'losses', gquery: 'dry_biomass_to_losses_in_biomass_sankey', color: '#DCDCDC'}, - {left: 'biogenic_waste', right: 'biofuels', gquery: 'biogenic_waste_to_biofuels_in_biomass_sankey', color: '#006266'}, - {left: 'biogenic_waste', right: 'non_biogenic_carriers_demand',gquery: 'biogenic_waste_to_non_biogenic_carriers_in_biomass_sankey', color: '#006266'}, - {left: 'import', right: 'wet', gquery: 'import_wet_biomass_in_biomass_sankey', color: '#b71540'}, - {left: 'import', right: 'oily', gquery: 'import_oily_biomass_in_biomass_sankey', color: '#b71540'}, - {left: 'import', right: 'dry', gquery: 'import_dry_biomass_in_biomass_sankey', color: '#b71540'}, - {left: 'import', right: 'biogenic_waste', gquery: 'import_biogenic_waste_in_biomass_sankey', color: '#b71540'}, - {left: 'import', right: 'biofuels', gquery: 'import_biofuels_in_biomass_sankey', color: '#b71540'}, - {left: 'non_biogenic_carriers_supply', right: 'greengas', gquery: 'non_biogenic_carriers_to_greengas_in_biomass_sankey', color: '#8c564b'}, - {left: 'non_biogenic_carriers_supply', right: 'biofuels', gquery: 'non_biogenic_carriers_to_biofuels_in_biomass_sankey', color: '#8c564b'}, - {left: 'biogas', right: 'non_biogenic_carriers_demand',gquery: 'biogas_to_non_biogenic_carriers_in_biomass_sankey', color: '#ffff99'}, - {left: 'biogas', right: 'losses', gquery: 'biogas_to_losses_in_biomass_sankey', color: '#DCDCDC'}, - {left: 'greengas', right: 'households', gquery: 'greengas_to_households_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'buildings', gquery: 'greengas_to_buildings_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'transport', gquery: 'greengas_to_transport_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'industry', gquery: 'greengas_to_industry_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'agriculture', gquery: 'greengas_to_agriculture_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'other', gquery: 'greengas_to_other_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'bunkers', gquery: 'greengas_to_bunkers_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'export', gquery: 'greengas_to_export_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'biofuels', gquery: 'greengas_to_biofuels_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'non_biogenic_carriers_demand',gquery: 'greengas_to_non_biogenic_carriers_in_biomass_sankey', color: '#A3CB38'}, - {left: 'greengas', right: 'losses', gquery: 'greengas_to_losses_in_biomass_sankey', color: '#DCDCDC'}, - {left: 'biofuels', right: 'greengas', gquery: 'biofuels_to_greengas_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'households', gquery: 'biofuels_to_households_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'buildings', gquery: 'biofuels_to_buildings_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'transport', gquery: 'biofuels_to_transport_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'industry', gquery: 'biofuels_to_industry_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'agriculture', gquery: 'biofuels_to_agriculture_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'bunkers', gquery: 'biofuels_to_bunkers_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'export', gquery: 'biofuels_to_export_in_biomass_sankey', color: '#00b894'}, - {left: 'biofuels', right: 'non_biogenic_carriers_demand',gquery: 'biofuels_to_non_biogenic_carriers_in_biomass_sankey', color: '#00b894'} - {left: 'biofuels', right: 'losses', gquery: 'biofuels_to_losses_in_biomass_sankey', color: '#DCDCDC'}, + # Column 0 to column 1 + {left: 'biogenic_waste', right: 'biomethanol_secondary', gquery: 'biogenic_waste_to_biomethanol_in_biomass_sankey', color: '#A8C19C'}, + {left: 'biomethanol_primary', right: 'biomethanol_secondary', gquery: 'biomethanol_to_biomethanol_in_biomass_sankey', color: '#95B15C'}, + + {left: 'biogenic_waste', right: 'bio_pyrolysis_oil_secondary', gquery: 'biogenic_waste_to_bio_pyrolysis_oil_in_biomass_sankey', color: '#A8C19C'}, + {left: 'bio_pyrolysis_oil_primary', right: 'bio_pyrolysis_oil_secondary', gquery: 'bio_pyrolysis_oil_to_bio_pyrolysis_oil_in_biomass_sankey', color: '#6B8E23'}, + + {left: 'greengas_primary', right: 'industry_transformation', gquery: 'greengas_to_industry_transformation_in_biomass_sankey', color: '#CFEA85'}, + {left: 'biogenic_waste', right: 'industry_transformation', gquery: 'biogenic_waste_to_industry_transformation_in_biomass_sankey', color: '#A8C19C'}, + {left: 'wood_pellets', right: 'industry_transformation', gquery: 'wood_pellets_to_industry_transformation_in_biomass_sankey', color: '#228B22'}, + {left: 'bio_oil', right: 'industry_transformation', gquery: 'bio_oil_to_industry_transformation_in_biomass_sankey', color: '#9E9911'}, + + # # Column 1 to column 2 + {left: 'biomethanol_secondary', right: 'bio_kerosene_secondary', gquery: 'biomethanol_to_bio_kerosene_in_biomass_sankey', color: '#95B15C'}, + {left: 'biomethanol_secondary', right: 'bionaphtha_secondary', gquery: 'biomethanol_to_bionaphtha_in_biomass_sankey', color: '#95B15C'}, + + {left: 'bio_pyrolysis_oil_secondary', right: 'bio_kerosene_secondary', gquery: 'bio_pyrolysis_oil_to_bio_kerosene_in_biomass_sankey', color: '#6B8E23'}, + {left: 'bio_pyrolysis_oil_secondary', right: 'bionaphtha_secondary', gquery: 'bio_pyrolysis_oil_to_bionaphtha_in_biomass_sankey', color: '#6B8E23'}, + + {left: 'industry_transformation', right: 'greengas_secondary', gquery: 'industry_transformation_to_greengas_in_biomass_sankey', color: '#CFEA85'}, + {left: 'industry_transformation', right: 'bio_kerosene_secondary', gquery: 'industry_transformation_to_bio_kerosene_in_biomass_sankey', color: '#2E8B57'}, + {left: 'industry_transformation', right: 'biodiesel_secondary', gquery: 'industry_transformation_to_biodiesel_in_biomass_sankey', color: '#9ACD32'}, + {left: 'industry_transformation', right: 'bionaphtha_secondary', gquery: 'industry_transformation_to_bionaphtha_in_biomass_sankey', color: '#3CB371'}, + + # Column 0 to column 2 + {left: 'greengas_primary', right: 'greengas_secondary', gquery: 'greengas_to_greengas_in_biomass_sankey', color: '#CFEA85'}, + {left: 'biogas', right: 'greengas_secondary', gquery: 'biogas_to_greengas_in_biomass_sankey', color: '#7FA025'}, + + {left: 'biogenic_waste', right: 'bio_kerosene_secondary', gquery: 'biogenic_waste_to_bio_kerosene_in_biomass_sankey', color: '#A8C19C'}, + {left: 'bio_kerosene_primary', right: 'bio_kerosene_secondary', gquery: 'bio_kerosene_to_bio_kerosene_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_ethanol', right: 'bio_kerosene_secondary', gquery: 'bio_ethanol_to_bio_kerosene_in_biomass_sankey', color: '#76B776'}, + {left: 'hydrogen', right: 'bio_kerosene_secondary', gquery: 'hydrogen_to_bio_kerosene_in_biomass_sankey', color: '#87cfeb'}, + {left: 'heat', right: 'bio_kerosene_secondary', gquery: 'steam_hot_water_to_bio_kerosene_in_biomass_sankey', color: '#cc0000'}, + + {left: 'biogenic_waste', right: 'biodiesel_secondary', gquery: 'biogenic_waste_to_biodiesel_in_biomass_sankey', color: '#A8C19C'}, + {left: 'biodiesel_primary', right: 'biodiesel_secondary', gquery: 'biodiesel_to_biodiesel_in_biomass_sankey', color: '#9ACD32'}, + {left: 'bio_ethanol', right: 'biodiesel_secondary', gquery: 'bio_ethanol_to_biodiesel_in_biomass_sankey', color: '#76B776'}, + {left: 'hydrogen', right: 'biodiesel_secondary', gquery: 'hydrogen_to_biodiesel_in_biomass_sankey', color: '#87cfeb'}, + + {left: 'biogenic_waste', right: 'bionaphtha_secondary', gquery: 'biogenic_waste_to_bionaphtha_in_biomass_sankey', color: '#A8C19C'}, + {left: 'bionaphtha_primary', right: 'bionaphtha_secondary', gquery: 'bionaphtha_to_bionaphtha_in_biomass_sankey', color: '#3CB371'}, + {left: 'hydrogen', right: 'bionaphtha_secondary', gquery: 'hydrogen_to_bionaphtha_in_biomass_sankey', color: '#87cfeb'}, + {left: 'heat', right: 'bionaphtha_secondary', gquery: 'steam_hot_water_to_bionaphtha_in_biomass_sankey', color: '#cc0000'}, + + # Column 2 to column 3 + {left: 'greengas_secondary', right: 'households', gquery: 'greengas_to_final_demand_households_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'buildings', gquery: 'greengas_to_final_demand_buildings_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'transport', gquery: 'greengas_to_final_demand_transport_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'bunkers', gquery: 'greengas_to_final_demand_bunkers_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'industry', gquery: 'greengas_to_final_demand_industry_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'agriculture', gquery: 'greengas_to_final_demand_agriculture_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'energy', gquery: 'greengas_to_final_demand_energy_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'other', gquery: 'greengas_to_final_demand_other_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'export', gquery: 'greengas_to_export_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'electricity_production', gquery: 'greengas_to_electricity_production_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'heat_production', gquery: 'greengas_to_heat_production_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'hydrogen_production', gquery: 'greengas_to_hydrogen_production_in_biomass_sankey', color: '#CFEA85'}, + {left: 'greengas_secondary', right: 'losses', gquery: 'greengas_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + {left: 'bio_kerosene_secondary', right: 'households', gquery: 'bio_kerosene_to_final_demand_households_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'buildings', gquery: 'bio_kerosene_to_final_demand_buildings_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'transport', gquery: 'bio_kerosene_to_final_demand_transport_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'bunkers', gquery: 'bio_kerosene_to_final_demand_bunkers_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'industry', gquery: 'bio_kerosene_to_final_demand_industry_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'agriculture', gquery: 'bio_kerosene_to_final_demand_agriculture_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'energy', gquery: 'bio_kerosene_to_final_demand_energy_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'other', gquery: 'bio_kerosene_to_final_demand_other_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'export', gquery: 'bio_kerosene_to_export_in_biomass_sankey', color: '#2E8B57'}, + {left: 'bio_kerosene_secondary', right: 'losses', gquery: 'bio_kerosene_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + {left: 'biodiesel_secondary', right: 'households', gquery: 'biodiesel_to_final_demand_households_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'buildings', gquery: 'biodiesel_to_final_demand_buildings_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'transport', gquery: 'biodiesel_to_final_demand_transport_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'bunkers', gquery: 'biodiesel_to_final_demand_bunkers_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'industry', gquery: 'biodiesel_to_final_demand_industry_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'agriculture', gquery: 'biodiesel_to_final_demand_agriculture_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'energy', gquery: 'biodiesel_to_final_demand_energy_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'other', gquery: 'biodiesel_to_final_demand_other_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'export', gquery: 'biodiesel_to_export_in_biomass_sankey', color: '#9ACD32'}, + {left: 'biodiesel_secondary', right: 'losses', gquery: 'biodiesel_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + {left: 'bionaphtha_secondary', right: 'industry', gquery: 'bionaphtha_to_final_demand_industry_in_biomass_sankey', color: '#3CB371'}, + {left: 'bionaphtha_secondary', right: 'export', gquery: 'bionaphtha_to_export_in_biomass_sankey', color: '#3CB371'}, + {left: 'bionaphtha_secondary', right: 'losses', gquery: 'bionaphtha_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + {left: 'biomethanol_secondary', right: 'transport', gquery: 'biomethanol_to_final_demand_transport_in_biomass_sankey', color: '#95B15C'}, + {left: 'biomethanol_secondary', right: 'bunkers', gquery: 'biomethanol_to_final_demand_bunkers_in_biomass_sankey', color: '#95B15C'}, + {left: 'biomethanol_secondary', right: 'industry', gquery: 'biomethanol_to_final_demand_industry_in_biomass_sankey', color: '#95B15C'}, + {left: 'biomethanol_secondary', right: 'export', gquery: 'biomethanol_to_export_in_biomass_sankey', color: '#95B15C'}, + {left: 'biomethanol_secondary', right: 'losses', gquery: 'biomethanol_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + {left: 'bio_pyrolysis_oil_secondary', right: 'export', gquery: 'bio_pyrolysis_oil_to_export_in_biomass_sankey', color: '#6B8E23'}, + {left: 'bio_pyrolysis_oil_secondary', right: 'losses', gquery: 'bio_pyrolysis_oil_to_loss_in_biomass_sankey', color: '#DCDCDC'}, + + # Column 0 to column 3 + {left: 'biogas', right: 'electricity_production', gquery: 'biogas_to_electricity_production_in_biomass_sankey', color: '#7FA025'}, + {left: 'biogas', right: 'heat_production', gquery: 'biogas_to_heat_production_in_biomass_sankey', color: '#7FA025'}, + + {left: 'biogenic_waste', right: 'industry', gquery: 'biogenic_waste_to_final_demand_industry_in_biomass_sankey', color: '#A8C19C'}, + {left: 'biogenic_waste', right: 'electricity_production', gquery: 'biogenic_waste_to_electricity_production_in_biomass_sankey', color: '#A8C19C'}, + {left: 'biogenic_waste', right: 'heat_production', gquery: 'biogenic_waste_to_heat_production_in_biomass_sankey', color: '#A8C19C'}, + + {left: 'wood_pellets', right: 'households', gquery: 'wood_pellets_to_final_demand_households_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'buildings', gquery: 'wood_pellets_to_final_demand_buildings_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'transport', gquery: 'wood_pellets_to_final_demand_transport_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'bunkers', gquery: 'wood_pellets_to_final_demand_bunkers_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'industry', gquery: 'wood_pellets_to_final_demand_industry_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'agriculture', gquery: 'wood_pellets_to_final_demand_agriculture_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'energy', gquery: 'wood_pellets_to_final_demand_energy_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'other', gquery: 'wood_pellets_to_final_demand_other_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'electricity_production', gquery: 'wood_pellets_to_electricity_production_in_biomass_sankey', color: '#228B22'}, + {left: 'wood_pellets', right: 'heat_production', gquery: 'wood_pellets_to_heat_production_in_biomass_sankey', color: '#228B22'}, + + {left: 'torrefied_biomass_pellets', right: 'electricity_production', gquery: 'torrefied_biomass_pellets_to_electricity_production_in_biomass_sankey', color: '#145814'}, + {left: 'torrefied_biomass_pellets', right: 'heat_production', gquery: 'torrefied_biomass_pellets_to_heat_production_in_biomass_sankey', color: '#145814'}, + {left: 'torrefied_biomass_pellets', right: 'hydrogen_production', gquery: 'torrefied_biomass_pellets_to_hydrogen_production_in_biomass_sankey', color: '#145814'}, + + {left: 'bio_ethanol', right: 'transport', gquery: 'bio_ethanol_to_final_demand_transport_in_biomass_sankey', color: '#76B776'}, + {left: 'bio_ethanol', right: 'export', gquery: 'bio_ethanol_to_export_in_biomass_sankey', color: '#76B776'}, + + {left: 'bio_lng', right: 'transport', gquery: 'bio_lng_to_final_demand_transport_in_biomass_sankey', color: '#BDB828'}, + {left: 'bio_lng', right: 'bunkers', gquery: 'bio_lng_to_final_demand_bunkers_in_biomass_sankey', color: '#BDB828'}, + + {left: 'bio_oil', right: 'households', gquery: 'bio_oil_to_final_demand_households_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'buildings', gquery: 'bio_oil_to_final_demand_buildings_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'transport', gquery: 'bio_oil_to_final_demand_transport_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'bunkers', gquery: 'bio_oil_to_final_demand_bunkers_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'industry', gquery: 'bio_oil_to_final_demand_industry_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'agriculture', gquery: 'bio_oil_to_final_demand_agriculture_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'energy', gquery: 'bio_oil_to_final_demand_energy_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'other', gquery: 'bio_oil_to_final_demand_other_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'electricity_production', gquery: 'bio_oil_to_electricity_production_in_biomass_sankey', color: '#9E9911'}, + {left: 'bio_oil', right: 'heat_production', gquery: 'bio_oil_to_heat_production_in_biomass_sankey', color: '#9E9911'}, ] co2_sankey: data: diff --git a/config/locales/interface/output_elements/en_supply.yml b/config/locales/interface/output_elements/en_supply.yml index 799872973..167d4bfce 100644 --- a/config/locales/interface/output_elements/en_supply.yml +++ b/config/locales/interface/output_elements/en_supply.yml @@ -107,14 +107,11 @@ en: description: biomass_sankey: title: Future biomass flows - short_description: '' - description: "This chart shows the biomass flows in this area. On the left primary - biomass resources are shown and the origin of these sources (locally sourced - or imported). The middle of the chart shows the conversion of biomass resources - into other energy carriers (like green gas, bio fuels, electricity and heat). - On the right side you can see the sectors in which the energy is ultimately - used.
\r\nFloating over the chart with you mouse will highlight different - parts and reveal more information." + short_description: + description: + This chart shows the biomass flows in this region. The flows of primary biomass carriers to + conversion processes are depicted, as well as flows to final demand sectors, export, + losses and further conversion to electricity, heat and hydrogen. biomass_demand_by_category: title: Biomass demand and potential short_description: diff --git a/config/locales/interface/output_elements/labels_groups/en_labels.yml b/config/locales/interface/output_elements/labels_groups/en_labels.yml index 4b2d8bc3b..83d8263e8 100644 --- a/config/locales/interface/output_elements/labels_groups/en_labels.yml +++ b/config/locales/interface/output_elements/labels_groups/en_labels.yml @@ -222,7 +222,8 @@ en: biomass_waste: "biomass & waste" biomass_waste_greengas: "biomass, waste & green gas" electricity_import: "electricity import" - electricity_production: "electricity & CHP" + electricity_production: "electricity production" + heat_production: "heat production" emitted: "emitted" central_heat_production: "central heat" households: "households" @@ -272,8 +273,8 @@ en: solar: "solar" wind: "wind" wind_electricity : "wind electricity" - hydrogen_production: "hydrogen" hydrogen_production_inflexible: "must-run and volatile hydrogen production" + torrefied_biomass_pellets: "biocoal" import: "import" geo_ambient: "geothermal & ambient" water: "hydropower" @@ -376,6 +377,8 @@ en: wet_biomass: "wet biomass" biofuel_import: "biofuel import" bio_pyrolysis_oil: "pyrolysis bio-oil" + bio_lng: "bio-LNG" + bio_oil: "bio-oil" pyrolysis_fractionation: "pyrolysis oil fractionation" pyrolysis: "pyrolysis" steam_hot_water: "heat" @@ -406,3 +409,4 @@ en: oily_biomass: "oil-containing biomass" refinery_gas: "refinery gas" wood_pellets: "wood pellets" + industry_transformation: "industry transformation" diff --git a/config/locales/interface/output_elements/labels_groups/nl_labels.yml b/config/locales/interface/output_elements/labels_groups/nl_labels.yml index dfb0fec7d..63fbcbb71 100644 --- a/config/locales/interface/output_elements/labels_groups/nl_labels.yml +++ b/config/locales/interface/output_elements/labels_groups/nl_labels.yml @@ -217,7 +217,7 @@ nl: biomass_waste: "biomassa & afval" biomass_waste_greengas: "biomassa, afval & groen gas" electricity_import: "elektriciteit import" - electricity_production: "elektriciteit & WKK" + electricity_production: "elektriciteitsproductie" emitted: "uitgestoten" central_heat_production: "centrale warmte" households: "huishoudens" @@ -266,7 +266,6 @@ nl: wind: "wind" wind_electricity : "elektriciteit uit wind" hydro_electricty: "elektriciteit uit waterkracht" - hydrogen_production: "waterstof" hydrogen_production_inflexible: "niet-regelbare en volatiele waterstofproductie" hydrogen_import: "waterstof import" geo_ambient: "geothermisch & omgeving" @@ -312,6 +311,7 @@ nl: dac: "direct air capture" power_production: "elektriciteitsproductie" hydrogen_production: "waterstofproductie" + heat_production: "warmteproductie" industry_refineries: "raffinage-industrie" industry_fertilizers: "kunstmestindustrie" fischer_tropsch_capture: "Fischer-Tropsch (uit vergassing)" @@ -354,6 +354,8 @@ nl: non_oil_output: "niet-olie outputs" pyrolysis_oil: "pyrolyse-olie" bio_pyrolysis_oil: "biogene pyrolyse-olie" + bio_lng: "bio-LNG" + bio_oil: "bio-olie" pyrolysis_fractionation: "pyrolyse-olie fractionering" pyrolysis: "pyrolyse" steam_hot_water_input: "warmte" @@ -387,3 +389,5 @@ nl: oily_biomass: "oliehoudende biomassa" refinery_gas: "raffinagegas" wood_pellets: "houtpellets" + torrefied_biomass_pellets: "biokolen" + industry_transformation: "industrie transformatie" diff --git a/config/locales/interface/output_elements/nl_supply.yml b/config/locales/interface/output_elements/nl_supply.yml index 759d8b467..b10a362cb 100644 --- a/config/locales/interface/output_elements/nl_supply.yml +++ b/config/locales/interface/output_elements/nl_supply.yml @@ -108,14 +108,12 @@ nl: description: biomass_sankey: title: Toekomstige biomassastromen - short_description: '' - description: "Deze flowchart laat de biomassastromen zien in dit gebied. Aan - de linkerkant zijn de primaire biomassabronnen te zien en hun herkomst (lokaal - of import). In het midden van de grafiek zie je de omzetting van deze biomassabronnen - in andere energiedragers, zoals groen gas, biobrandstoffen, elektriciteit en - warmte. Aan de rechterkant zie je ten slotte in welke sectoren de energie - gebruikt wordt. \r\n
\r\nAls je met je muis over de grafiek gaat, zie - je verschillende onderdelen oplichten en kun je meer informatie krijgen." + short_description: + description: + Deze grafiek toont de biomassastromen in deze regio. De stromen van primaire + biomassadragers naar conversieprocessen worden weergegeven, evenals stromen naar + eindverbruiksectoren, export, verliezen en verdere conversie naar elektriciteit, warmte en + waterstof. biomass_demand_by_category: title: Biomassavraag en -potentie short_description: