public static string HoursInIdeal(CompDTemperatureIngestible comp, double changeThreshold)
 {
     return("\nWill remain in ideal range for around " + ThermodynamicsBase.HoursToTargetTemp(comp, changeThreshold).ToString("f1") + " hours more.");
 }
 public static string HoursToAmbient(CompDTemperature comp)
 {
     return("\nWill reach ambient temperature of " + GenText.ToStringTemperature((float)comp.AmbientTemperature) + " in around " + ThermodynamicsBase.HoursToTargetTemp(comp, comp.AmbientTemperature, 2).ToString("f1") + " hour(s).");
 }
 public static string HoursToIdeal(CompDTemperatureIngestible comp, double idealTemp)
 {
     return("\nWill reach ideal temperature for consumption in around " + ThermodynamicsBase.HoursToTargetTemp(comp, idealTemp).ToString("f1") + " hours.");
 }