HoldingPatternProfileGetMinimumRevolutionsFromTime Method  | 
 
            Get the minimum number of revolutions required to spend a minimum time in a holding procedure.
            
 
    Namespace: 
   AGI.Foundation.RouteDesign.Advanced
    Assembly:
   AGI.Foundation.RouteDesign (in AGI.Foundation.RouteDesign.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract int GetMinimumRevolutionsFromTime(
	Duration minimumTime,
	SurfaceSegment initialSegment,
	SurfaceSegment finalSegment,
	SurfaceSegment oneRevolutionSegment
)
Public MustOverride Function GetMinimumRevolutionsFromTime ( 
	minimumTime As Duration,
	initialSegment As SurfaceSegment,
	finalSegment As SurfaceSegment,
	oneRevolutionSegment As SurfaceSegment
) As Integer
public:
virtual int GetMinimumRevolutionsFromTime(
	Duration minimumTime, 
	SurfaceSegment^ initialSegment, 
	SurfaceSegment^ finalSegment, 
	SurfaceSegment^ oneRevolutionSegment
) abstract
abstract GetMinimumRevolutionsFromTime : 
        minimumTime : Duration * 
        initialSegment : SurfaceSegment * 
        finalSegment : SurfaceSegment * 
        oneRevolutionSegment : SurfaceSegment -> int 
Parameters
- minimumTime
 - Type: AGI.Foundation.TimeDuration
Minimum time to spend in the holding pattern. - initialSegment
 - Type: AGI.Foundation.RouteDesign.AdvancedSurfaceSegment
The initial segment required to enter into the hold. - finalSegment
 - Type: AGI.Foundation.RouteDesign.AdvancedSurfaceSegment
The final segment required to exit the hold. - oneRevolutionSegment
 - Type: AGI.Foundation.RouteDesign.AdvancedSurfaceSegment
The segment signifying one revolution around the hold. 
Return Value
Type: 
Int32The number of revolutions necessary to fulfill the minimum time condition.
See Also