Click or drag to resize

StandardTransitionProfileSegment.IsValidIncline Method

Checks to see whether the given incline is feasible without violating the boundary conditions and dynamics.

Namespace:  AGI.Foundation.RouteDesign.Advanced
Assembly:  AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public static bool IsValidIncline(
	double startHeight,
	double startRate,
	double stopHeight,
	double stopRate,
	double startHorizontalSpeed,
	double stopHorizontalSpeed,
	double surfaceDistance,
	ProfileDynamics dynamics
)

Parameters

startHeight
Type: System.Double
The initial height, in meters.
startRate
Type: System.Double
The initial vertical velocity, in meters per second.
stopHeight
Type: System.Double
The final height, in meters.
stopRate
Type: System.Double
The final vertical velocity, in meters per second.
startHorizontalSpeed
Type: System.Double
The initial horizontal velocity, in meters per second.
stopHorizontalSpeed
Type: System.Double
The final horizontal velocity, in meters per second.
surfaceDistance
Type: System.Double
The total horizontal distance along the surface path, in meters.
dynamics
Type: AGI.Foundation.RouteDesign.ProfileDynamics
The dynamical properties along the profile, including the vertical acceleration values, the maximum and minimum values for the ascent and descent rates, and the thrust acceleration and deceleration.

Return Value

Type: Boolean
True if the resulting incline is feasible for the given conditions.
See Also