Package | Description |
---|---|
agi.foundation.segmentpropagation |
Contains types for modeling a trajectory in segments, where the type of propagation varies for each segment.
|
agi.foundation.stoppingconditions |
Contains types for stopping propagation when various events occur.
|
Modifier and Type | Method and Description |
---|---|
static ScalarStoppingCondition |
FiniteManeuverSegment.createLimitedFuelStoppingCondition(Scalar fuelAmount,
double fuelAmountThreshold,
String stoppingConditionIdentification,
boolean stopPropagation)
Creates a
ScalarStoppingCondition that will stop when the quantity of fuel reaches the specified value. |
static ScalarStoppingCondition |
FiniteManeuverSegment.createLimitedFuelStoppingCondition(Scalar fuelAmount,
double fuelAmountThreshold,
String stoppingConditionIdentification,
boolean stopPropagation,
double tolerance)
Creates a
ScalarStoppingCondition that will stop when the fuel amount reaches the specified value. |
static ScalarStoppingCondition |
FiniteManeuverSegment.createOutOfFuelStoppingCondition(Scalar fuelAmount,
String stoppingConditionIdentification,
boolean stopPropagation)
Creates a
ScalarStoppingCondition that will stop when the fuel amount becomes 0. |
static ScalarStoppingCondition |
FiniteManeuverSegment.createOutOfFuelStoppingCondition(Scalar fuelAmount,
String stoppingConditionIdentification,
boolean stopPropagation,
double tolerance)
Creates a
ScalarStoppingCondition that will stop when the fuel amount becomes 0. |
Modifier and Type | Method and Description |
---|---|
protected boolean |
ScalarStoppingCondition.checkForSameDefinition(ScalarStoppingCondition other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
Constructor and Description |
---|
ScalarStoppingCondition(ScalarStoppingCondition existingInstance,
CopyContext context)
Initializes a new instance as a copy of an existing instance.
|