Displaying differences for changeset
 
display as  

src/java/m/efh2/EFH2HydrologyModel.java

@@ -208,7 +208,6 @@
      * get computed runoff, in inches
      */
     public double getRunoffQ() {
-//        simulate();
         return runoffQ;
     }
 
@@ -216,15 +215,13 @@
      * get computed Tc time of concentration, hours
      */
     public double getTimeOfConcentration() {
-//        simulate();
         return Tc;
     }
 
     /**
-     * get computed peack discharge rate, cfs/ac-in??
+     * get computed peak discharge rate, cfs/ac-in??
      */
     public double getUnitPeakDischarge() {
-//        simulate();
         return qu;
     }
 }

src/java/m/hydrotools/efh2/V1_0.java

@@ -45,14 +45,9 @@
 
   @Override
   protected void postProcess() throws Exception {
-    putResult(RUNOFF, model.getRunoffQ());
-    putResult(TIMEOFCONCENTRATION, model.getTimeOfConcentration());
-    putResult(UNITPEAKDISCHARGE, model.getUnitPeakDischarge());
+    putResult(RUNOFF, model.getRunoffQ(), "Runoff depth output", "inches");
+    putResult(TIMEOFCONCENTRATION, model.getTimeOfConcentration(), "Time of concentration", "hours" );
+    putResult(UNITPEAKDISCHARGE, model.getUnitPeakDischarge(), "Unit Peak Discharge", "cfs/ac-in");
   }
 
-
-  @Override
-  protected void doReport() throws Exception {
-    putReport("RUNOFF", model.getRunoffQ());
-  }
 }