<p><b>dwj07@fsu.edu</b> 2012-02-23 20:14:36 -0700 (Thu, 23 Feb 2012)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Fixing an issue with 3rd order thickness advection.<br>
        Coefficient for 3rd order is never defined.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/ocean_projects/monotonic_advection/src/core_ocean/mpas_ocn_tendency.F
===================================================================
--- branches/ocean_projects/monotonic_advection/src/core_ocean/mpas_ocn_tendency.F        2012-02-24 01:56:33 UTC (rev 1533)
+++ branches/ocean_projects/monotonic_advection/src/core_ocean/mpas_ocn_tendency.F        2012-02-24 03:14:36 UTC (rev 1534)
@@ -524,6 +524,7 @@
! initialize h_edge to avoid divide by zero and NaN problems.
h_edge = -1.0e34
+ coef_3rd_order = config_coef_3rd_order
do iEdge=1,nEdges*hadv2nd
cell1 = cellsOnEdge(1,iEdge)
</font>
</pre>