Grid Code Settings

Description.

Command to modify the grid code service settings

GridCodeSettingsRequest

Topic: ocpp/gridcode. Used by OCPP service to initiate a specific GridCode.

type

object

properties

  • id

type

string

format

uuid

  • name

const

grid_code_settings

  • type

const

request

  • data

type

object

properties

  • evse_id

type

string

  • gridcode_id

enum

G98, G99, G98_G99, VDE_AR_N_4105, EN_50549_1

  • reactive_power_function_enabled

enum

ConstantReactivePower, ConstantPowerFactor, PowerFactor(ActivePower), Volt-var, Watt-var

  • active_power_functions_enabled

type

array

items

type

string

enum

ConstantActivePower, LimitActivePower, ActivePower(Freq), Volt-Watt

  • remote_procedures_enabled

type

array

items

type

string

enum

RemoteOff, RemoteActivePower, RemoteReactivePower

Example:

{
    "id": "fab9e08e-c69e-4567-9278-8f5bb48d46b3",
    "name":"grid_code_settings",
    "type": "request",
    "data": {
        "evse_id": "DE*SEV*E123456789",
        "gridcode_id": "G98_G99",
        "reactive_power_function_enabled": "Volt-var",
        "active_power_functions_enabled": ["ConstantActivePower", "Volt-Watt"],
        "remote_procedures_enabled": ["RemoteOff"]
    }
}

GridCodeSettingsResponse

Topic: gridcode/ocpp. Used by gridcode_service to respond to a GridCodeSettingsRequest

type

object

properties

  • id

type

string

format

uuid

  • name

const

grid_code_settings

  • type

const

response

  • data

type

object

properties

  • evse_id

type

string

  • status

enum

accepted, rejected

Example:

{
  "id": "a504f1cd-2ae0-46cf-a93c-736a28723478",
  "name": "grid_code_settings",
  "type": "response",
  "data": {
      "evse_id": "DE*SEV*E123456789",
      "status": "accepted" # or rejected
  }
}