Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Physical units #26

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions v1.1/ProvideChargingInformationRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,17 @@
"properties": {
"stateOfHealth": {
"type": "number",
"description": "Current state-of-health of traction battery in percent [%] regarding specified maximum capacity",
"additionalProperties": false
},
"stateOfCharge": {
"type": "number",
"description": "Current state-of-charge of traction battery in percent [%] regarding current maximum capacity",
"additionalProperties": false
},
"temperature": {
"type": "integer",
"description": "Current temperature of traction battery in [°C]",
"additionalProperties": false
},
"status": {
Expand Down Expand Up @@ -184,6 +187,7 @@
},
"batteryChargingVoltage": {
"type": "number",
"description": "Current charging voltage of 12/24V battery in [V]",
"additionalProperties": false
}
},
Expand Down Expand Up @@ -233,18 +237,22 @@
"properties": {
"hvBatteryPreconditioningTime": {
"type": "integer",
"description": "Required time in minutes for preconditioning high voltage battery.",
"additionalProperties": false
},
"hvBatteryChargingEnergy": {
"type": "integer",
"description": "Required energy in [kWh] for charging high voltage battery (including energy for preconditioning purposes).",
"additionalProperties": false
},
"vehiclePreconditioningTime": {
"type": "integer",
"description": "Required time in minutes for preconditioning of vehicle.",
"additionalProperties": false
},
"vehiclePreconditioningEnergy": {
"type": "integer",
"description": "Required energy in [kWh] for preconditioning of vehicle.",
"additionalProperties": false
}
},
Expand Down Expand Up @@ -294,18 +302,22 @@
"properties": {
"chargingCurrent": {
"type": "number",
"description": "Current charging current in [A]",
"additionalProperties": false
},
"chargingVoltage": {
"type": "number",
"description": "Current charging voltage in [V] (outgoing in direction of vehicle)",
"additionalProperties": false
},
"chargingPower": {
"type": "number",
"description": "Current charging power in [kW]",
"additionalProperties": false
},
"reactivePower": {
"type": "number",
"description": "Current reactive power in [kvar]",
"additionalProperties": false
}
},
Expand Down Expand Up @@ -343,6 +355,7 @@
},
"deliveredEnergy": {
"type": "number",
"description": "Delivered energy during charging process in [Wh] (for statistical purposes only)",
"additionalProperties": false
}
},
Expand Down Expand Up @@ -377,11 +390,13 @@
"properties": {
"requestedMinSoc": {
"type": "number",
"description": "Requested state-of-charge in [%] that has to be reached at requested drive off time.",
"additionalProperties": false
},
"predictedTime": {
"type": "string",
"format": "date-time",
"description": "Predicted time to reach requested state-of-charge.",
"additionalProperties": false
}
},
Expand All @@ -397,11 +412,13 @@
"properties": {
"predictedFinalSoc": {
"type": "number",
"description": "Predicted state-of-charge in [%] that will be reached at predicted time.",
"additionalProperties": false
},
"predictedTime": {
"type": "string",
"format": "date-time",
"description": "Time when predicted state-of-charge will be reached.",
"additionalProperties": false
}
},
Expand All @@ -422,22 +439,27 @@
},
"insideTemperature": {
"type": "number",
"description": "Temperature inside charging equipment in [°C]",
"additionalProperties": false
},
"outsideTemperature": {
"type": "number",
"description": "Temperature outside charging equipment in [°C]",
"additionalProperties": false
},
"connectorTemperature": {
"type": "number",
"description": "Temperature of connector of charging equipment in [°C]",
"additionalProperties": false
},
"presentPowerLimit": {
"type": "number",
"description": "Optional power limit in [kWh] currently set by charging management system.",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo presentPowerLimit. Ein Leistunglimit muss in Watt oder Kilowatt angegeben werden.

"additionalProperties": false
},
"energyMeterReading": {
"type": "number",
"description": "Energy meter reading in [Wh]",
"additionalProperties": false
},
"chargingPointFaultInfo": {
Expand Down Expand Up @@ -541,6 +563,7 @@
},
"totalPower": {
"type": "number",
"description": "Current power going into charging station in [kW]",
"additionalProperties": false
}
},
Expand Down
6 changes: 6 additions & 0 deletions v1.1/ProvideChargingRequestsRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,17 @@
},
"expectedSocAtArrival": {
"type": "number",
"description": "Expected state-of-charge in [%] on arrival.",
"additionalProperties": false
},
"minTargetSoc": {
"type": "number",
"description": "Minimal state-of-charge in [%] in relation of current maximum capacity and state-of-health",
"additionalProperties": false
},
"maxTargetSoc": {
"type": "number",
"description": "Maximal state-of-charge in [%] in relation of current maximum capacity and state-of-health",
"additionalProperties": false
},
"requestedTimeForDeparture": {
Expand Down Expand Up @@ -94,6 +97,7 @@
},
"ambientTemperature": {
"type": "number",
"description": "Ambient temperature in [°C]",
"additionalProperties": false
},
"requestedStartTime": {
Expand Down Expand Up @@ -123,6 +127,7 @@
},
"hvacAuxiliaryConsumerPower": {
"type": "integer",
"description": "Power setpoint for climatic preconditioning in [kW]",
"additionalProperties": false
},
"systemPreconditioningStartTime": {
Expand All @@ -132,6 +137,7 @@
},
"systemAuxiliaryConsumerPower": {
"type": "integer",
"description": "Power setpoint for system preconditioning in [kW]",
"additionalProperties": false
}
},
Expand Down