Problem
For industry gas (carrier gas for industry), a fraction of the total amount is used for non-energetic purpose. This fraction can not be read directly from the network.
Current solution
Currently implemented, this fraction is calculated statically by the fraction of "Final consumption - energy use" and "Final consumption - non-energy use (fuels not combusted) of the Eurostat energy balance by one value for EU27. This may lead to over- and underestimation for single countries/regions.
fc_energy = 7217049
fc_noenergy = 458572
energy_fraction_industry_gas = fc_energy / (fc_energy + fc_noenergy)
industry = industry.mul(energy_fraction_industry_gas)
Solution
Switch from the static calculation to a variable calculation, that reads the respective values from Eurostat energy balance and calculates the fraction of energetic_use/non-energetic_use for the respective country.
Problem
For industry gas (carrier
gas for industry), a fraction of the total amount is used for non-energetic purpose. This fraction can not be read directly from the network.Current solution
Currently implemented, this fraction is calculated statically by the fraction of "Final consumption - energy use" and "Final consumption - non-energy use (fuels not combusted) of the Eurostat energy balance by one value for EU27. This may lead to over- and underestimation for single countries/regions.
Solution
Switch from the static calculation to a variable calculation, that reads the respective values from Eurostat energy balance and calculates the fraction of energetic_use/non-energetic_use for the respective country.