Description
The specific energy of the jet fuel.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property SpecificEnergy() As Double
|
| [C#] |
|---|
public double SpecificEnergy {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_SpecificEnergy(); public: __property void set_SpecificEnergy(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_SpecificEnergy(
double * pVal
);
public: HRESULT put_SpecificEnergy(
double newVal
);
|
| [Java] |
|---|
public double getSpecificEnergy();
public void setSpecificEnergy(
double
);
|
| [Python - STK API] |
|---|
@property
def SpecificEnergy(self) -> float:
@SpecificEnergy.setter
def SpecificEnergy(self, newVal:float) -> None:
|
See Also