<p><b>mhoffman@lanl.gov</b> 2012-03-02 16:17:43 -0700 (Fri, 02 Mar 2012)</p><p>BRANCH COMMIT<br>
Fixing small error in the ice sheet grid generator that created incorrect values for layerThicknessFractions.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/land_ice_projects/grid_tools/icesheet_legacy/periodic_hex/module_write_netcdf.F
===================================================================
--- branches/land_ice_projects/grid_tools/icesheet_legacy/periodic_hex/module_write_netcdf.F        2012-03-02 20:09:43 UTC (rev 1582)
+++ branches/land_ice_projects/grid_tools/icesheet_legacy/periodic_hex/module_write_netcdf.F        2012-03-02 23:17:43 UTC (rev 1583)
@@ -498,11 +498,11 @@
       start2(2) = 1
       count2( 1) = 3
       count2( 2) = wrLocalnVertices
-      nferr = nf_put_vara_double(wr_ncid, wrVarIDlayerThicknessFractions, start2, count2, kiteAreasOnVertex)
+      nferr = nf_put_vara_double(wr_ncid, wrVarIDkiteAreasOnVertex, start2, count2, kiteAreasOnVertex)
  
       start1(1) = 1
       count1( 1) = wrLocalnVertLevels
-      nferr = nf_put_vara_double(wr_ncid, wrVarIDkiteAreasOnVertex, start1, count1, layerThicknessFractions)
+      nferr = nf_put_vara_double(wr_ncid, wrVarIDlayerThicknessFractions, start1, count1, layerThicknessFractions)
 
       start2(2) = time
       count2( 2) = wrLocalnCells

</font>
</pre>