Description
The 'safety' coefficent used to decrease step size if the error is too high. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property HighSafetyCoefficient() As Double
|
[C#] |
---|
public double HighSafetyCoefficient {get; set;}
|
[Managed C++] |
---|
public: __property double get_HighSafetyCoefficient(); public: __property void set_HighSafetyCoefficient(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_HighSafetyCoefficient(
double * pVal
);
public: HRESULT put_HighSafetyCoefficient(
double InVal
);
|
[Java] |
---|
public double getHighSafetyCoefficient();
public void setHighSafetyCoefficient(
double
);
|
[Python - STK API] |
---|
@property
def HighSafetyCoefficient(self) -> float:
@HighSafetyCoefficient.setter
def HighSafetyCoefficient(self, InVal:float) -> None:
|
See Also