Beispiel #1
0
 public override Time ConvertInT(Time t)
 {
     return(Time.Hours(t));
 }
 public static EnergyInWh <Mag.Kilo> KiloWh(Power P, Time t)
 {
     return(KiloWh(Power.KiloWatt(P).Value *Time.Hours(t).Value));
 }
 public static EnergyInWh <Mag.One> Wh(Power P, Time t)
 {
     return(Wh(Power.Watt(P).Value *Time.Hours(t).Value));
 }
 // knots
 public static VelocityInKnots Knots(Length s, Time t)
 {
     return(Knots(Length.NauticalMiles(s).Vector / Time.Hours(t).Value));
 }
 //mph
 public static VelocityInMilesPerHour MilesPerHour(Length s, Time t)
 {
     return(MilesPerHour(Length.Miles(s).Vector / Time.Hours(t).Value));
 }
 // km/h
 public static VelocityInKilometerPerHour KilometerPerHour(Length s, Time t)
 {
     return(KilometerPerHour(Length.Kilometer(s).Vector / Time.Hours(t).Value));
 }