Applies ACM0002 calculation steps to monitoring data and returns portfolio totals useful for project documentation.

estimate_emission_reductions_acm0002(monitoring_data)

Arguments

monitoring_data

Data frame or tibble containing ACM0002 monitoring observations.

Value

Tibble with total generation, emissions, and emission reductions for the project.

Examples

data <- simulate_acm0002_dataset(6, seed = 2024)
estimate_emission_reductions_acm0002(data)
#> # A tibble: 1 × 7
#>   total_gross_generation_mwh total_auxiliary_consumptio…¹ total_net_electricit…²
#>                        <dbl>                        <dbl>                  <dbl>
#> 1                     94296.                        3349.                 90948.
#> # ℹ abbreviated names: ¹​total_auxiliary_consumption_mwh,
#> #   ²​total_net_electricity_mwh
#> # ℹ 4 more variables: total_baseline_emissions <dbl>,
#> #   total_project_emissions <dbl>, total_leakage_emissions <dbl>,
#> #   total_emission_reductions <dbl>