<p><b>duda</b> 2010-05-25 15:07:20 -0600 (Tue, 25 May 2010)</p><p>The values in weightsOnEdge need to be scaled by 1/sqrt(3) for<br>
perfect hexagons; without this factor, reconstructed tangential<br>
velocities will be incorrect.<br>
<br>
M    grid_gen/periodic_hex/periodic_grid.F<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/grid_gen/periodic_hex/periodic_grid.F
===================================================================
--- trunk/grid_gen/periodic_hex/periodic_grid.F        2010-05-25 15:57:24 UTC (rev 311)
+++ trunk/grid_gen/periodic_hex/periodic_grid.F        2010-05-25 21:07:20 UTC (rev 312)
@@ -209,6 +209,8 @@
    end do
    end do
 
+   weightsOnEdge(:,:) = weightsOnEdge(:,:) * ONE/sqrt(THREE)
+
    do iRow = 1, ny
    do iCol = 1, nx
       iCell = cellIdx(iCol, iRow)

</font>
</pre>