Displaying differences for changeset
 
display as  

src/java/m/rhem/model/Parameter.java

@@ -169,10 +169,10 @@
     double cover = aoa.basalCover + aoa.litterCover;
     switch (aoa.soilTexture) {
       case "Sand":
-        Keb = 24 * Math.exp(0.3483 * cover);
+        Keb = 64 * Math.exp(0.3564 * cover);
         break;
       case "Loamy Sand":
-        Keb = 10 * Math.exp(0.8755 * cover);
+        Keb = 30.5 * Math.exp(0.3056 * cover);
         break;
       case "Sandy Loam":
         Keb = 5 * Math.exp(1.1632 * cover);
@@ -193,16 +193,16 @@
         Keb = 0.50 * Math.exp(2.3026 * cover);
         break;
       case "Silty Clay Loam":
-        Keb = 0.40 * Math.exp(2.1691 * cover);
+        Keb = 0.9 * Math.exp(1.4137 * cover);
         break;
       case "Sandy Clay":
         Keb = 0.30 * Math.exp(2.1203 * cover);
         break;
       case "Silty Clay":
-        Keb = 0.25 * Math.exp(1.7918 * cover);
+        Keb = 0.5 * Math.exp(1.2809 * cover);
         break;
       case "Clay":
-        Keb = 0.2 * Math.exp(1.3218 * cover);
+        Keb = 0.3 * Math.exp(1.7918 * cover);
         break;
       default:
         throw new ServiceException("Invalid soilTexture: " + aoa.soilTexture);