Changeset 3294 for palm/trunk/SOURCE/turbulence_closure_mod.f90
- Timestamp:
- Oct 1, 2018 2:37:10 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/turbulence_closure_mod.f90
r3274 r3294 25 25 ! ----------------- 26 26 ! $Id$ 27 ! changes concerning modularization of ocean option 28 ! 29 ! 3274 2018-09-24 15:42:55Z knoop 27 30 ! Modularization of all bulk cloud physics code components 28 31 ! … … 164 167 initializing_actions, intermediate_timestep_count, & 165 168 intermediate_timestep_count_max, km_constant, & 166 les_dynamic, les_mw, ocean , plant_canopy, prandtl_number,&167 p rho_reference, pt_reference, rans_mode, rans_tke_e, rans_tke_l,&169 les_dynamic, les_mw, ocean_mode, plant_canopy, prandtl_number, & 170 pt_reference, rans_mode, rans_tke_e, rans_tke_l, & 168 171 simulated_time,timestep_scheme, turbulence_closure, & 169 172 turbulent_inflow, use_upstream_for_tke, vpt_reference, & … … 190 193 191 194 USE kinds 195 196 USE ocean_mod, & 197 ONLY: prho_reference 192 198 193 199 USE pegrid … … 1116 1122 e = e_init 1117 1123 ELSE 1118 IF ( .NOT. ocean ) THEN1124 IF ( .NOT. ocean_mode ) THEN 1119 1125 kh = 0.01_wp ! there must exist an initial diffusion, because 1120 1126 km = 0.01_wp ! otherwise no TKE would be produced by the … … 1160 1166 e = e_init 1161 1167 ELSE 1162 IF ( .NOT. ocean ) THEN1168 IF ( .NOT. ocean_mode ) THEN 1163 1169 kh = 0.01_wp ! there must exist an initial diffusion, because 1164 1170 km = 0.01_wp ! otherwise no TKE would be produced by the … … 2155 2161 2156 2162 IF ( .NOT. humidity ) THEN 2157 IF ( ocean ) THEN2163 IF ( ocean_mode ) THEN 2158 2164 CALL diffusion_e( prho, prho_reference ) 2159 2165 ELSE … … 2423 2429 2424 2430 IF ( .NOT. humidity ) THEN 2425 IF ( ocean ) THEN2431 IF ( ocean_mode ) THEN 2426 2432 CALL diffusion_e( i, j, prho, prho_reference ) 2427 2433 ELSE … … 2934 2940 IF ( .NOT. humidity ) THEN 2935 2941 2936 IF ( ocean ) THEN2942 IF ( ocean_mode ) THEN 2937 2943 ! 2938 2944 !-- So far in the ocean no special treatment of density flux … … 3738 3744 IF ( .NOT. humidity ) THEN 3739 3745 3740 IF ( ocean ) THEN3746 IF ( ocean_mode ) THEN 3741 3747 ! 3742 3748 !-- So far in the ocean no special treatment of density flux in
Note: See TracChangeset
for help on using the changeset viewer.