Verifies the AMS-II.C small-scale eligibility criterion that annual energy savings remain within the 60 GWh cap for Type II activities.

check_applicability_energy_savings(
  annual_energy_savings_mwh,
  threshold_mwh = 60000
)

Arguments

annual_energy_savings_mwh

Estimated annual energy savings in MWh.

threshold_mwh

Threshold in MWh (default 60 GWh expressed as 60,000 MWh).

Value

Logical indicating whether the threshold is respected.

Examples

check_applicability_energy_savings(annual_energy_savings_mwh = 42000)
#> [1] TRUE
check_applicability_energy_savings(annual_energy_savings_mwh = 72000)
#> [1] FALSE