Skip to content

Commit

Permalink
Introducing signals for battery connection status
Browse files Browse the repository at this point in the history
High Voltage Traction batteries can typically be disconnected from
the rest of the vehicle. Multiple connectors may exist and may
be handled independently. For example, during charging ground/minus
might be connected but not power/plus.
  • Loading branch information
erikbosch committed Nov 9, 2021
1 parent c35ed7c commit 9230ecf
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.
PowerConnected:
datatype: boolean
type: sensor
description: Indicating if the power (positive terminator) of the traction battery is connected to the powertrain.

GroundConnected:
datatype: boolean
type: sensor
description: Indicating if the ground (negative terminator) of the traction battery is connected to the powertrain.

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 9230ecf

Please sign in to comment.