Exemplo n.º 1
0
 /// <summary>
 /// Calculates the lift force generated by the fuselage and vertical tail.
 /// </summary>
 /// <returns></returns>
 private double GetSideLiftForce()
 {
     return(AircraftParameters.GetSideLiftCoefficient(Beta) * (Vx * Vx + Vy * Vy) * rhoVerticalSurface);
 }