Charging preferences specified by absolute energy in kilowatt-hours.
Use when you prefer to specify energy buffers in kWh rather than percentages.
const prefs: ChargingPreferencesKWH = { minChargeAtDestinationInkWh: 15, minChargeAtChargingStopsInkWh: 10}; Copy
const prefs: ChargingPreferencesKWH = { minChargeAtDestinationInkWh: 15, minChargeAtChargingStopsInkWh: 10};
The minimum battery kWh you wish to arrive at each charging station with.
However, the remaining charge at the first charging stop may be lower.
Typical Values:
Minimum: 0, Maximum: half of maxChargeKWH
maxChargeKWH
minChargeAtChargingStopsInkWh: 10 // 10 kWh at each stopminChargeAtChargingStopsInkWh: 15 // Conservative buffer Copy
minChargeAtChargingStopsInkWh: 10 // 10 kWh at each stopminChargeAtChargingStopsInkWh: 15 // Conservative buffer
The minimum battery kWh you wish to arrive at your destination with.
Typical Values (based on battery size):
Minimum: 0, Maximum: maxChargeKWH
minChargeAtDestinationInkWh: 15 // 15 kWh remainingminChargeAtDestinationInkWh: 10 // 10 kWh buffer Copy
minChargeAtDestinationInkWh: 15 // 15 kWh remainingminChargeAtDestinationInkWh: 10 // 10 kWh buffer
Charging preferences specified by absolute energy in kilowatt-hours.
Remarks
Use when you prefer to specify energy buffers in kWh rather than percentages.
Example