Fix acceleration path of default takeoff taxi.
This commit is contained in:
parent
ed8970a29d
commit
b2bec04733
1 changed files with 7 additions and 0 deletions
|
@ -206,6 +206,13 @@ void FGAIFlightPlan::createDefaultTakeoffTaxi(FGAIAircraft * ac,
|
|||
wpt =
|
||||
createOnGround(ac, "Runway Takeoff", runwayTakeoff, airportElev,
|
||||
ac->getPerformance()->vTaxi());
|
||||
|
||||
pushBackWaypoint(wpt);
|
||||
|
||||
// Acceleration point, 105 meters into the runway,
|
||||
SGGeod accelPoint = aRunway->pointOnCenterline(105.0);
|
||||
wpt = createOnGround(ac, "accel", accelPoint, airportElev,
|
||||
ac->getPerformance()->vRotate());
|
||||
pushBackWaypoint(wpt);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue