// Get the momentary (IE current dynamic) failure rates (Can vary per reliability/failure modules)
 // These  methods will let you get a list of all momentary rates or you can get the best (lowest chance of failure)/worst (highest chance of failure) rates
 // Note that the return value is alwasy a dictionary.  The key is the name of the trigger, always in lowercase.  The value is the failure rate.
 // The dictionary will be a single entry in the case of Worst/Best calls, and will be the length of total triggers in the case of askign for All momentary rates.
 public static double GetWorstMomentaryFailureRateValue(Part part)
 {
     return(TestFlightInterface.GetWorstMomentaryFailureRateForScope(part, TestFlightInterface.GetScope()));
 }