Overview

The cdmAcm0009 package implements the essential monitoring and greenhouse gas accounting logic for the CDM large-scale methodology ACM0009. The methodology covers projects that switch existing power or heat plants from coal and/or petroleum fuels to natural gas.

Workflow

  1. Validate that the project meets the applicability conditions, including a qualifying baseline fuel mix and natural gas as the project fuel.
  2. Calculate baseline and project emissions using fuel consumption, net calorific values, and emission factors.
  3. Quantify leakage, including methane slip from gas handling and other project-specific sources.
  4. Aggregate period-level results to report total emission reductions.
library(cdmAcm0009)

data <- simulate_acm0009_dataset(periods = 3, seed = 12)
results <- estimate_emission_reductions_acm0009(data)
results$total_emission_reductions
# # A tibble: 1 × 4
#   baseline_emissions_tco2e project_emissions_tco2e leakage_emissions_tco2e
#                      <dbl>                   <dbl>                   <dbl>
# 1                   57590.                  69044.                    15.9
# # ℹ 1 more variable: net_emission_reductions_tco2e <dbl>