예제 #1
0
 public TOCalculator(BoeingPerfTable item, TOParameters para)
 {
     table     = item.Tables[para.FlapsIndex];
     this.para = para;
     SetTables();
 }
예제 #2
0
 // knots
 private static double HeadwindComp(TOParameters p)
 {
     return(p.WindSpeedKnots *
            Math.Cos(ToRadian(p.RwyHeading - p.WindHeading)));
 }
예제 #3
0
 public TOReportGenerator(BoeingPerfTable item, TOParameters para)
 {
     calc      = new TOCalculator(item, para);
     table     = item.Tables[para.FlapsIndex];
     this.para = para;
 }