Description
A factor applied to the aircraft's parasitic drag coefficient when it is flying faster than the Mach Divergence.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property TransonicMachDragFactor() As Double
|
| [C#] |
|---|
public double TransonicMachDragFactor {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_TransonicMachDragFactor(); public: __property void set_TransonicMachDragFactor(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_TransonicMachDragFactor(
double * pVal
);
public: HRESULT put_TransonicMachDragFactor(
double newVal
);
|
| [Java] |
|---|
public double getTransonicMachDragFactor();
public void setTransonicMachDragFactor(
double
);
|
| [Python - STK API] |
|---|
@property
def TransonicMachDragFactor(self) -> float:
@TransonicMachDragFactor.setter
def TransonicMachDragFactor(self, newVal:float) -> None:
|
See Also