- Timestamp:
- Apr 20, 2020 3:37:15 PM (5 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/dynamics_mod.f90
r4495 r4505 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Add flag for saturation check 28 ! 29 ! 4495 2020-04-13 20:11:20Z resler 27 30 ! restart data handling with MPI-IO added 28 31 ! … … 80 83 bc_q_t_val, & 81 84 bc_s_t_val, & 85 check_realistic_q, & 82 86 child_domain, & 83 87 coupling_mode, & … … 497 501 !-- for a restart run. In case there are no cloud physics considered, the mixing ratio can exceed 498 502 !-- the saturation moisture. This case a warning is given. 499 IF ( humidity .AND. .NOT. neutral ) THEN503 IF ( humidity .AND. .NOT. neutral .AND. check_realistic_q ) THEN 500 504 DO i = nxl, nxr 501 505 DO j = nys, nyn -
palm/trunk/SOURCE/modules.f90
r4502 r4505 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Add flag for saturation check 28 ! 29 ! 4502 2020-04-17 16:14:16Z raasch 27 30 ! Implementation of ice microphysics 28 31 ! … … 746 749 LOGICAL :: calc_soil_moisture_during_spinup = .FALSE. !< namelist parameter 747 750 LOGICAL :: call_psolver_at_all_substeps = .TRUE. !< namelist parameter 751 LOGICAL :: check_realistic_q = .TRUE. !< namelist parameter 748 752 LOGICAL :: child_domain = .FALSE. !< flag indicating that model is nested in a parent domain 749 753 LOGICAL :: cloud_droplets = .FALSE. !< namelist parameter -
palm/trunk/SOURCE/parin.f90
r4495 r4505 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Add flag for saturation check 28 ! 29 ! 4495 2020-04-13 20:11:20Z raasch 27 30 ! restart data handling with MPI-IO added 28 31 ! … … 163 166 canyon_height, & 164 167 canyon_width_x, canyon_width_y, canyon_wall_left, & 165 canyon_wall_south, cfl_factor, c loud_droplets,&168 canyon_wall_south, cfl_factor, check_realistic_q, cloud_droplets, & 166 169 collective_wait, complex_terrain, & 167 170 conserve_volume_flow, & … … 235 238 canyon_height, & 236 239 canyon_width_x, canyon_width_y, canyon_wall_left, & 237 canyon_wall_south, cfl_factor, c loud_droplets,&240 canyon_wall_south, cfl_factor, check_realistic_q, cloud_droplets, & 238 241 collective_wait, complex_terrain, & 239 242 conserve_volume_flow, &
Note: See TracChangeset
for help on using the changeset viewer.