Description
The propellant's characteristic velocity (Chamber Pressure * Throat Area / Mass Flow Rate of the engine).
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property PropellantCharacteristicVelocity() As Double
|
| [C#] |
|---|
public double PropellantCharacteristicVelocity {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_PropellantCharacteristicVelocity(); public: __property void set_PropellantCharacteristicVelocity(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_PropellantCharacteristicVelocity(
double * pVal
);
public: HRESULT put_PropellantCharacteristicVelocity(
double newVal
);
|
| [Java] |
|---|
public double getPropellantCharacteristicVelocity();
public void setPropellantCharacteristicVelocity(
double
);
|
| [Python - STK API] |
|---|
@property
def PropellantCharacteristicVelocity(self) -> float:
@PropellantCharacteristicVelocity.setter
def PropellantCharacteristicVelocity(self, newVal:float) -> None:
|
See Also