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