<p><b>laura@ucar.edu</b> 2013-03-07 16:24:55 -0700 (Thu, 07 Mar 2013)</p><p>Added the local variables ctopo_p,ctopo2_p,cd_p,cda_p,ck_p,cka_p, and ustm_p. These variables are declared as optional in module_sf_sfclay.F and module_bl_ysu.F, but need to be passed in the argument list. Results are unchanged relative to previous revision (tested using pgi DEBUG=true on yellowstone. If not in the argument lsit, MPAS crashes when compiled with gfortran (but not with pgi).<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_vars.F
===================================================================
--- branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_vars.F        2013-03-07 23:18:30 UTC (rev 2567)
+++ branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_vars.F        2013-03-07 23:24:55 UTC (rev 2568)
@@ -210,6 +210,8 @@
  real(kind=RKIND),public:: dt_pbl
 
  real(kind=RKIND),dimension(:,:),allocatable:: &amp;
+    ctopo_p,          &amp;!correction to topography                                           [-]
+    ctopo2_p,         &amp;!correction to topography 2                                         [-]                  
     hpbl_p             !PBL height                                                         [m]
 
  real(kind=RKIND),dimension(:,:,:),allocatable:: &amp;
@@ -260,9 +262,13 @@
 !=============================================================================================
  real(kind=RKIND),dimension(:,:),allocatable:: &amp;
     br_p,             &amp;!bulk richardson number                                             [-]
+    cd_p,             &amp;!momentum exchange coeff at 10 meters                               [?]
+    cda_p,            &amp;!momentum exchange coeff at the lowest model level                  [?]
     cpm_p,            &amp;!
     chs_p,            &amp;!
     chs2_p,           &amp;!
+    ck_p,             &amp;!enthalpy exchange coeff at 10 meters                               [?]
+    cka_p,            &amp;!enthalpy exchange coeff at the lowest model level                  [?]
     cqs2_p,           &amp;!
     gz1oz0_p,         &amp;!log of z1 over z0                                                  [-]
     flhc_p,           &amp;!exchange coefficient for heat                                      [-]
@@ -286,11 +292,13 @@
     th2m_p,           &amp;!potential temperature at 2m                                        [K]
     u10_p,            &amp;!u at 10 m                                                        [m/s]
     ust_p,            &amp;!u* in similarity theory                                          [m/s]
+    ustm_p,           &amp;!u* in similarity theory       without vconv correction           [m/s]
     v10_p,            &amp;!v at 10 m                                                        [m/s]
     wspd_p,           &amp;!wind speed                                                       [m/s]
     znt_p,            &amp;!time-varying roughness length                                      [m]
     zol_p              !
 
+
 !=============================================================================================
 !... variables and arrays related to parameterization of short-wave radiation:
 !=============================================================================================

</font>
</pre>