Class TurbineEngine
Turbine jet engine with RPM-based power curve. Power output varies with RPM according to the power curve and is affected by atmospheric density. Typically used with jet propulsors for direct thrust generation.
Inheritance
TurbineEngine
Inherited Members
Namespace: NWH.Aerodynamics.AircraftController.Propulsion.Engines
Assembly: NWH.Aerodynamics.dll
Syntax
public class TurbineEngine : AircraftEngineBase
Methods
| Edit this page View SourceCalculateTorque(float, float)
Calculates torque output based on current RPM, throttle position, and atmospheric conditions. Accounts for air density effects on combustion efficiency.
Declaration
public override float CalculateTorque(float _t, float _dt)
Parameters
| Type | Name | Description |
|---|---|---|
| float | _t | Current simulation time in seconds (unused in this implementation). |
| float | _dt | Time step duration in seconds (unused in this implementation). |
Returns
| Type | Description |
|---|---|
| float | Generated torque in Newton-meters. |