<p><b>laura@ucar.edu</b> 2010-06-14 10:08:13 -0600 (Mon, 14 Jun 2010)</p><p>Modified array declaration for h_diabatic. Added physics diagnostics for cloud microphysics and convection<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/src/core_hyd_atmos/Registry
===================================================================
--- branches/atmos_physics/src/core_hyd_atmos/Registry        2010-06-11 21:26:44 UTC (rev 344)
+++ branches/atmos_physics/src/core_hyd_atmos/Registry        2010-06-14 16:08:13 UTC (rev 345)
@@ -118,6 +118,7 @@
 var real    qg ( nVertLevels nCells Time ) iro qg scalars moist
 var real    qnr ( nVertLevels nCells Time ) iro qnr scalars number
 var real    qni ( nVertLevels nCells Time ) iro qni scalars number
+var real    h_diabatic ( nVertLevels nCells Time ) ro h_diabatic - -
 #var real    tracers ( nTracers nVertLevels nCells Time ) iro tracers - -
 
 # state variables diagnosed from prognostic state
@@ -127,6 +128,8 @@
 var real    pressure ( nVertLevelsP1 nCells Time ) ro pressure - -
 var real    geopotential ( nVertLevelsP1 nCells Time ) ro geopotential - -
 var real    alpha ( nVertLevels nCells Time ) iro alpha - -
+var real    Ux ( nVertLevels nCells Time ) o Ux - -
+var real    Uy ( nVertLevels nCells Time ) o Uy - -
 
 # Diagnostic fields: only written to output
 var real    v ( nVertLevels nEdges Time ) o v - -
@@ -153,7 +156,6 @@
 var real    wwAvg ( nVertLevelsP1 nCells ) - wwAvg - -
 var real    qtot ( nVertLevels nCells ) - qtot - -
 var real    cqu  ( nVertLevels nEdges ) - cqu - -
-var real    h_diabatic  ( nVertLevels nCells ) - h_diabatic - -
 var real    dpsdt ( nCells ) - dpsdt - -
 
 var real    u_old ( nVertLevels nEdges ) - u_old - -
@@ -180,26 +182,63 @@
 var real    coeffs_reconstruct ( R3 maxEdges nCells ) - coeffs_reconstruct - -
 
 #==================================================================================================
+#... VERTICALLY-INTEGRATED WATER SPECIES:
+
+# qv_col    : vertically-integrated water vapor mixing ratio                                (kg/m2) 
+# qc_col    : vertically-integrated cloud water mixing ratio                                (kg/m2)
+# qr_col    : vertically-integrated rain mixing ratio                                       (kg/m2)
+# qi_col    : vertically-integrated cloud ice mixing ratio                                  (kg/m2)
+# qs_col    &quot; vertically-integrated snow mixing ratio                                       (kg/m2)
+
+var real    qv_col     ( nCells Time             )  o  qv_col     - -
+var real    qc_col     ( nCells Time             )  o  qc_col     - -
+var real    qr_col     ( nCells Time             )  o  qr_col     - -
+var real    qi_col     ( nCells Time             )  o  qi_col     - -
+var real    qs_col     ( nCells Time             )  o  qs_col     - -
+var real    qg_col     ( nCells Time             )  o  qg_col     - -
+
+#... PARAMETERIZATION OF CLOUD MICROPHYSICS:
+
+# rainnc    : accumulated total time-step grid-scale precipitation                             (mm)
+# rainncv   : time-step total grid-scale precipitation                                         (mm)
+# snownc    : accumulated grid-scale precipitation of snow                                     (mm)
+# snowncv   : time-step grid-scale precipitation of snow                                       (mm)
+# graupelnc : accumulated grid-scale precipitation of graupel                                  (mm)
+# graupelncv: time-step grid-scale precipitation of graupel                                    (mm)
+# sr        : time-step ratio of frozen versus total grid-scale precipitation                   (-)
+
+var real    rainnc     ( nCells Time             )  ro rainnc     - -
+var real    rainncv    ( nCells Time             )  ro rainncv    - -
+var real    snownc     ( nCells Time             )  ro snownc     - -
+var real    snowncv    ( nCells Time             )  ro snowncv    - -
+var real    graupelnc  ( nCells Time             )  ro graupelnc  - -
+var real    graupelncv ( nCells Time             )  ro graupelncv - -
+var real    sr         ( nCells Time             )  ro sr         - -
+
 #... PARAMETERIZATION OF CONVECTION:
 
-# cubot   :
-# cutop   :
-# pratec  : convective precipitation rate                                                (mm s-1)
-# raincv  : time-step convective precipitation                                               (mm)
-# rthcuten: coupled-tendency of potential temperature due to cumulus convection        (Pa K s-1)
-# rqvcuten: coupled-tendency of water vapor mixing ratio due to cumulus convection (Pa kg/kg s-1)
-# rqccuten: coupled-tendency of cloud water mixing ratio due to cumulus convection (Pa kg/kg s-1)
-# rqrcuten: coupled-tendency of rain mixing ratio due to cumulus convection        (Pa kg/kg s-1)
-# rqicuten: coupled-tendency of cloud ice mixing ratio due to cumulus convection   (Pa kg/kg s-1)
-# rqscuten: coupled-tendency of snow mixing ratio due to cumulus convection        (Pa kg/kg s-1)
-# wavg    : average vertical velocity (KF scheme only)                                    (m s-1)

-var real    cubot    ( nCells Time             )  r  cubot    - -
-var real    cutop    ( nCells Time             )  r  cutop    - -
+# nca       : relaxation time for KF parameterization of convection                             (s)
+# cubot     : lowest level of convection                                                        (-)
+# cutop     : highest level of convection                                                       (-)
+# pratec    : convective precipitation rate                                                (mm s-1)
+# rainc     : accumulated time-step convective precipitation                                   (mm)
+# raincv    : time-step convective precipitation                                               (mm)
+# rthcuten  : coupled-tendency of potential temperature due to cumulus convection        (Pa K s-1)
+# rqvcuten  : coupled-tendency of water vapor mixing ratio due to cumulus convection (Pa kg/kg s-1)
+# rqccuten  : coupled-tendency of cloud water mixing ratio due to cumulus convection (Pa kg/kg s-1)
+# rqrcuten  : coupled-tendency of rain mixing ratio due to cumulus convection        (Pa kg/kg s-1)
+# rqicuten  : coupled-tendency of cloud ice mixing ratio due to cumulus convection   (Pa kg/kg s-1)
+# rqscuten  : coupled-tendency of snow mixing ratio due to cumulus convection        (Pa kg/kg s-1)
+# wavg      : average vertical velocity (KF scheme only)                                    (m s-1)
 
+var real    nca      ( nCells Time             )  ro  nca     - -
+var real    cubot    ( nCells Time             )  ro  cubot   - -
+var real    cutop    ( nCells Time             )  ro  cutop   - -
+
 # PRECIPITATION:
-var real    pratec   ( nCells Time             )  r  pratec   - -
-var real    raincv   ( nCells Time             )  r  raincv   - -
+var real    pratec   ( nCells Time             )  ro pratec   - -
+var real    rainc    ( nCells Time             )  ro rainc    - -
+var real    raincv   ( nCells Time             )  ro raincv   - -
 
 #    TENDENCIES:
 var real    rthcuten ( nVertLevels nCells Time ) iro rthcuten - -
@@ -208,6 +247,6 @@
 var real    rqrcuten ( nVertLevels nCells Time ) iro rqrcuten - -
 var real    rqicuten ( nVertLevels nCells Time ) iro rqicuten - -
 var real    rqscuten ( nVertLevels nCells Time ) iro rqscuten - -
-var real    wavg     ( nVertLevels nCells Time ) iro wavg     - -
+var real    w0avg    ( nVertLevels nCells Time ) iro w0avg    - -
 
 #==================================================================================================

</font>
</pre>