Click or drag to resize

WaypointPropagatorDetermineFinalVelocity Method

Assuming constant acceleration, determines the final velocity 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 DetermineFinalVelocity(
	double displacement,
	double duration,
	double initialVelocity
)

Parameters

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

Return Value

Type: Double
The velocity at the final point (distance per time).
Remarks
  • The displacement should not be zero.
  • The duration should be positively valued.
  • The displacement and initial velocity should have the same sign.
  • The initial velocity may be zero.
See Also