<p><b>mpetersen@lanl.gov</b> 2011-09-09 10:24:02 -0600 (Fri, 09 Sep 2011)</p><p>Change method to make nonperiodic boundaries in x, since cells in y zig-zag, rather than line up straight.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/ocean_projects/basin/src/basin.F
===================================================================
--- branches/ocean_projects/basin/src/basin.F        2011-09-08 15:58:15 UTC (rev 987)
+++ branches/ocean_projects/basin/src/basin.F        2011-09-09 16:24:02 UTC (rev 988)
@@ -1109,8 +1109,8 @@
         write(6,*) ' minimum xCell ', xmin
         xmax = maxval(xCell)
         write(6,*) ' maximum xCell ', xmax
-        where(xCell.lt.1.001*xmin) kmt = 0
-        where(xCell.gt.0.999*xmax) kmt = 0
+        where(xCell.lt.xmin+dc/1.5) kmt = 0
+        where(xCell.gt.xmax-dc/1.5) kmt = 0
     endif
 
     

</font>
</pre>