Skip to content

Commit

Permalink
Fixed VNAV TakeOff path and time calculation issue (unit issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
frankkopp committed Apr 12, 2024
1 parent 70405c0 commit 96440cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class TakeoffPathBuilder {
const lastCheckpoint = profile.lastCheckpoint;

const startingAltitude = lastCheckpoint.altitude;
const predictedN1 = SimVar.GetSimVarValue('L:A32NX_AUTOTHRUST_THRUST_LIMIT_TOGA', 'Percent');
const predictedN1 = SimVar.GetSimVarValue('L:A32NX_AUTOTHRUST_THRUST_LIMIT_TOGA', 'Number');
const speed = v2Speed + 10;

const { fuelBurned, distanceTraveled, timeElapsed } = Predictions.altitudeStep(
Expand Down

0 comments on commit 96440cf

Please sign in to comment.