Logical checks that document whether an activity satisfies core AMS-I.E applicability conditions.

check_applicability_capacity_limit(thermal_capacity_mw)

check_applicability_non_renewable_fraction(non_renewable_fraction)

check_applicability_project_renewable_fraction(renewable_fraction, threshold = 0.9)

Arguments

thermal_capacity_mw

Thermal capacity of the project in MWth.

non_renewable_fraction

Vector of non-renewable biomass fractions.

renewable_fraction

Vector describing the renewable fraction of project energy.

threshold

Minimum acceptable renewable fraction.

Value

Logical scalar indicating whether the condition is met.

Examples

check_applicability_capacity_limit(thermal_capacity_mw = 20)
#> [1] TRUE
check_applicability_non_renewable_fraction(c(0.7, 0.85))
#> [1] TRUE
check_applicability_project_renewable_fraction(renewable_fraction = 0.95)
#> [1] TRUE