calculate_project_fossil_emissions.RdEquation (2) of AMS-II.D quantifies project emissions from the modernised thermal system.
calculate_project_fossil_emissions(
project_data,
fuel_col = "project_fuel_quantity",
ncv_col = "project_ncv_gj_per_unit",
emission_factor_col = "project_emission_factor_tco2_per_gj",
efficiency_col = "project_efficiency",
electricity_col = NULL,
group_cols = NULL,
output_col = "project_emissions_tco2e"
)A tibble describing monitored project fuel consumption.
Column with project fuel consumption quantities.
Column with project fuel net calorific values (GJ per unit).
Column with project emission factors (tCO2e per GJ).
Column storing project equipment efficiency (fraction between 0 and 1).
Optional column storing indirect electricity emissions in tCO2e.
Optional character vector of grouping variables to retain.
Name of the resulting emission column.
A tibble with grouped project emission totals.
project <- tibble::tibble(unit = c("Kiln", "Dryer"),
project_fuel = c(950, 710),
ncv = c(0.038, 0.041),
ef = c(0.094, 0.094),
efficiency = c(0.84, 0.8))
calculate_project_fossil_emissions(
project,
fuel_col = project_fuel,
ncv_col = ncv,
emission_factor_col = ef,
efficiency_col = efficiency,
group_cols = "unit"
)
#> # A tibble: 2 × 2
#> unit project_emissions_tco2e
#> <chr> <dbl>
#> 1 Dryer 3.42
#> 2 Kiln 4.04