<p><b>laura@ucar.edu</b> 2012-03-26 09:06:15 -0600 (Mon, 26 Mar 2012)</p><p>added the option kain_fritsch_trigger which is a new option for the Kain-Fritsch parameterization of convection. This option is being tested and is not yet available.<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_control.F
===================================================================
--- branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_control.F        2012-03-26 15:02:46 UTC (rev 1711)
+++ branches/atmos_physics/src/core_atmos_physics/mpas_atmphys_control.F        2012-03-26 15:06:15 UTC (rev 1712)
@@ -68,9 +68,10 @@
  endif
 
 !deep convection scheme:
- if(.not. (config_conv_deep_scheme .eq. 'off'          .or. &amp;
-           config_conv_deep_scheme .eq. 'kain_fritsch' .or. &amp;
-           config_conv_deep_scheme .eq. 'tiedtke'      )) then
+ if(.not. (config_conv_deep_scheme .eq. 'off'                  .or. &amp;
+           config_conv_deep_scheme .eq. 'kain_fritsch'         .or. &amp;
+           config_conv_deep_scheme .eq. 'kain_fritsch_trigger' .or. &amp;
+           config_conv_deep_scheme .eq. 'tiedtke'              )) then
 
     write(mpas_err_message,'(A,A10)') 'illegal value for config_deep_conv_scheme: ', &amp;
           trim(config_conv_deep_scheme)
@@ -78,12 +79,9 @@
 
  endif
 
-!ldf (2012-01-19): Tiedtke is still under testing. do not use right now.
- if(config_conv_deep_scheme .eq. 'tiedtke') then
-    write(mpas_err_message,'(A,A10)') 'Tiedtke is being tested. Do not use right now. Thanks '
-    call physics_error_fatal(mpas_err_message)
- endif
-!ldf end.
+!kain_fritsch_trigger:
+ if(config_conv_deep_scheme .eq. 'kain_fritsch_trigger') &amp; 
+    call physics_error_fatal('DO NOT USE YET: kain_fritsch_trigger is being tested')
 
 !pbl scheme:
  if(.not. (config_pbl_scheme .eq. 'off' .or. &amp;

</font>
</pre>