Click or drag to resize

WaypointPropagatorDetermineDuration Method

Assuming constant acceleration, determines the duration from the provided parameters.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static double DetermineDuration(
	double displacement,
	double initialVelocity,
	double finalVelocity
)

Parameters

displacement
Type: SystemDouble
The total displacement between the initial and final points (distance).
initialVelocity
Type: SystemDouble
The velocity at the initial point (distance per time).
finalVelocity
Type: SystemDouble
The velocity at the final point (distance per time).

Return Value

Type: Double
The total duration between the initial and final points (time).
Remarks
  • The displacement should not be zero.
  • The initial and final velocities should have the same sign.
  • Either the initial or the final velocity may be zero.
See Also