Description
The maximum power that can be used by engine to produce thrust. Uses Power Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property MaxInputPower() As Double
|
| [C#] |
|---|
public double MaxInputPower {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_MaxInputPower(); public: __property void set_MaxInputPower(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_MaxInputPower(
double * pVal
);
public: HRESULT put_MaxInputPower(
double InVal
);
|
| [Java] |
|---|
public double getMaxInputPower();
public void setMaxInputPower(
double
);
|
| [Python - STK API] |
|---|
@property
def MaxInputPower(self) -> float:
@MaxInputPower.setter
def MaxInputPower(self, InVal:float) -> None:
|
See Also