Description
The time tolerance, which will be applied with respect to desired trip values throughout the MCS. Astrogator will not refine its search for a desired trip value to a time step smaller than the time tolerance - even if the value range over the time step is in excess of the trip value tolerance. NOTE: If this value is set to zero, time tolerance will not be applied. Uses Time Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property StoppingConditionTimeTolerance() As Double
|
| [C#] |
|---|
public double StoppingConditionTimeTolerance {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_StoppingConditionTimeTolerance(); public: __property void set_StoppingConditionTimeTolerance(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_StoppingConditionTimeTolerance(
double * pVal
);
public: HRESULT put_StoppingConditionTimeTolerance(
double newVal
);
|
| [Java] |
|---|
public double getStoppingConditionTimeTolerance();
public void setStoppingConditionTimeTolerance(
double
);
|
| [Python - STK API] |
|---|
@property
def StoppingConditionTimeTolerance(self) -> float:
@StoppingConditionTimeTolerance.setter
def StoppingConditionTimeTolerance(self, newVal:float) -> None:
|
See Also