<p><b>laura@ucar.edu</b> 2010-10-07 16:00:38 -0600 (Thu, 07 Oct 2010)</p><p>added same physics initialization as in core_nhyd_atmos<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-10-07 21:51:13 UTC (rev 528)
+++ branches/atmos_physics/src/core_hyd_atmos/Registry        2010-10-07 22:00:38 UTC (rev 529)
@@ -24,8 +24,6 @@
 namelist integer   restart  config_restart_interval     0
 namelist logical   restart  config_do_restart           false
 namelist real      restart  config_restart_time         172800.0
-namelist integer   physics  config_n_physics            01
-namelist integer   physics  config_n_microp             01
 
 #
 # dim  type  name_in_file  name_in_code
@@ -184,6 +182,23 @@
 # hydrostatic and non-hydrostatic dynamical cores):
 #==================================================================================================
 
+#... NAMELIST VARIABLES ADDED FOR PHYSICS CONFIGURATION:
+namelist integer   physics  config_n_physics            01
+namelist integer   physics  config_n_microp             01
+namelist integer   physics  config_n_conv               01
+namelist integer   physics  config_n_pbl                01
+namelist integer   physics  config_n_eddy               01
+namelist integer   physics  config_n_radt               01
+
+namelist character physics  config_microp_scheme        off
+namelist character physics  config_conv_shallow_scheme  off
+namelist character physics  config_conv_deep_scheme     off
+namelist character physics  config_eddy_scheme          off 
+namelist character physics  config_pbl_scheme           off
+namelist character physics  config_radt_lw_scheme       off
+namelist character physics  config_radt_sw_scheme       off
+namelist character physics  config_sfclay_scheme        off
+
 #... VERTICALLY-INTEGRATED WATER SPECIES:
 
 # qv_col    : vertically-integrated water vapor mixing ratio                                (kg/m2) 
@@ -199,7 +214,9 @@
 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)
@@ -215,40 +232,105 @@
 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         - -
+var real    sr         ( nCells Time             )   o sr         - -
 
+#--------------------------------------------------------------------------------------------------
 #... PARAMETERIZATION OF CONVECTION:
+#--------------------------------------------------------------------------------------------------
 
 # 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)
+# rthcuten  : tendency of potential temperature due to cumulus convection                   (K s-1)
+# rqvcuten  : tendency of water vapor mixing ratio due to cumulus convection            (kg/kg s-1)
+# rqccuten  : tendency of cloud water mixing ratio due to cumulus convection            (kg/kg s-1)
+# rqrcuten  : tendency of rain mixing ratio due to cumulus convection                   (kg/kg s-1)
+# rqicuten  : tendency of cloud ice mixing ratio due to cumulus convection              (kg/kg s-1)
+# rqscuten  : tendency of snow mixing ratio due to cumulus convection                   (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   - -
+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             )  ro pratec   - -
-var real    rainc    ( nCells Time             )  ro rainc    - -
-var real    raincv   ( nCells Time             )  ro raincv   - -
+var real    rainc    ( nCells Time             )  ro rainc        - -
+var real    raincv   ( nCells Time             )  ro raincv       - -
 
 #    TENDENCIES:
-var real    rthcuten ( nVertLevels nCells Time ) iro rthcuten - -
-var real    rqvcuten ( nVertLevels nCells Time ) iro rqvcuten - -
-var real    rqccuten ( nVertLevels nCells Time ) iro rqccuten - -
-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    w0avg    ( nVertLevels nCells Time ) iro w0avg    - -
+var real    rthcuten ( nVertLevels nCells Time )  ro rthcuten     - -
+var real    rqvcuten ( nVertLevels nCells Time )  ro rqvcuten     - -
+var real    rqccuten ( nVertLevels nCells Time )  ro rqccuten     - -
+var real    rqrcuten ( nVertLevels nCells Time )  ro rqrcuten     - -
+var real    rqicuten ( nVertLevels nCells Time )  ro rqicuten     - -
+var real    rqscuten ( nVertLevels nCells Time )  ro rqscuten     - -
+var real    w0avg    ( nVertLevels nCells Time )  ro w0avg        - -
 
+#--------------------------------------------------------------------------------------------------
+#... PARAMETERIZATION OF PLANETARY BOUNDARY LAYER PROCESSES:
+#--------------------------------------------------------------------------------------------------
+
+# rthblten  : tendency of potential temperature due to pbl processes                        (K s-1)
+# rqvblten  : tendency of water vapor mixing ratio due to pbl processes                 (kg/kg s-1)
+# rqcblten  : tendency of cloud water mixing ratio due to pbl processes                 (kg/kg s-1)
+# rqiblten  : tendency of cloud ice mixing ratio due to pbl processes                   (kg/kg s-1)
+
+#    TENDENCIES:
+var real    rublten  ( nVertLevels nCells Time )  ro rublten      - -
+var real    rvblten  ( nVertLevels nCells Time )  ro rvblten      - -
+var real    rthblten ( nVertLevels nCells Time )  ro rthblten     - -
+var real    rqvblten ( nVertLevels nCells Time )  ro rqvblten     - -
+var real    rqcblten ( nVertLevels nCells Time )  ro rqcblten     - -
+var real    rqiblten ( nVertLevels nCells Time )  ro rqiblten     - -
+
+#--------------------------------------------------------------------------------------------------
+#... PARAMETERIZATION OF SURFACE LAYER PROCESSES:
+#--------------------------------------------------------------------------------------------------
+
+# flhc     :exchange coefficient for heat                                                       [-]
+# flqc     :exchange coefficient for moisture                                                   [-]
+# hfx      :upward heat flux at the surface                                                  [W/m2]
+# lh       :latent heat flux at the surface                                                  [W/m2]
+# mavail   :surface moisture availability                                                       [-]
+# mol      :T* in similarity theory                                                             [K]
+# pblh     :PBL height                                                                          [m]
+# q2       :specific humidity at 2m                                                         [kg/kg]
+# qfx      :upward moisture flux at the surface                                           [kg/m2/s]
+# qsfc     :specific humidity at lower boundary                                             [kg/kg]
+# regime   :flag indicating PBL regime (stable_p,unstable_p,etc...)                             [-]
+# rmol     :1 / Monin Ob length                                                                 [-]
+# t2       :temperature at 2m                                                                   [K]
+# tsk      :surface-skin temperature                                                            [K]
+# th2      :potential temperature at 2m                                                         [K]
+# u10      :u at 10 m                                                                         [m/s]
+# ust      :u* in similarity theory                                                           [m/s]
+# ustm     :u* in similarity theory without vconv                                             [m/s]
+# v10      :v at 10 m                                                                         [m/s]
+# xland    :land mask (1 for land; 2 for water)                                                 [-]
+# znt      :time-varying roughness length                                                       [m]
+
+var real    flhc     ( nCells Time             )  r  flhc         - -
+var real    flqc     ( nCells Time             )  r  flqc         - -
+var real    hfx      ( nCells Time             )  r  hfx          - -
+var real    lh       ( nCells Time             )  r  lh           - -
+var real    mavail   ( nCells Time             )  r  mavail       - -
+var real    mol      ( nCells Time             )  r  mol          - -
+var real    pblh     ( nCells Time             )  r  pblh         - -
+var real    q2       ( nCells Time             )  r  q2           - -
+var real    qfx      ( nCells Time             )  r  qfx          - -
+var real    qsfc     ( nCells Time             )  r  qsfc         - -
+var real    regime   ( nCells Time             )  r  regime       - -
+var real    rmol     ( nCells Time             )  r  rmol         - -
+var real    t2       ( nCells Time             )  r  t2           - -
+var real    tsk      ( nCells Time             )  r  tsk          - -
+var real    th2      ( nCells Time             )  r  th2          - -
+var real    u10      ( nCells Time             )  r  u10          - -
+var real    ust      ( nCells Time             )  r  ust          - -
+var real    ustm     ( nCells Time             )  r  ustm         - -
+var real    v10      ( nCells Time             )  r  v10          - -
+var real    xland    ( nCells Time             )  r  xland        - -
+var real    znt      ( nCells Time             )  r  znt          - -
+
 #==================================================================================================

</font>
</pre>