Description
The pressure ratio from the inlet exit to the entrance.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property InletPressureRatio() As Double
|
| [C#] |
|---|
public double InletPressureRatio {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_InletPressureRatio(); public: __property void set_InletPressureRatio(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_InletPressureRatio(
double * pVal
);
public: HRESULT put_InletPressureRatio(
double newVal
);
|
| [Java] |
|---|
public double getInletPressureRatio();
public void setInletPressureRatio(
double
);
|
| [Python - STK API] |
|---|
@property
def InletPressureRatio(self) -> float:
@InletPressureRatio.setter
def InletPressureRatio(self, newVal:float) -> None:
|
See Also