Description
The cross-sectional area of the spacecraft assumed perpendicular to the direction of motion, used for atmospheric drag calculations. Uses SmallArea Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property DragArea() As Double
|
| [C#] |
|---|
public double DragArea {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_DragArea(); public: __property void set_DragArea(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_DragArea(
double * pFuelMass
);
public: HRESULT put_DragArea(
double FuelMass
);
|
| [Java] |
|---|
public double getDragArea();
public void setDragArea(
double
);
|
| [Python - STK API] |
|---|
@property
def DragArea(self) -> float:
@DragArea.setter
def DragArea(self, FuelMass:float) -> None:
|
See Also