Ensures that all technologies included in the project belong to the list of measures covered by AMS-II.C.

check_applicability_technology(
  technology,
  allowed_technologies = c(
    "efficient_lighting",
    "efficient_motors",
    "hvac_optimization",
    "refrigeration_efficiency",
    "variable_speed_drives",
    "compressed_air_improvement"
  )
)

Arguments

technology

Vector of technology identifiers.

allowed_technologies

Character vector of eligible technologies.

Value

Logical indicating whether every technology is permitted.

Examples

check_applicability_technology(c("efficient_lighting", "efficient_motors"))
#> [1] TRUE
check_applicability_technology(c("efficient_lighting", "biomass_boiler"))
#> [1] FALSE