quintel / etengine

Calculation engine for the Energy Transition Model
https://energytransitionmodel.com/
MIT License
15 stars 7 forks source link

Create method to show bio_footprint per converter #288

Closed WvanLelyveld closed 12 years ago

WvanLelyveld commented 12 years ago

We currently can't query what the bio_footprint of one converter is.

It would be nice to be able to query this like: V(converter;bio_footprint)

It can work just like the bio_footprint_calculation as defined here, so it is a multiplication of the demand times the typical_production_per_km2 of the respective input_carriers.

dennisquintel commented 12 years ago

Link above does not point anymore to correct line number. I think @WvanLelyveld meant:

  def area_footprint
    graph.group_converters(:bio_footprint_calculation).map do |c|
      slot = c.outputs.reject(&:loss?).first
      demand = c.demand || 0.0
      if prod = slot.carrier.typical_production_per_km2
        demand / prod
      else
        0.0
      end
    end.flatten.compact.sum
  end
dennisquintel commented 12 years ago

@cjlaumans, @AlexanderWirtz ,@markquintel, @wmeyers: is this still needed?

dennisquintel commented 12 years ago

Functionally added in 1bd8a6c. (in a feature branch for now). Seems to work for the Converters that are in bio_foot_print_calculation:

GQL: group = G(bio_footprint_calculation)
GQL: TXT_TABLE(group, key, area_footprint)

+-------------------------------------------+--------------------+
|                    key                    |   area_footprint   |
+-------------------------------------------+--------------------+
| energy_distribution_biodiesel             | 693.8025210084015  |
| energy_distribution_bio_ethanol           | 599.7863247863248  |
| energy_production_bio_residues_for_firing | 0.0                |
| energy_distribution_bio_oil               | 0.0                |
| energy_import_greengas                    | 0.0                |
| energy_distribution_algae_diesel          | 0.0                |
| energy_distribution_biogas                | 62.749800168737536 |
| energy_import_torrified_biomass_pellets   | 0.0                |
| energy_import_wood_pellets                | 0.0                |
| energy_production_wood                    | 0.0                |
+-------------------------------------------+--------------------+

This seems to add up to the GRAPH query:

GQL: GRAPH(area_footprint)
=> 1356.3386459634637
dennisquintel commented 12 years ago

Might be interesting: when you query all converters:

GQL: TXT_TABLE(ALL(), key, area_footprint)
+------------------------------------------------------------------------------------------+--------------------+
|                                           key                                            |   area_footprint   |
+------------------------------------------------------------------------------------------+--------------------+
| households_useful_demand_hot_water                                                       | 0.0                |
| households_appliances_other_electricity                                                  | 0.0                |
| industry_useful_demand_electricity                                                       | 0.0                |
| industry_useful_demand_useable_heat                                                      | 0.0                |
| transport_useful_demand_truck_kms                                                        | 0.0                |
| transport_useful_demand_car_kms                                                          | 0.0                |
| transport_truck_using_electricity                                                        | 0.0                |
| transport_truck_using_diesel_mix                                                         | 0.0                |
| transport_truck_using_gasoline_mix                                                       | 0.0                |
| transport_car_using_electricity                                                          | 0.0                |
| transport_car_using_diesel_mix                                                           | 0.0                |
| transport_car_using_gasoline_mix                                                         | 0.0                |
| transport_car_using_lpg                                                                  | 0.0                |
| transport_truck_using_compressed_natural_gas                                             | 0.0                |
| transport_car_using_compressed_natural_gas                                               | 0.0                |
| transport_useful_demand_crude_oil_non_energetic                                          | 0.0                |
| buildings_useful_demand_cooling                                                          | 0.0                |
| agriculture_useful_demand_useable_heat                                                   | 0.0                |
| agriculture_useful_demand_electricity                                                    | 0.0                |
| other_useful_demand_electricity                                                          | 0.0                |
| energy_production_bio_oil                                                                | 0.0                |
| energy_extraction_natural_gas                                                            | 0.0                |
| energy_extraction_crude_oil                                                              | 0.0                |
| energy_extraction_coal                                                                   | 0.0                |
| industry_useful_demand_coal_non_energetic                                                | 0.0                |
| energy_production_biodiesel                                                              | 0.0                |
| energy_production_bio_ethanol                                                            | 0.0                |
| other_useful_demand_crude_oil_non_energetic                                              | 0.0                |
| industry_useful_demand_crude_oil_non_energetic                                           | 0.0                |
| industry_useful_demand_network_gas_non_energetic                                         | 0.0                |
| industry_useful_demand_wood_pellets_non_energetic                                        | 0.0                |
| industry_useful_demand_electricity_non_energetic                                         | 0.0                |
| agriculture_final_demand_steam_hot_water                                                 | 0.0                |
| industry_final_demand_electricity                                                        | 0.0                |
| industry_final_demand_steam_hot_water                                                    | 0.0                |
| industry_final_demand_wood_pellets_non_energetic                                         | 0.0                |
| industry_final_demand_coal_non_energetic                                                 | 0.0                |
| industry_final_demand_electricity_non_energetic                                          | 0.0                |
| industry_final_demand_network_gas_non_energetic                                          | 0.0                |
| industry_final_demand_crude_oil_non_energetic                                            | 0.0                |
| other_final_demand_crude_oil_non_energetic                                               | 0.0                |
| transport_final_demand_crude_oil_non_energetic                                           | 0.0                |
| households_useful_demand_light                                                           | 0.0                |
| households_lighting_led_electricity                                                      | 0.0                |
| households_lighting_efficient_fluorescent_electricity                                    | 0.0                |
| households_lighting_incandescent_electricity                                             | 0.0                |
| energy_final_demand_electricity                                                          | 0.0                |
| energy_final_demand_crude_oil                                                            | 0.0                |
| energy_final_demand_network_gas                                                          | 0.0                |
| energy_final_demand_steam_hot_water                                                      | 0.0                |
| energy_extraction_uranium_oxide                                                          | 0.0                |
| energy_production_algae_diesel                                                           | 0.0                |
| agriculture_burner_wood_pellets                                                          | 0.0                |
| agriculture_burner_crude_oil                                                             | 0.0                |
| agriculture_final_demand_for_heat_crude_oil                                              | 0.0                |
| agriculture_final_demand_crude_oil                                                       | 0.0                |
| agriculture_burner_network_gas                                                           | 0.0                |
| agriculture_final_demand_for_heat_network_gas                                            | 0.0                |
| agriculture_final_demand_network_gas                                                     | 0.0                |
| other_useful_demand_useable_heat                                                         | 0.0                |
| other_burner_coal                                                                        | 0.0                |
| other_final_demand_for_heat_coal                                                         | 0.0                |
| other_final_demand_coal                                                                  | 0.0                |
| other_burner_crude_oil                                                                   | 0.0                |
| other_final_demand_for_heat_crude_oil                                                    | 0.0                |
| other_final_demand_crude_oil                                                             | 0.0                |
| other_burner_wood_pellets                                                                | 0.0                |
| other_final_demand_for_heat_biomass                                                      | 110.59021517009235 |
| other_final_demand_wood_pellets                                                          | 110.59021517009235 |
| other_burner_network_gas                                                                 | 0.0                |
| other_final_demand_for_heat_gas                                                          | 0.0                |
| other_final_demand_network_gas                                                           | 0.0                |
| industry_burner_coal                                                                     | 0.0                |
| industry_final_demand_for_heat_coal                                                      | 0.0                |
| industry_final_demand_coal                                                               | 0.0                |
| industry_burner_crude_oil                                                                | 0.0                |
| industry_final_demand_for_heat_crude_oil                                                 | 0.0                |
| industry_final_demand_crude_oil                                                          | 0.0                |
| industry_burner_wood_pellets                                                             | 0.0                |
| industry_final_demand_for_heat_wood_pellets                                              | 200.14424810674373 |
| industry_final_demand_wood_pellets                                                       | 200.14424810674373 |
| industry_burner_network_gas                                                              | 0.0                |
| industry_final_demand_for_heat_network_gas                                               | 0.0                |
| industry_final_demand_network_gas                                                        | 0.0                |
| agriculture_heatpump_water_water_ts_electricity                                          | 0.0                |
| agriculture_geothermal                                                                   | 0.0                |
| agriculture_final_demand_electricity                                                     | 0.0                |
| agriculture_final_demand_for_heat_wood_pellets                                           | 48.08270224786633  |
| households_old_houses_useful_demand_for_heating                                          | 0.0                |
| households_old_houses_heating_savings_from_insulation                                    | 0.0                |
| energy_distribution_algae_diesel                                                         | 0.0                |
| energy_import_algae_diesel                                                               | 0.0                |
| buildings_useful_demand_for_space_heating                                                | 0.0                |
| households_new_houses_useful_demand_for_heating                                          | 0.0                |
| households_useful_demand_for_space_heating_after_insulation                              | 0.0                |
| households_useful_demand_cooking_useable_heat                                            | 0.0                |
| households_cooker_network_gas                                                            | 0.0                |
| households_cooker_resistive_electricity                                                  | 0.0                |
| households_cooker_halogen_electricity                                                    | 0.0                |
| households_cooker_induction_electricity                                                  | 0.0                |
| households_appliances_dishwasher_electricity                                             | 0.0                |
| households_appliances_fridge_freezer_electricity                                         | 0.0                |
| households_appliances_vacuum_cleaner_electricity                                         | 0.0                |
| households_appliances_washing_machine_electricity                                        | 0.0                |
| households_appliances_clothes_dryer_electricity                                          | 0.0                |
| households_appliances_television_electricity                                             | 0.0                |
| households_appliances_computer_media_electricity                                         | 0.0                |
| buildings_heating_savings_from_insulation_useable_heat                                   | 0.0                |
| buildings_useful_demand_for_appliances                                                   | 0.0                |
| households_old_houses_useful_demand_for_cooling                                          | 0.0                |
| households_new_houses_useful_demand_for_cooling                                          | 0.0                |
| households_useful_demand_for_cooling_after_insulation                                    | 0.0                |
| households_cooling_airconditioning_electricity                                           | 0.0                |
| households_cooling_heatpump_ground_water_electricity                                     | 0.0                |
| households_cooling_heatpump_air_water_network_gas                                        | 0.0                |
| households_cooling_collective_heatpump_water_water_ts_electricity                        | 0.0                |
| households_old_houses_cooling_savings_from_insulation                                    | 0.0                |
| households_new_houses_cooling_savings_from_insulation                                    | 0.0                |
| households_new_houses_heating_savings_from_insulation                                    | 0.0                |
| buildings_cooling_savings_insulation_cooling                                             | 0.0                |
| buildings_useful_demand_for_space_heating_after_insulation                               | 0.0                |
| buildings_useful_demand_for_space_heating_after_insulation_recirculation                 | 0.0                |
| buildings_useful_demand_for_space_heating_after_insulation_recirculation_recovery        | 0.0                |
| buildings_space_heater_network_gas                                                       | 0.0                |
| buildings_space_heater_electricity                                                       | 0.0                |
| buildings_space_heater_solar_thermal                                                     | 0.0                |
| buildings_space_heater_heatpump_air_water_network_gas                                    | 0.0                |
| buildings_space_heater_wood_pellets                                                      | 0.0                |
| buildings_space_heater_collective_heatpump_water_water_ts_electricity                    | 0.0                |
| buildings_space_heater_crude_oil                                                         | 0.0                |
| buildings_space_heater_coal                                                              | 0.0                |
| buildings_useful_demand_after_insulation_cooling                                         | 0.0                |
| buildings_useful_demand_after_insulation_recirculation_cooling                           | 0.0                |
| buildings_useful_demand_after_insulation_recirculation_recovery_cooling                  | 0.0                |
| buildings_cooling_collective_cooling_network_electricity                                 | 0.0                |
| buildings_cooling_heatpump_air_water_network_gas                                         | 0.0                |
| buildings_cooling_collective_heatpump_water_water_ts_electricity                         | 0.0                |
| buildings_cooling_airconditioning                                                        | 0.0                |
| buildings_heating_savings_from_recirculation_useable_heat                                | 0.0                |
| buildings_heating_savings_from_recovery_useable_heat                                     | 0.0                |
| buildings_cooling_savings_from_recirculation_cooling                                     | 0.0                |
| buildings_cooling_savings_from_recovery_cooling                                          | 0.0                |
| buildings_useful_demand_light                                                            | 0.0                |
| buildings_useful_demand_after_motion_detection_light                                     | 0.0                |
| buildings_useful_demand_after_motion_detection_daylight_control_light                    | 0.0                |
| buildings_lighting_standard_fluorescent_electricity                                      | 0.0                |
| buildings_lighting_efficient_fluorescent                                                 | 0.0                |
| buildings_lighting_led                                                                   | 0.0                |
| buildings_lighting_savings_from_daylight_control_light                                   | 0.0                |
| buildings_lighting_savings_from_motion_detection_light                                   | 0.0                |
| buildings_appliances_crude_oil                                                           | 0.0                |
| buildings_appliances_network_gas                                                         | 0.0                |
| buildings_appliances_wood_pellets                                                        | 0.0                |
| buildings_appliances_electricity                                                         | 0.0                |
| agriculture_locally_available_electricity                                                | 0.0                |
| agriculture_chp_engine_gas_power_fuelmix                                                 | 0.0                |
| agriculture_locally_available_steam_hot_water                                            | 0.0                |
| agriculture_unused_local_production_steam_hot_water                                      | 0.0                |
| industry_locally_available_electricity                                                   | 0.0                |
| industry_chp_combined_cycle_gas_power_fuelmix                                            | 0.0                |
| industry_chp_supercritical_wood_pellets                                                  | 0.0                |
| energy_power_hydro_mountain_pumped                                                       | 0.0                |
| transport_useful_demand_planes                                                           | 0.0                |
| transport_plane_using_gasoline                                                           | 0.0                |
| transport_plane_using_bio_ethanol                                                        | 0.0                |
| transport_useful_demand_trains                                                           | 0.0                |
| transport_train_using_electricity                                                        | 0.0                |
| transport_train_using_coal                                                               | 0.0                |
| transport_train_using_diesel                                                             | 0.0                |
| transport_useful_demand_ships                                                            | 0.0                |
| transport_ship_using_diesel                                                              | 0.0                |
| transport_ship_using_biodiesel                                                           | 0.0                |
| industry_chp_ultra_supercritical_coal                                                    | 0.0                |
| industry_locally_available_steam_hot_water                                               | 0.0                |
| industry_unused_local_production_steam_hot_water                                         | 0.0                |
| households_cooker_wood_pellets                                                           | 0.0                |
| energy_import_steam_hot_water                                                            | 0.0                |
| energy_export_algae_diesel                                                               | 0.0                |
| households_useful_demand_dishwasher                                                      | 0.0                |
| households_useful_demand_fridge_freezer                                                  | 0.0                |
| households_useful_demand_washing_machine                                                 | 0.0                |
| households_useful_demand_clothes_dryer                                                   | 0.0                |
| households_useful_demand_television                                                      | 0.0                |
| households_useful_demand_computer_media                                                  | 0.0                |
| households_useful_demand_vacuum_cleaner                                                  | 0.0                |
| households_useful_demand_other_appliances                                                | 0.0                |
| households_final_demand_for_cooling_network_gas                                          | 0.0                |
| households_final_demand_for_cooking_network_gas                                          | 0.0                |
| households_final_demand_for_cooking_wood_pellets                                         | 0.0                |
| households_final_demand_for_cooling_electricity                                          | 0.0                |
| households_final_demand_for_cooking_electricity                                          | 0.0                |
| households_final_demand_for_lighting_electricity                                         | 0.0                |
| households_final_demand_for_appliances_electricity                                       | 0.0                |
| transport_final_demand_for_road_lpg                                                      | 0.0                |
| transport_final_demand_lpg                                                               | 0.0                |
| energy_distribution_lpg                                                                  | 0.0                |
| energy_production_lpg                                                                    | 0.0                |
| energy_import_lpg                                                                        | 0.0                |
| energy_export_lpg                                                                        | 0.0                |
| transport_final_demand_for_road_electricity                                              | 0.0                |
| transport_final_demand_for_rail_coal                                                     | 0.0                |
| transport_final_demand_coal                                                              | 0.0                |
| transport_final_demand_for_rail_electricity                                              | 0.0                |
| transport_final_demand_electricity                                                       | 0.0                |
| transport_final_demand_for_shipping_diesel                                               | 0.0                |
| transport_final_demand_for_aviation_gasoline                                             | 0.0                |
| transport_road_mixer_gasoline                                                            | 0.0                |
| transport_final_demand_for_road_gasoline                                                 | 0.0                |
| transport_final_demand_gasoline                                                          | 0.0                |
| energy_distribution_gasoline                                                             | 0.0                |
| energy_production_gasoline                                                               | 0.0                |
| energy_import_gasoline                                                                   | 0.0                |
| energy_export_gasoline                                                                   | 0.0                |
| transport_final_demand_for_road_bio_ethanol                                              | 599.7863247863248  |
| transport_road_mixer_diesel                                                              | 0.0                |
| transport_final_demand_for_road_diesel                                                   | 0.0                |
| transport_final_demand_for_road_biodiesel                                                | 693.8025210084015  |
| transport_road_compressor_network_gas                                                    | 0.0                |
| transport_final_demand_for_road_network_gas                                              | 0.0                |
| transport_final_demand_network_gas                                                       | 0.0                |
| transport_rail_mixer_diesel                                                              | 0.0                |
| transport_final_demand_for_rail_diesel                                                   | 0.0                |
| transport_final_demand_diesel                                                            | 0.0                |
| transport_final_demand_for_rail_biodiesel                                                | 0.0                |
| transport_final_demand_for_shipping_biodiesel                                            | 0.0                |
| transport_final_demand_biodiesel                                                         | 693.8025210084015  |
| energy_distribution_biodiesel                                                            | 693.8025210084015  |
| energy_import_biodiesel                                                                  | 693.8025210084015  |
| energy_export_biodiesel                                                                  | 0.0                |
| transport_final_demand_for_aviation_biodiesel                                            | 0.0                |
| transport_final_demand_bio_ethanol                                                       | 599.7863247863248  |
| energy_distribution_bio_ethanol                                                          | 599.7863247863248  |
| energy_import_bio_ethanol                                                                | 599.7863247863248  |
| energy_export_bio_ethanol                                                                | 0.0                |
| transport_plane_using_kerosene                                                           | 0.0                |
| transport_final_demand_for_aviation_kerosene                                             | 0.0                |
| transport_final_demand_kerosene                                                          | 0.0                |
| energy_distribution_kerosene                                                             | 0.0                |
| energy_production_kerosene                                                               | 0.0                |
| energy_import_kerosene                                                                   | 0.0                |
| energy_export_kerosene                                                                   | 0.0                |
| transport_ship_using_heavy_fuel_oil                                                      | 0.0                |
| transport_final_demand_for_shipping_heavy_fuel_oil                                       | 0.0                |
| transport_final_demand_heavy_fuel_oil                                                    | 0.0                |
| energy_distribution_heavy_fuel_oil                                                       | 0.0                |
| energy_production_heavy_fuel_oil                                                         | 0.0                |
| other_heater_district_heating_steam_hot_water                                            | 0.0                |
| other_final_demand_for_heat_steam_hot_water                                              | 0.0                |
| other_final_demand_steam_hot_water                                                       | 0.0                |
| other_electricity_for_electricity                                                        | 0.0                |
| other_final_demand_electricity                                                           | 0.0                |
| other_local_production_electricity                                                       | 0.0                |
| other_chp_engine_gas_power_fuelmix                                                       | 0.0                |
| other_chp_supercritical_wood_pellets                                                     | 0.0                |
| other_local_production_steam_hot_water                                                   | 0.0                |
| other_unused_local_production_steam_hot_water                                            | 0.0                |
| buildings_space_heater_district_heating_steam_hot_water                                  | 0.0                |
| buildings_appliances_coal                                                                | 0.0                |
| buildings_final_demand_for_space_heating_coal                                            | 0.0                |
| buildings_final_demand_for_space_heating_crude_oil                                       | 0.0                |
| buildings_final_demand_for_space_heating_gas                                             | 0.0                |
| buildings_final_demand_for_space_heating_wood_pellets                                    | 0.0                |
| buildings_final_demand_for_space_heating_solar                                           | 0.0                |
| buildings_final_demand_for_space_heating_electricity                                     | 0.0                |
| buildings_final_demand_for_space_heating_monetized_heat                                  | 0.0                |
| buildings_final_demand_steam_hot_water                                                   | 0.0                |
| buildings_heat_network_connection_steam_hot_water                                        | 0.0                |
| buildings_collective_chp_gas_power_fuelmix                                               | 0.0                |
| buildings_collective_chp_wood_pellets                                                    | 0.0                |
| buildings_collective_geothermal                                                          | 0.0                |
| buildings_final_demand_for_cooling_gas                                                   | 0.0                |
| buildings_final_demand_for_cooling_electricity                                           | 0.0                |
| buildings_final_demand_for_lighting_electricity                                          | 0.0                |
| buildings_final_demand_for_appliances_coal                                               | 0.0                |
| buildings_final_demand_coal                                                              | 0.0                |
| buildings_final_demand_for_appliances_crude_oil                                          | 0.0                |
| buildings_final_demand_crude_oil                                                         | 0.0                |
| buildings_final_demand_for_appliances_gas                                                | 0.0                |
| buildings_final_demand_network_gas                                                       | 0.0                |
| buildings_final_demand_for_appliances_wood_pellets                                       | 0.0                |
| buildings_final_demand_wood_pellets                                                      | 0.0                |
| buildings_final_demand_for_appliances_electricity                                        | 0.0                |
| buildings_final_demand_electricity                                                       | 0.0                |
| buildings_local_production_electricity                                                   | 0.0                |
| buildings_solar_pv_solar_radiation                                                       | 0.0                |
| buildings_final_demand_solar_thermal                                                     | 0.0                |
| households_useful_demand_for_space_heating_after_insulation_for_houses_with_solar_heater | 0.0                |
| households_useful_demand_for_space_heating_after_insulation_and_solar_heater             | 0.0                |
| households_useful_demand_for_hot_water_for_houses_with_solar_heater                      | 0.0                |
| households_water_heater_solar_thermal                                                    | 0.0                |
| households_final_demand_for_hot_water_solar_thermal                                      | 0.0                |
| households_final_demand_solar_thermal                                                    | 0.0                |
| energy_production_solar_thermal                                                          | 0.0                |
| households_useful_demand_for_hot_water_after_solar_heater                                | 0.0                |
| households_useful_demand_for_space_heating_after_insulation_for_houses_with_add_on       | 0.0                |
| households_useful_demand_for_space_heating_after_insulation_and_solar_heater_and_add_on  | 0.0                |
| households_space_heater_collective_heatpump_water_water_ts_electricity                   | 0.0                |
| households_space_heater_electricity                                                      | 0.0                |
| households_space_heater_combined_network_gas                                             | 0.0                |
| households_space_heater_heatpump_ground_water_electricity                                | 0.0                |
| households_space_heater_wood_pellets                                                     | 0.0                |
| households_space_heater_coal                                                             | 0.0                |
| households_space_heater_crude_oil                                                        | 0.0                |
| households_space_heater_heatpump_air_water_network_gas                                   | 0.0                |
| households_space_heater_district_heating_steam_hot_water                                 | 0.0                |
| households_space_heater_micro_chp_network_gas                                            | 0.0                |
| households_space_heater_network_gas                                                      | 0.0                |
| households_final_demand_for_space_heating_coal                                           | 0.0                |
| households_final_demand_for_space_heating_crude_oil                                      | 0.0                |
| households_final_demand_for_space_heating_network_gas                                    | 0.0                |
| households_final_demand_for_space_heating_wood_pellets                                   | 560.1648177833764  |
| households_final_demand_for_space_heating_steam_hot_water                                | 0.0                |
| households_useful_demand_for_hot_water_for_houses_with_add_on                            | 0.0                |
| households_space_heater_heatpump_add_on_electricity                                      | 0.0                |
| households_useful_demand_for_hot_water_after_solar_heater_and_add_on                     | 0.0                |
| households_water_heater_heatpump_air_water_electricity                                   | 0.0                |
| households_water_heater_resistive_electricity                                            | 0.0                |
| households_water_heater_district_heating_steam_hot_water                                 | 0.0                |
| households_water_heater_combined_network_gas                                             | 0.0                |
| households_water_heater_wood_pellets                                                     | 0.0                |
| households_water_heater_coal                                                             | 0.0                |
| households_water_heater_crude_oil                                                        | 0.0                |
| households_water_heater_network_gas                                                      | 0.0                |
| households_water_heater_micro_chp_network_gas                                            | 0.0                |
| households_water_heater_fuel_cell_chp_network_gas                                        | 0.0                |
| households_final_demand_for_hot_water_coal                                               | 0.0                |
| households_final_demand_coal                                                             | 0.0                |
| energy_production_cokes                                                                  | 0.0                |
| households_final_demand_for_hot_water_crude_oil                                          | 0.0                |
| households_final_demand_crude_oil                                                        | 0.0                |
| households_final_demand_for_hot_water_network_gas                                        | 0.0                |
| households_final_demand_network_gas                                                      | 0.0                |
| households_final_demand_for_hot_water_wood_pellets                                       | 0.0                |
| households_final_demand_wood_pellets                                                     | 560.1648177833764  |
| households_final_demand_for_space_heating_electricity                                    | 0.0                |
| households_final_demand_for_hot_water_electricity                                        | 0.0                |
| households_final_demand_electricity                                                      | 0.0                |
| households_final_demand_for_hot_water_steam_hot_water                                    | 0.0                |
| households_final_demand_steam_hot_water                                                  | 0.0                |
| households_heat_network_connection_steam_hot_water                                       | 0.0                |
| households_collective_chp_network_gas                                                    | 0.0                |
| households_collective_chp_wood_pellets                                                   | 0.0                |
| households_collective_geothermal                                                         | 0.0                |
| households_locally_available_electricity                                                 | 0.0                |
| energy_power_lv_network_electricity                                                      | 0.0                |
| households_solar_pv_solar_radiation                                                      | 0.0                |
| energy_power_transformer_lv_mv_electricity                                               | 0.0                |
| energy_power_mv_distribution_network_electricity                                         | 0.0                |
| energy_power_mv_transport_network_electricity                                            | 0.0                |
| energy_power_transformer_mv_hv_electricity                                               | 0.0                |
| energy_power_hv_network_electricity                                                      | 0.0                |
| energy_power_solar_pv_solar_radiation                                                    | 0.0                |
| energy_power_ultra_supercritical_gas_power_fuelmix                                       | 0.0                |
| energy_chp_combined_cycle_gas_power_fuelmix                                              | 0.0                |
| energy_power_supercritical_waste_mix                                                     | 0.0                |
| energy_power_ultra_supercritical_coal                                                    | 0.0                |
| energy_power_ultra_supercritical_ccs_coal                                                | 0.0                |
| energy_power_supercritical_coal                                                          | 0.0                |
| energy_power_ultra_supercritical_lignite                                                 | 0.0                |
| energy_power_ultra_supercritical_oxyfuel_ccs_lignite                                     | 0.0                |
| energy_power_combined_cycle_coal                                                         | 0.0                |
| energy_power_combined_cycle_ccs_coal                                                     | 0.0                |
| energy_power_ultra_supercritical_crude_oil                                               | 0.0                |
| energy_power_combined_cycle_gas_power_fuelmix                                            | 0.0                |
| energy_chp_ultra_supercritical_coal                                                      | 0.0                |
| energy_interconnector_imported_electricity                                               | 0.0                |
| energy_power_nuclear_gen3_uranium_oxide                                                  | 0.0                |
| energy_power_wind_turbine_inland                                                         | 0.0                |
| energy_power_wind_turbine_coastal                                                        | 0.0                |
| energy_power_wind_turbine_offshore                                                       | 0.0                |
| energy_power_ultra_supercritical_cofiring_wood_pellets                                   | 0.0                |
| energy_power_solar_csp_solar_radiation                                                   | 0.0                |
| energy_power_hydro_river                                                                 | 0.0                |
| energy_power_hydro_mountain                                                              | 0.0                |
| energy_power_geothermal                                                                  | 0.0                |
| energy_power_hv_network_loss                                                             | 0.0                |
| energy_import_electricity                                                                | 0.0                |
| environment_water                                                                        | 0.0                |
| environment_sun                                                                          | 0.0                |
| environment_air                                                                          | 0.0                |
| energy_export_electricity                                                                | 0.0                |
| energy_power_nuclear_gen2_uranium_oxide                                                  | 0.0                |
| energy_distribution_uranium_oxide                                                        | 0.0                |
| energy_treatment_uranium_oxide                                                           | 0.0                |
| energy_import_uranium_oxide                                                              | 0.0                |
| energy_power_combined_cycle_ccs_gas_power_fuelmix                                        | 0.0                |
| energy_chp_ultra_supercritical_lignite                                                   | 0.0                |
| energy_chp_ultra_supercritical_crude_oil                                                 | 0.0                |
| energy_chp_ultra_supercritical_wood_pellets                                              | 0.0                |
| energy_heat_network_steam_hot_water                                                      | 0.0                |
| energy_heater_for_heat_network_geothermal                                                | 0.0                |
| energy_heat_network_loss                                                                 | 0.0                |
| energy_heat_network_unused_steam_hot_water                                               | 0.0                |
| environment_earth                                                                        | 0.0                |
| energy_heat_remainder_from_heat_network_used_steam_hot_water                             | 0.0                |
| energy_heat_remainder_from_heat_network_steam_hot_water                                  | 0.0                |
| energy_heat_network_backup_heater_gas_power_fuelmix                                      | 0.0                |
| energy_heat_remainder_from_heat_network_unused_steam_hot_water                           | 0.0                |
| energy_heater_for_heat_network_coal                                                      | 0.0                |
| energy_distribution_coal                                                                 | 0.0                |
| energy_import_coal                                                                       | 0.0                |
| energy_heater_for_heat_network_lignite                                                   | 0.0                |
| energy_distribution_lignite                                                              | 0.0                |
| energy_extraction_lignite                                                                | 0.0                |
| energy_heater_for_heat_network_crude_oil                                                 | 0.0                |
| energy_heater_for_heat_network_network_gas                                               | 0.0                |
| energy_heater_for_heat_network_waste_mix                                                 | 0.0                |
| energy_distribution_waste_mix                                                            | 0.0                |
| energy_heater_for_heat_network_wood_pellets                                              | 0.0                |
| energy_distribution_torrified_biomass_pellets                                            | 0.0                |
| energy_torrefaction_wood                                                                 | 0.0                |
| energy_import_torrified_biomass_pellets                                                  | 0.0                |
| energy_distribution_wood_pellets                                                         | 4574.532688415599  |
| energy_distribution_bio_residues_for_firing                                              | 4574.532688415599  |
| energy_production_bio_residues_for_firing                                                | 0.0                |
| energy_production_wood_pellets                                                           | 0.0                |
| energy_import_wood_pellets                                                               | 0.0                |
| energy_distribution_wood                                                                 | 0.0                |
| energy_production_wood                                                                   | 0.0                |
| energy_export_uranium_oxide                                                              | 0.0                |
| energy_export_coal                                                                       | 0.0                |
| energy_export_waste_mix                                                                  | 0.0                |
| energy_distribution_biogenic_waste                                                       | 0.0                |
| energy_distribution_non_biogenic_waste                                                   | 0.0                |
| energy_import_biogenic_waste                                                             | 0.0                |
| energy_import_non_biogenic_waste                                                         | 0.0                |
| energy_production_biogenic_waste                                                         | 0.0                |
| energy_production_non_biogenic_waste                                                     | 0.0                |
| energy_power_engine_diesel                                                               | 0.0                |
| energy_distribution_diesel                                                               | 0.0                |
| energy_production_diesel                                                                 | 0.0                |
| energy_import_diesel                                                                     | 0.0                |
| energy_export_diesel                                                                     | 0.0                |
| energy_power_turbine_network_gas                                                         | 0.0                |
| energy_mixer_for_gas_power_fuel                                                          | 0.0                |
| energy_national_gas_network_natural_gas                                                  | 0.0                |
| energy_treatment_natural_gas                                                             | 0.0                |
| energy_distribution_bio_oil                                                              | 0.0                |
| energy_import_lng                                                                        | 0.0                |
| energy_distribution_crude_oil                                                            | 0.0                |
| energy_distribution_greengas                                                             | 58.25410309005386  |
| energy_import_crude_oil                                                                  | 0.0                |
| energy_import_natural_gas                                                                | 0.0                |
| energy_distribution_crude_oil_loss                                                       | 0.0                |
| energy_distribution_network_gas_loss                                                     | 0.0                |
| energy_import_greengas                                                                   | 0.0                |
| energy_import_bio_oil                                                                    | 0.0                |
| energy_upgrade_biogas                                                                    | 63.31967727179767  |
| energy_distribution_biogas                                                               | 62.749800168737536 |
| energy_production_biogas                                                                 | 62.749800168737536 |
| energy_distribution_manure                                                               | 0.0                |
| energy_production_manure                                                                 | 0.0                |
| energy_distribution_corn                                                                 | 62.749800168737536 |
| energy_production_corn                                                                   | 62.749800168737536 |
| energy_export_crude_oil                                                                  | 0.0                |
| energy_export_network_gas                                                                | 0.0                |
| energy_export_greengas                                                                   | 0.6156990800521156 |
| energy_export_bio_oil                                                                    | 0.0                |
+------------------------------------------------------------------------------------------+--------------------+
dennisquintel commented 12 years ago

@AlexanderWirtz: does it have added value if we put this with the Converter details for validation and transparancy?

Could you have a look at these numbers and see wether they seem to make sense?

AlexanderWirtz commented 12 years ago

seems to make sense

dennisquintel commented 12 years ago

Closed with 6505829, now let's make a nice chart with this! e.g. as popup chart for biofootprint in stead of the (a bit one dimensional) picture of the region we have now!