quintel / etsource

Data source for the Energy Transition Model
https://energytransitionmodel.com/
MIT License
12 stars 8 forks source link

Review final biomass use dashboard item #2948

Open mabijkerk opened 9 months ago

mabijkerk commented 9 months ago

The query underlying the dashboard item "Final biomass use" has the following structure:

    IF(
      GRAPH().future?,
      -> {
        SUM(
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_bio_kerosene),
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_bio_lng),
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_bio_ethanol),
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_biodiesel),
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_wood_pellets),
          V(INTERSECTION(G(final_demand_group),USE(energetic)), input_of_network_gas).sum * DIVIDE(INPUT_VALUE(green_gas_total_share),100.0)
        ) / BILLIONS
      },
      -> { 0 }

What seems to be missing in this is compressed_network_gas, which consists of network_gas which again consists of green_gas and natural_gas. CNG therefore also has a biomass component and in my opinion should be added to this query. Perhaps other biomass carriers are missing as well.