<p><b>laura@ucar.edu</b> 2012-10-04 10:15:47 -0600 (Thu, 04 Oct 2012)</p><p>removed extra local variables and arrays. added local variables needed for additional options in the WRF version 3.4.1 of the Kain-Fritsch convection scheme (under testing.)<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        2012-10-04 16:14:00 UTC (rev 2187)
+++ branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_vars.F        2012-10-04 16:15:47 UTC (rev 2188)
@@ -36,6 +36,7 @@
  integer,public:: ids,ide,jds,jde,kds,kde
  integer,public:: ims,ime,jms,jme,kms,kme
  integer,public:: its,ite,jts,jte,kts,kte
+ integer,public:: iall
  integer,public:: n_microp
 
  integer,public:: num_months          !number of months                                    [-]
@@ -172,6 +173,18 @@
     rqrcuten_p,       &amp;!
     rqscuten_p         !
 
+!... kain fritsch (trigger option) specific arrays:
+ real(kind=RKIND),dimension(:,:),allocatable:: &amp;
+    area_kf_p          !as area_p but using nCells instead of nCellsSolve                  [m2]
+ real(kind=RKIND),dimension(:,:,:),allocatable:: &amp;
+    rqvdynten_havg_p, &amp;!
+    rqvdynten_vavg_p, &amp;!
+    t_kf_p,           &amp;!as t_p but using nCells instead of nCellsSolve to compute t_havg_p [K]
+    t_havg_p,         &amp;!
+    t_vavg_p,         &amp;!
+    t_htrigger_p,     &amp;!
+    t_vtrigger_p       !
+
 !... tiedtke specific arrays:
  real(kind=RKIND),dimension(:,:,:),allocatable:: &amp;
     znu_p,            &amp;!
@@ -215,10 +228,6 @@
 !=============================================================================================
  real(kind=RKIND),dimension(:,:),allocatable:: &amp;
     br_p,             &amp;!bulk richardson number                                             [-]
-    cd_p,             &amp;!
-    cda_p,            &amp;!
-    ck_p,             &amp;!
-    cka_p,            &amp;!
     cpm_p,            &amp;!
     chs_p,            &amp;!
     chs2_p,           &amp;!
@@ -227,6 +236,8 @@
     flhc_p,           &amp;!exchange coefficient for heat                                      [-]
     flqc_p,           &amp;!exchange coefficient for moisture                                  [-]
     hfx_p,            &amp;!upward heat flux at the surface                                 [W/m2]
+    fh_p,             &amp;!integrated stability function for heat                             [-]
+    fm_p,             &amp;!integrated stability function for momentum                         [-]             
     lh_p,             &amp;!latent heat flux at the surface                                 [W/m2]
     mavail_p,         &amp;!surface moisture availability                                      [-]
     mol_p,            &amp;!T* in similarity theory                                            [K]
@@ -243,7 +254,6 @@
     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                            [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]

</font>
</pre>