Example #1
0
 // Based on runway condition (dry or wet), sets the tables for further computation.
 private void SetTables()
 {
     if (para.SurfaceWet)
     {
         slopeTable  = table.SlopeCorrWet;
         windTable   = table.WindCorrWet;
         weightTable = table.WeightTableWet;
     }
     else
     {
         slopeTable  = table.SlopeCorrDry;
         windTable   = table.WindCorrDry;
         weightTable = table.WeightTableDry;
     }
 }