Description
The fraction of ideal thrust applied. Any number above zero is valid, with typical values around 0.98 to 1.02. Dimensionless.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ThrustEfficiency() As Double
|
| [C#] |
|---|
public double ThrustEfficiency {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_ThrustEfficiency(); public: __property void set_ThrustEfficiency(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ThrustEfficiency(
double * pVal
);
public: HRESULT put_ThrustEfficiency(
double newVal
);
|
| [Java] |
|---|
public double getThrustEfficiency();
public void setThrustEfficiency(
double
);
|
| [Python - STK API] |
|---|
@property
def ThrustEfficiency(self) -> float:
@ThrustEfficiency.setter
def ThrustEfficiency(self, newVal:float) -> None:
|
See Also