<p><b>dwj07@fsu.edu</b> 2013-04-03 11:03:40 -0600 (Wed, 03 Apr 2013)</p><p><br>
        -- BRANCH COMMIT --<br>
<br>
        Renaming variables:<br>
        v -&gt; tangentialVelocity<br>
</p><hr noshade><pre><font color="gray">Modified: branches/ocean_projects/variable_name_change/src/core_ocean/Registry.xml
===================================================================
--- branches/ocean_projects/variable_name_change/src/core_ocean/Registry.xml        2013-04-03 16:58:43 UTC (rev 2716)
+++ branches/ocean_projects/variable_name_change/src/core_ocean/Registry.xml        2013-04-03 17:03:40 UTC (rev 2717)
@@ -606,7 +606,7 @@
                 &lt;var name=&quot;zMid&quot; type=&quot;real&quot; dimensions=&quot;nVertLevels nCells Time&quot; units=&quot;m&quot;
                      description=&quot;z-coordinate of the mid-depth of the layer&quot;
                 /&gt;
-                &lt;var name=&quot;v&quot; type=&quot;real&quot; dimensions=&quot;nVertLevels nEdges Time&quot; units=&quot;m s^{-1}&quot;
+                &lt;var name=&quot;tangentialVelocity&quot; type=&quot;real&quot; dimensions=&quot;nVertLevels nEdges Time&quot; units=&quot;m s^{-1}&quot;
                      description=&quot;horizontal velocity, tangential to an edge&quot;
                 /&gt;
                 &lt;var name=&quot;uTransport&quot; type=&quot;real&quot; dimensions=&quot;nVertLevels nEdges Time&quot; units=&quot;m s^{-1}&quot;

Modified: branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_diagnostics.F
===================================================================
--- branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_diagnostics.F        2013-04-03 16:58:43 UTC (rev 2716)
+++ branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_diagnostics.F        2013-04-03 17:03:40 UTC (rev 2717)
@@ -99,7 +99,7 @@
       real (kind=RKIND), dimension(:), pointer :: &amp;
         bottomDepth, fVertex, dvEdge, dcEdge, areaCell, areaTriangle, ssh, seaSurfacePressure
       real (kind=RKIND), dimension(:,:), pointer :: &amp;
-        weightsOnEdge, kiteAreasOnVertex, layerThicknessEdge, layerThickness, normalVelocity, v, pressure,&amp;
+        weightsOnEdge, kiteAreasOnVertex, layerThicknessEdge, layerThickness, normalVelocity, tangentialVelocity, pressure,&amp;
         circulation, relativeVorticity, ke, ke_edge, MontPot, wTop, zMid, &amp;
         potentialVorticityEdge, potentialVorticityVertex, potentialVorticityCell, gradVor_n, gradVor_t, divergence, &amp;
         density, displacedDensity, temperature, salinity, kev, kevc, uBolusGM, uTransport, &amp;
@@ -107,12 +107,12 @@
       real (kind=RKIND), dimension(:,:,:), pointer :: tracers, deriv_two
       character :: c1*6
 
-      layerThickness           =&gt; s % layerThickness % array
-      normalVelocity           =&gt; s % normalVelocity % array
+      layerThickness =&gt; s % layerThickness % array
+      normalVelocity =&gt; s % normalVelocity % array
       uTransport  =&gt; s % uTransport % array
       uBolusGM    =&gt; s % uBolusGM % array
-      v           =&gt; s % v % array
-      layerThicknessEdge      =&gt; s % layerThicknessEdge % array
+      tangentialVelocity =&gt; s % tangentialVelocity % array
+      layerThicknessEdge =&gt; s % layerThicknessEdge % array
       circulation =&gt; s % circulation % array
       relativeVorticity   =&gt; s % relativeVorticity % array
       divergence  =&gt; s % divergence % array
@@ -203,7 +203,7 @@
       divergence(:,:) = 0.0
       vertVelocityTop(:,:)=0.0
       ke(:,:) = 0.0
-      v(:,:) = 0.0
+      tangentialVelocity(:,:) = 0.0
       do iVertex = 1, nVertices
          invAreaTri1 = 1.0 / areaTriangle(iVertex)
          do i = 1, vertexDegree
@@ -243,7 +243,7 @@
          do i=1,nEdgesOnEdge(iEdge)
             eoe = edgesOnEdge(i,iEdge)
             do k = 1,maxLevelEdgeTop(iEdge) 
-               v(k,iEdge) = v(k,iEdge) + weightsOnEdge(i,iEdge) * normalVelocity(k, eoe)
+               tangentialVelocity(k,iEdge) = tangentialVelocity(k,iEdge) + weightsOnEdge(i,iEdge) * normalVelocity(k, eoe)
             end do
          end do
       end do
@@ -361,7 +361,7 @@
          do k = 1,maxLevelEdgeBot(iEdge)
            potentialVorticityEdge(k,iEdge) = potentialVorticityEdge(k,iEdge) &amp;
              - config_apvm_scale_factor * dt* (  normalVelocity(k,iEdge) * gradVor_n(k,iEdge) &amp;
-                          + v(k,iEdge) * gradVor_t(k,iEdge) )
+                          + tangentialVelocity(k,iEdge) * gradVor_t(k,iEdge) )
          enddo
       enddo
 

Modified: branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_global_diagnostics.F
===================================================================
--- branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_global_diagnostics.F        2013-04-03 16:58:43 UTC (rev 2716)
+++ branches/ocean_projects/variable_name_change/src/core_ocean/mpas_ocn_global_diagnostics.F        2013-04-03 17:03:40 UTC (rev 2717)
@@ -46,7 +46,7 @@
 
       real (kind=RKIND) :: volumeCellGlobal, volumeEdgeGlobal, CFLNumberGlobal, localCFL, localSum, areaCellGlobal, areaEdgeGlobal, areaTriangleGlobal
       real (kind=RKIND), dimension(:), pointer ::  areaCell, dcEdge, dvEdge, areaTriangle, areaEdge
-      real (kind=RKIND), dimension(:,:), pointer :: layerThickness, normalVelocity, v, layerThicknessEdge, relativeVorticity, ke, potentialVorticityEdge, potentialVorticityVertex, &amp;
+      real (kind=RKIND), dimension(:,:), pointer :: layerThickness, normalVelocity, tangentialVelocity, layerThicknessEdge, relativeVorticity, ke, potentialVorticityEdge, potentialVorticityVertex, &amp;
          potentialVorticityCell, gradVor_n, gradVor_t, pressure, MontPot, wTop, density, tracerTemp
       real (kind=RKIND), dimension(:,:,:), pointer :: tracers
       
@@ -89,7 +89,7 @@
          normalVelocity =&gt; state % normalVelocity % array
          density =&gt; state % density % array
          tracers =&gt; state % tracers % array
-         v =&gt; state % v % array
+         tangentialVelocity =&gt; state % tangentialVelocity % array
          wTop =&gt; state % wTop % array
          layerThicknessEdge =&gt; state % layerThicknessEdge % array
          relativeVorticity =&gt; state % relativeVorticity % array
@@ -103,7 +103,7 @@
          pressure =&gt; state % pressure % array
 
          variableIndex = 0
-         ! h
+         ! layerThickness
          variableIndex = variableIndex + 1
          call ocn_compute_field_area_weighted_local_stats(dminfo, nVertLevels, nCellsSolve, areaCell(1:nCellsSolve), layerThickness(:,1:nCellsSolve), &amp;
             sums_tmp(variableIndex), mins_tmp(variableIndex), maxes_tmp(variableIndex), verticalSumMins_tmp(variableIndex), verticalSumMaxes_tmp(variableIndex))
@@ -113,7 +113,7 @@
          verticalSumMins(variableIndex) = min(verticalSumMins(variableIndex), verticalSumMins_tmp(variableIndex))
          verticalSumMaxes(variableIndex) = max(verticalSumMaxes(variableIndex), verticalSumMaxes_tmp(variableIndex))
 
-         ! u
+         ! normalVelocity
          variableIndex = variableIndex + 1
          call ocn_compute_field_volume_weighted_local_stats(dminfo, nVertLevels, nEdgesSolve, areaEdge(1:nEdgesSolve), layerThicknessEdge(:,1:nEdgesSolve), &amp;
             normalVelocity(:,1:nEdgesSolve), sums_tmp(variableIndex), mins_tmp(variableIndex), maxes_tmp(variableIndex), verticalSumMins_tmp(variableIndex), &amp;
@@ -124,10 +124,10 @@
          verticalSumMins(variableIndex) = min(verticalSumMins(variableIndex), verticalSumMins_tmp(variableIndex))
          verticalSumMaxes(variableIndex) = max(verticalSumMaxes(variableIndex), verticalSumMaxes_tmp(variableIndex))
 
-         ! v
+         ! tangentialVelocity
          variableIndex = variableIndex + 1
          call ocn_compute_field_volume_weighted_local_stats(dminfo, nVertLevels, nEdgesSolve, areaEdge(1:nEdgesSolve), layerThicknessEdge(:,1:nEdgesSolve), &amp;
-            v(:,1:nEdgesSolve), sums_tmp(variableIndex), mins_tmp(variableIndex), maxes_tmp(variableIndex), verticalSumMins_tmp(variableIndex), &amp;
+            tangentialVelocity(:,1:nEdgesSolve), sums_tmp(variableIndex), mins_tmp(variableIndex), maxes_tmp(variableIndex), verticalSumMins_tmp(variableIndex), &amp;
             verticalSumMaxes_tmp(variableIndex))
          sums(variableIndex) = sums(variableIndex) + sums_tmp(variableIndex)
          mins(variableIndex) = min(mins(variableIndex), mins_tmp(variableIndex))
@@ -354,11 +354,11 @@
       variableIndex = variableIndex + 1
       averages(variableIndex) = sums(variableIndex)/(areaCellGlobal*nVertLevels)
 
-      ! u
+      ! normalVelocity
       variableIndex = variableIndex + 1
       averages(variableIndex) = sums(variableIndex)/volumeEdgeGlobal
 
-      ! v
+      ! tangentialVelocity
       variableIndex = variableIndex + 1
       averages(variableIndex) = sums(variableIndex)/volumeEdgeGlobal
 

</font>
</pre>