bonsai_ipcc.waste.incineration package
Submodules
bonsai_ipcc.waste.incineration.elementary module
- bonsai_ipcc.waste.incineration.elementary.ch4_emissions(waste, ef_ch4)[source]
Equation 5.y (in accordance to 5.4, tier 1)
Calculates CH4 emissions from incineration/open-burning for a waste type. Contrary to equations 5.4, no summation over waste types.
Argument
- waste (Gg/year)float
Amount of waste type that is incinerated/open-burned. (wet weight)
- EF_CH4 (kg/Gg) float
CH4 emission factor of wet waste.
- returns:
VALUE – CH4 emissions for waste type (Gg/year)
- rtype:
float
- bonsai_ipcc.waste.incineration.elementary.co2_emissions(waste, dm, cf, fcf, of)[source]
Equation 5.x (in accordance to 5.1 and 5.2, tier 1)
Calculates the CO2 emissions from incineration/open-burning for a waste type. Contrary to equations 5.1 and 5.2, no summation over waste types.
Argument
- waste (Gg/year)float
Amount of waste type that is incinerated/open-burned. (wet weight)
- dm (kg/kg)float
Dry matter content in the waste type.
- fcf (kg/kg)float
Fraction of fossil carbon in the waste type.
- of (kg/kg) :float
Oxidation factor.
- returns:
VALUE – CO2 emissions for waste type (Gg/year)
- rtype:
float
- bonsai_ipcc.waste.incineration.elementary.n2o_emissions(waste, ef_n2o)[source]
Equation 5.5z (in accordance to 5.5, tier 1)
Calculates N2o emissions from incineration/open-burning for a waste type. Contrary to equations 5.5, no summation over waste types.
Argument
- waste (Gg/year)float
Amount of waste type that is incinerated/open-burned. (wet weight)
- ef_n2o (kg/Gg) float
N2O emission factor of wet waste.
- returns:
VALUE – N2O emissions for waste type (Gg/year)
- rtype:
float
- bonsai_ipcc.waste.incineration.elementary.n2o_emissions_tier3(iw, ec, fgv)[source]
Equation 5.6z (in accordance to 5.6, tier 3)
Calculates N2o emissions based on influencing factors. Contrary to equations 5.6, no summation over waste types.
Argument
- iw (Gg/year)float
Amount of waste type that is incinerated per treatment type. (wet weight)
- ec (mg/m3)float
N2O emission concentration in flue gas from the incineration of waste type.
- fgv (m3/Mg)float
Flue gas volume by amount of incinerated waste type.
- returns:
VALUE – N2O emissions for waste type and treatment type (Gg/year)
- rtype:
float
bonsai_ipcc.waste.incineration.sequence module
Sequences to determine GHG emissions from incineration.
- Decision tree for CO2:
- tier 1: default data to quantify waste generation, composition and management practice
(requirement: incineration or open burning is not a key category)
- tier 2a: country-specific data to quantify waste generation and composition
default data for emission factors and waste management
tier 2b: country-specific data for waste generation, composition and management practice
tier 3: plant- or management-specific data
- Decision tree for CH4 and N2O:
- tier 1: estimate total amount of wastes incinerated or open-burned and use default emission factors
(requirement: incineration or open burning is not a key category)
tier 2: country-specific data by waste type, technology and management practice
tier 3: plant- or management-specific data
- bonsai_ipcc.waste.incineration.sequence.tier1_ch4(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 1 method CH4 Emissions.
Default data to quantify waste generation, composition and management practice (requirement: incineration or open burning is not a key category)
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier1_co2(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 1 method CO2 Emissions.
Default data to quantify waste generation, composition and management practice (requirement: incineration or open burning is not a key category)
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier1_n2o(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 1 method N2O Emissions.
Default data to quantify waste generation, composition and management practice (requirement: incineration or open burning is not a key category)
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier2_ch4(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 2 method CH4 Emissions.
Country-specific data to quantify waste generation and composition Default data for emission factors and waste management
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier2_n2o(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 2 method N2O Emissions.
Country-specific data to quantify waste generation and composition Default data for emission factors and waste management
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier2a_co2(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 2a method CO2 Emissions.
Country-specific data to quantify waste generation and composition Default data for emission factors and waste management
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier2b_co2(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 2b method CO2 Emissions.
Country-specific data for waste generation, composition and management practice
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier3_ch4(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 3 method CH4 Emissions.
Plant- or management-specific data
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier3_co2(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 3 method CO2 Emissions.
Plant- or management-specific data
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass
- bonsai_ipcc.waste.incineration.sequence.tier3_n2o(year=2010, region='BG', product='msw_food', activity='open_burn', uncertainty='def')[source]
Tier 3 method N2O Emissions.
Plant- or management-specific data
Argument
- yearint
year under study
- regionstr
region under study
- productstr
Fraction of solid waste.
- activitystr
Type of waste incineration.
- uncertaintystr
‘analytical’, ‘monte_carlo’ or a property dimension, e.g. ‘def’
- returns:
VALUE – Inlcudes the results of each step of the sequence.
- rtype:
DataClass