Evaluates the AMS-I.A applicability condition that total installed renewable capacity must remain within the small-scale threshold of 15 MW.

check_applicability_installed_capacity(
  capacity_kw,
  renewable_fraction,
  threshold_kw = 15000
)

Arguments

capacity_kw

Total installed capacity in kilowatts (kW).

renewable_fraction

Share of electricity generated from renewable sources (0-1).

threshold_kw

Threshold in kW, defaulting to 15000 (15 MW).

Value

Logical indicating whether the condition is satisfied.

Examples

check_applicability_installed_capacity(capacity_kw = 500, renewable_fraction = 1)
#> [1] TRUE
check_applicability_installed_capacity(capacity_kw = 20000, renewable_fraction = 1)
#> [1] FALSE