TrackName
DomainLimits
AngleLimits
GlobalClashLimits
TPointType
The Single Run Method (Example)The content of the input XML consists of one
<?xml version='1.0' encoding='utf-8' ?> <Root> <PathPlanning> <TrackName>Track.initial</TrackName> <Quality Option='Very High'> <Value>0.1</Value></Quality> <MaxTime Enable='Y'>2</MaxTime> <DomainLimits Option='Translation'> <X Lock='N'> <MinValue>-865</MinValue> <MaxValue>443</MaxValue></X> <Y Lock='N'> <MinValue>-138</MinValue> <MaxValue>1523</MaxValue></Y> <Z Lock='N'> <MinValue>-668</MinValue> <MaxValue>668</MaxValue></Z> </DomainLimits> <AngleLimits Option='Bryant Angles'> <Rx Lock='N'> <MinValue>-80</MinValue> <MaxValue>120</MaxValue></Rx> <Ry Lock='N'> <MinValue>-80</MinValue> <MaxValue>120</MaxValue></Ry> <Rz Lock='N'> <MinValue>-80</MinValue> <MaxValue>120</MaxValue></Rz> </AngleLimits> <GlobalClashLimits Option='Clearance required'> <Value>0.1</Value></GlobalClashLimits> <TPointType> <StartPointIndex>1</StartPointIndex> <GuidingPoint>2</GuidingPoint> <GuidingPoint>3</GuidingPoint> <IntermediatePoint>6</IntermediatePoint> <IntermediatePoint>7</IntermediatePoint> <EndPointIndex>10</EndPointIndex> </TPointType> </PathPlanning> </Root> The Two Runs Method (Example)The content of the input XML consists of two Recommendation:
Start the first run with the values
specify as
DomainLimits=“Translation” and Quality=“Low” .
Refine the second run with the values specify as Quality=“High/Very High”
and DomainLimits=“Guiding Path” .
<?xml version='1.0' encoding='utf-8' ?> <Root> <PathPlanning> <FindTrack> <TrackName>Track.1 Regulator</TrackName> <Quality Option="Low"/> <DomainLimits Option="No Limits"> </DomainLimits> <DomainLimits Option="Translation"> <X Lock="N"> <MinValue>-110</MinValue> <MaxValue>410</MaxValue> </X> <Y Lock="N"> <MinValue>-230</MinValue> <MaxValue>310</MaxValue> </Y> <Z Lock="N"> <MinValue>-405</MinValue> <MaxValue>60</MaxValue> </Z> </DomainLimits> <AngleLimits Option="No Limits"/> <GlobalClashLimits Option="Contact allowed"/> <TPointType> <StartPointIndex>2</StartPointIndex> <EndPointIndex>4</EndPointIndex> </TPointType> <MaxTime Enable="Y">120</MaxTime> </FindTrack> <FindTrack> <TrackName>Track.1 Regulator</TrackName> <Quality Option="Low"/> <DomainLimits Option="Guiding Path"> <Radius>35.64</Radius> </DomainLimits> <AngleLimits Option="No Limits"/> <GlobalClashLimits option="Contact allowed"/> <MaxTime Enable="Y">120</MaxTime> </FindTrack> </PathPlanning> </Root> |