internal static bool CleanedLandingSpeeds(LandingSpeedValues UncleanValues, out LandingSpeedValues CleanValues)
 {
     CleanValues = UncleanValues;
     if (UncleanValues.Units == PrimaryUnits.IMPERIAL)
     {
         CleanValues.Units  = PrimaryUnits.METRIC;
         CleanValues.Weight = (int)Math.Round(PoundsToKilograms(UncleanValues.Weight));
     }
     return(true);
 }
 internal LandingComputation(LandingSpeedValues Values)
 {
     this.Values = Values;
     this.Output = Adjust(Compute());
 }