Skip to content

Commit

Permalink
Introducing ConnectorsState
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Oct 27, 2021
1 parent d5b0c21 commit 1e373ff
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions spec/Powertrain/Battery.vspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,22 @@
#

#
# Signals, attributes and actuators around the electric powertrain.
# Signals and attributes related to the traction battery in vehicles with electrical powertrain.
# For some vehicles the traction battery is referred to as the high voltage battery.
#

# It might be possible to disconnect the traction battery used by an electric powertrain.
# This is achieved by connectors, typically one for plus and one for minus.
ConnectorsState:
datatype: string
type: sensor
enum: [
"UNDEFINED", # Connectors state unknown or undefined
"OPEN", # Traction Battery disconnected, at least one connector open
"CLOSED" # Traction Battery connected, all connectors closed
]
description: Information on whether traction battery is connected to the powertrain system or not.

Temperature:
datatype: float
type: sensor
Expand Down Expand Up @@ -164,7 +177,6 @@ Charging.TimeToComplete:
unit: s
description: The time needed to complete the current charging process to the set charge limit. 0 if charging is complete, negative number if no charging process is active.


Charging.Timer:
type: branch
description: Properties related to timing of battery charging sessions.
Expand Down

0 comments on commit 1e373ff

Please sign in to comment.