Click or drag to resize

SimpleAscentPropagator.MixedFixedPositionAndInertialVelocityToMotionFixed Method

This method computes the burnout motion in the fixed frame of the CentralBody from mixed inertial velocity/fixed position input.

Namespace:  AGI.Foundation.Propagators
Assembly:  AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public static Motion<Cartesian> MixedFixedPositionAndInertialVelocityToMotionFixed(
	bool isAtPole,
	KinematicTransformation inertialToFixed,
	Cartesian position,
	double inertialSpeed,
	double inertialFlightPathAngle,
	double inertialAzimuth
)

Parameters

isAtPole
Type: System.Boolean
Indicates whether the position vector is at a pole of the central body ellipsoid.
inertialToFixed
Type: AGI.Foundation.Coordinates.KinematicTransformation
The transformation from the inertial reference frame to the fixed reference frame.
position
Type: AGI.Foundation.Coordinates.Cartesian
The position of the launch vehicle in the CentralBody's fixed frame at burnout time.
inertialSpeed
Type: System.Double
The speed in the inertial frame.
inertialFlightPathAngle
Type: System.Double
The flight path angle in the inertial frame.
inertialAzimuth
Type: System.Double
The angle from North at the burnout position.

Return Value

Type: Motion<Cartesian>
A Motion<T> representing the burnout state in the fixed frame.
See Also