ElectricVehicleEfficiency
data class ElectricVehicleEfficiency(val velocityChange: VelocityChangeEfficiency? = null, val altitudeChange: AltitudeChangeEfficiency? = null, val altitudeChangeEnergy: AltitudeChangeEnergy? = null)
Specifies the efficiency of an electric vehicle.
Throws
If altitudeChangeEnergy is used together with velocityChange or altitudeChange.
Constructors
Link copied to clipboard
constructor(velocityChange: VelocityChangeEfficiency? = null, altitudeChange: AltitudeChangeEfficiency? = null, altitudeChangeEnergy: AltitudeChangeEnergy? = null)
Properties
Link copied to clipboard
The efficiency of expending or saving energy due to ascents or descents.
Link copied to clipboard
Additional consumption and recuperation of electric energy due to altitude changes. This is an alternative way to specify the altitude change efficiency which works without knowing the weight of the vehicle. It cannot be used together with the other two options.
Link copied to clipboard
The efficiency of expending or saving energy due to changes in speed.