AMS-II.F requires that project activities deliver measurable reductions in specific energy consumption for the agricultural service or product. This helper compares baseline and project total energy use relative to an output proxy (e.g. tonnes of grain processed, litres of milk cooled, or area irrigated) and verifies that the fractional reduction exceeds a configurable tolerance. be present in both datasets. required to satisfy the criterion. Defaults to 10 the tolerance threshold.

check_applicability_energy_intensity_iif(baseline_data,
                                                     project_data,
                                                     energy_col = "baseline_total_energy_mwh",
                                                     project_energy_col = "project_total_energy_mwh",
                                                     output_col = "service_level_indicator",
                                                     tolerance = 0.1)

Arguments

baseline_data

Tibble containing baseline energy and output indicators.

project_data

Tibble containing project energy and output indicators.

energy_col

Baseline column storing total energy consumption (MWh).

project_energy_col

Project column storing total energy consumption (MWh).

output_col

Column storing the output proxy (e.g. tonnes processed). Must

tolerance

Minimum fractional reduction in specific energy consumption

Value

A logical scalar indicating whether the specific energy reduction meets

Examples

baseline <- tibble::tibble(total_energy_mwh = c(220, 195), output_proxy = c(420, 380))
project <- tibble::tibble(total_energy_mwh = c(150, 138), output_proxy = c(420, 380))
check_applicability_energy_intensity_iif(baseline, project,
  energy_col = "total_energy_mwh",
  project_energy_col = "total_energy_mwh",
  output_col = "output_proxy"
)
#> [1] TRUE