Changeset 3231
- Timestamp:
- Sep 6, 2018 11:53:51 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/diagnostic_quantities_mod.f90
r3026 r3231 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix for microphysic scheme = 'saturation_adjustment' 28 ! 29 ! 3026 2018-05-22 10:30:53Z schwenkel 27 30 ! Changed the name specific humidity to mixing ratio, since we are computing 28 31 ! mixing ratios. … … 72 75 ! Description: 73 76 ! ------------ 74 !> Computation of the diagnostic supersaturation sat, actual temperature t_l75 !< and saturation water vapor mixing ratio q_77 !> Computation of the diagnostic supersaturation sat, actual liquid water 78 !< temperature t_l and saturation water vapor mixing ratio q_s 76 79 !------------------------------------------------------------------------------! 77 80 SUBROUTINE supersaturation ( i,j,k ) … … 84 87 85 88 USE control_parameters, & 86 ONLY: microphysics_kessler 89 ONLY: microphysics_kessler, microphysics_sat_adjust 87 90 88 91 IMPLICIT NONE … … 107 110 !-- (see: Cuijpers + Duynkerke, 1993, JAS, 23) 108 111 q_s = q_s * ( 1.0_wp + alpha * q(k,j,i) ) / ( 1.0_wp + alpha * q_s ) 109 110 112 ! 111 113 !-- Supersaturation: 112 !-- Not in case of microphysics_kessler since qr is unallocated 113 IF ( .NOT. microphysics_kessler ) THEN 114 !-- Not in case of microphysics_kessler or microphysics_sat_adjust 115 !-- since qr is unallocated 116 IF ( .NOT. microphysics_kessler .AND. & 117 .NOT. microphysics_sat_adjust ) THEN 114 118 sat = ( q(k,j,i) - qr(k,j,i) - qc(k,j,i) ) / q_s - 1.0_wp 115 119 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.