<p><b>ringler@lanl.gov</b> 2011-05-19 11:01:39 -0600 (Thu, 19 May 2011)</p><p><br>
fixed the computation of meshScalingDel4 (really, I fixed it this time)<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/mpas/src/core_sw/module_time_integration.F
===================================================================
--- trunk/mpas/src/core_sw/module_time_integration.F        2011-05-19 13:32:11 UTC (rev 845)
+++ trunk/mpas/src/core_sw/module_time_integration.F        2011-05-19 17:01:39 UTC (rev 846)
@@ -328,7 +328,7 @@
          cell1 = cellsOnEdge(1,iEdge)
          cell2 = cellsOnEdge(2,iEdge)
          meshScalingDel2(iEdge) = 1.0 / ( (meshDensity(cell1) + meshDensity(cell2) )/2.0)**(5.0/12.0)
-         meshScalingDel4(iEdge) = 1.0 / (meshScalingDel2(iEdge))**2
+         meshScalingDel4(iEdge) = 1.0 / ( (meshDensity(cell1) + meshDensity(cell2) )/2.0)**(5.0/6.0)
       enddo
       endif
 

</font>
</pre>