assess_ams_iif_applicability.RdBundles the individual applicability checks into a single helper that returns a tidy summary of whether each criterion is satisfied. This wrapper is useful for pre-screening project concepts prior to detailed calculations. [check_applicability_energy_intensity_iif()]. [check_applicability_fuel_switching_iif()]. [check_applicability_monitoring_iif()].
Tibble containing baseline inputs.
Tibble containing project inputs.
Tibble containing monitoring dataset.
Optional list of arguments passed to
Optional list of arguments passed to
Optional list of arguments passed to
A tibble with the columns `criterion` and `is_met`.
baseline <- tibble::tibble(
baseline_total_energy_mwh = 220,
service_level_indicator = 420,
baseline_thermal_energy_gj = 320,
baseline_thermal_emission_factor_tco2_per_gj = 0.072
)
project <- tibble::tibble(
project_total_energy_mwh = 150,
service_level_indicator = 420,
project_thermal_energy_gj = 220,
project_thermal_emission_factor_tco2_per_gj = 0.045
)
monitoring <- tibble::tibble(
project_total_energy_mwh = 12.5,
service_level_indicator = 0.35,
operating_hours = 220
)
assess_ams_iif_applicability(baseline, project, monitoring)
#> # A tibble: 3 × 2
#> criterion is_met
#> <chr> <lgl>
#> 1 energy_intensity TRUE
#> 2 fuel_switching TRUE
#> 3 monitoring TRUE