<p><b>ringler@lanl.gov</b> 2010-05-04 09:59:06 -0600 (Tue, 04 May 2010)</p><p><br>
code change: src/core_ocean/module_time_integration.F<br>
<br>
reason: sign error in the computation of the vertical mixing of velocity<br>
</p><hr noshade><pre><font color="gray">Modified: branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F
===================================================================
--- branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F        2010-05-03 22:07:14 UTC (rev 239)
+++ branches/lateral_boundary_conditions/src/core_ocean/module_time_integration.F        2010-05-04 15:59:06 UTC (rev 240)
@@ -403,7 +403,7 @@
           else
              dist = zBotEdge(k-1,iEdge) - zBotEdge(k,iEdge)
           endif
-          tend_u(k,iEdge) = tend_u(k,iEdge) - (fluxVert(k-1) - fluxVert(k))/dist
+          tend_u(k,iEdge) = tend_u(k,iEdge) + (fluxVert(k-1) - fluxVert(k))/dist
         enddo
      enddo
      deallocate(fluxVert)

</font>
</pre>