예제 #1
0
 /// <summary>
 /// Calculates the drag force generated by the fuselage and vertical tail.
 /// </summary>
 /// <returns></returns>
 private double GetSideDragForce()
 {
     return(AircraftParameters.GetSideDragCoefficient(Beta) * (Vx * Vx + Vy * Vy) * rhoVerticalSurface);
 }