Validates that the renewable power plant is grid-connected and exports a sufficient share of its net electricity to the grid.

check_applicability_grid_connection(connection_status, export_share = 1, minimum_export = 0.9)

Arguments

connection_status

Character string describing the interconnection status.

export_share

Share of net generation exported to the grid (0-1).

minimum_export

Minimum export share required to satisfy ACM0002 (0-1).

Value

Logical indicating whether the grid connection applicability condition is satisfied.

Examples

check_applicability_grid_connection("grid-connected", export_share = 0.95)
#> [1] TRUE
check_applicability_grid_connection("isolated", export_share = 0.5)
#> [1] FALSE