Class Medium

java.lang.Object
  |
  +--Medium
All Implemented Interfaces:
java.lang.Cloneable

public class Medium
extends java.lang.Object
implements java.lang.Cloneable

Medium class.

Data structure for transport medium. Notice its instance is a composed object that is cloneable.


Field Summary
 Normal a
          Empirical constant van Genucten's alpha (dimensionless).
 Normal alphaz
          Vertical dispersivity (meters).
 Normal K0
          Saturated hydraulic conductivity (meter/hr).
 Normal n
          van Genuchten parameter (dimensionless).
 StringAsChars name
          USDA name of the soil stored as a char[].
 Normal rho
          Soil bulk density (g/m^3).
 Normal rp
          Average radius of soil particles (meter).
 Normal t
          Temperature for computing molecular diffusivity (degrees Celsius).
 Normal theta_m
           
 Normal theta_r
           
 Normal theta_s
          Soil water content parameters: {Residual water content, Water content, Saturated water content} (dimensionless).
 Normal z
          Thickness of the proposed hydrogeologic barrier (meters).
 
Constructor Summary
Medium()
           
 
Method Summary
 java.lang.Object clone()
          Clone method redefinition
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public StringAsChars name
USDA name of the soil stored as a char[].


a

public Normal a
Empirical constant van Genucten's alpha (dimensionless).


theta_s

public Normal theta_s
Soil water content parameters: {Residual water content, Water content, Saturated water content} (dimensionless).


theta_r

public Normal theta_r

theta_m

public Normal theta_m

z

public Normal z
Thickness of the proposed hydrogeologic barrier (meters).


alphaz

public Normal alphaz
Vertical dispersivity (meters).


n

public Normal n
van Genuchten parameter (dimensionless).


t

public Normal t
Temperature for computing molecular diffusivity (degrees Celsius).


rho

public Normal rho
Soil bulk density (g/m^3).


rp

public Normal rp
Average radius of soil particles (meter).


K0

public Normal K0
Saturated hydraulic conductivity (meter/hr).

Constructor Detail

Medium

public Medium()
Method Detail

clone

public java.lang.Object clone()
Clone method redefinition

Overrides:
clone in class java.lang.Object