Esempio n. 1
0
 public double GetNuLength(UnitsType utype)
 {
     return(NUConvert.RevertDistance(utype, Lenght));
 }
Esempio n. 2
0
 public double GetNuElevation(UnitsType units)
 {
     return(NUConvert.RevertDistance(units, Elevation));
 }
Esempio n. 3
0
 public double GetNuShutoffHead(UnitsType utype)
 {
     return(NUConvert.RevertDistance(utype, Hmax));
 }
Esempio n. 4
0
 public void SetNuMaximumHead(UnitsType type, double value)
 {
     Hmax = NUConvert.RevertDistance(type, value);
 }
Esempio n. 5
0
 public void SetNuInitHead(UnitsType type, double value)
 {
     H0 = NUConvert.RevertDistance(type, value);
 }
Esempio n. 6
0
 public double GetNuMinimumHead(UnitsType type)
 {
     return(NUConvert.RevertDistance(type, Hmin));
 }
Esempio n. 7
0
 public double GetNuInitHead(UnitsType type)
 {
     return(NUConvert.RevertDistance(type, H0));
 }