CombustionVehicleEfficiency  
    data class CombustionVehicleEfficiency(val velocityChange: VelocityChangeEfficiency? = null, val altitudeChange: AltitudeChangeEfficiency? = null, val fuelEnergyDensity: EnergyDensity)
Specifies the efficiency of the vehicle.
Parameters
velocityChange 
Specifies the efficiency of converting chemical energy to kinetic energy due to accelerations.
altitudeChange 
Specifies the efficiency of converting chemical energy to potential energy due to increase in altitude.
fuelEnergyDensity  
Specifies the amount of chemical energy stored in the fuel, for example in megajoules per liter. It is used in conjunction with the *Efficiency parameters for conversions between saved or consumed energy and fuel. For example, energy density is 34.2 MJ/l for gasoline, and 35.8 MJ/l for Diesel fuel.
Constructors
Link copied to clipboard
                  constructor(velocityChange: VelocityChangeEfficiency? = null, altitudeChange: AltitudeChangeEfficiency? = null, fuelEnergyDensity: EnergyDensity)