public static double
genuk(double h, double m, double n, double alpha);
Calculates conductivity from water potential
- h Water pressure head (negative)
- m Constant
- n Constant
- alpha Constant
returns Conductivity at pressure h
public static double
genup(double ts, double ta, double tr, double m, double
n, double alpha);
Calculates water pressure from water content
- ts Saturated soil water content theta(s) (volumetric)
- ta Actual soil water content theta (volumetric)
- tr Residual soil water content theta(r) (volumetric)
- m Constant
- n Constant
- alpha Constant
returns Water pressure head h (negative)
public static double
genuth(double ts, double h, double tr, double m, double
n, double alpha);
Calculates water content from water pressure potential
- ts Saturated soil water content theta(s) (volumetric)
- h Water pressure head (negative)
- tr Residual soil water content theta(r) (volumetric)
- m Constant
- n Constant
- alpha Constant
returns Water content theta at pressure h (volumetric)