<p><b>laura@ucar.edu</b> 2013-04-18 10:41:33 -0600 (Thu, 18 Apr 2013)</p><p>Added diagnostics fh and fm to driver for the surface layer scheme. Results are not changed.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/src/core_nhyd_atmos/Registry
===================================================================
--- branches/atmos_physics/src/core_nhyd_atmos/Registry        2013-04-18 15:33:42 UTC (rev 2767)
+++ branches/atmos_physics/src/core_nhyd_atmos/Registry        2013-04-18 16:41:33 UTC (rev 2768)
@@ -590,6 +590,8 @@
 % zol       :z/L height over Monin-Obukhov length                                               [-]
 % znt       :time-varying roughness length                                                      [m]
 % wspd      :wind speed                                                                       [m/s]
+% fh        :integrated function for heat                                                       [-]
+% fm        :integrated function for momemtum                                                   [-]
 % DIAGNOSTICS:
 % q2        :specific humidity at 2m                                                        [kg/kg]
 % u10       :u at 10 m                                                                        [m/s]
@@ -626,6 +628,9 @@
 var persistent real    regime   ( nCells Time               ) 1  ro regime         diag_physics - -
 var persistent real    rmol     ( nCells Time               ) 1  ro rmol           diag_physics - -
 var persistent real    wspd     ( nCells Time               ) 1  ro wspd           diag_physics - -
+var persistent real    fh       ( nCells Time               ) 1  ro fh             diag_physics - -
+var persistent real    fm       ( nCells Time               ) 1  ro fm             diag_physics - -
+
 % DIAGNOSTICS:
 var persistent real    u10      ( nCells Time               ) 1  ro u10            diag_physics - -
 var persistent real    v10      ( nCells Time               ) 1  ro v10            diag_physics - -
Modified: branches/atmos_physics/src/core_nhyd_atmos/Registry.xml
===================================================================
--- branches/atmos_physics/src/core_nhyd_atmos/Registry.xml        2013-04-18 15:33:42 UTC (rev 2767)
+++ branches/atmos_physics/src/core_nhyd_atmos/Registry.xml        2013-04-18 16:41:33 UTC (rev 2768)
@@ -561,12 +561,15 @@
                 <!--  zol       :z/L height over Monin-Obukhov length                                               [-] -->
                 <!--  znt       :time-varying roughness length                                                      [m] -->
                 <!--  wspd      :wind speed                                                                       [m/s] -->
+                <!--  fh        :integrated function for heat                                                       [-] -->
+                <!--  fm        :integrated function for momentum                                                   [-] -->
                 <!--  DIAGNOSTICS:                                                                                      -->
                 <!--  q2        :specific humidity at 2m                                                        [kg/kg] -->
                 <!--  u10       :u at 10 m                                                                        [m/s] -->
                 <!--  v10       :v at 10 m                                                                        [m/s] -->
                 <!--  t2m       :temperature at 2m                                                                  [K] -->
                 <!--  th2m      :potential temperature at 2m                                                        [K] -->
+
                 <var name="hfx"           type="real"     dimensions="nCells Time"                 streams="ro"/>
                 <var name="mavail"        type="real"     dimensions="nCells Time"                 streams="ro"/>
                 <var name="mol"           type="real"     dimensions="nCells Time"                 streams="ro"/>
@@ -596,6 +599,8 @@
                 <var name="regime"        type="real"     dimensions="nCells Time"                 streams="ro"/>
                 <var name="rmol"          type="real"     dimensions="nCells Time"                 streams="ro"/>
                 <var name="wspd"          type="real"     dimensions="nCells Time"                 streams="ro"/>
+                <var name="fh"            type="real"     dimensions="nCells Time"                 streams="ro"/>
+                <var name="fm"            type="real"     dimensions="nCells Time"                 streams="ro"/>
 
                 <!-- DIAGNOSTICS: -->
                 <var name="u10"           type="real"     dimensions="nCells Time"                 streams="ro"/>
</font>
</pre>