Changeset 4505 for palm/trunk/SOURCE


Ignore:
Timestamp:
Apr 20, 2020 3:37:15 PM (4 years ago)
Author:
schwenkel
Message:

Add flag for saturation check

Location:
palm/trunk/SOURCE
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/dynamics_mod.f90

    r4495 r4505  
    2525! -----------------
    2626! $Id$
     27! Add flag for saturation check
     28!
     29! 4495 2020-04-13 20:11:20Z resler
    2730! restart data handling with MPI-IO added
    2831!
     
    8083               bc_q_t_val, &
    8184               bc_s_t_val, &
     85               check_realistic_q, &
    8286               child_domain, &
    8387               coupling_mode, &
     
    497501!-- for a restart run. In case there are no cloud physics considered, the mixing ratio can exceed
    498502!-- the saturation moisture. This case a warning is given.
    499     IF ( humidity  .AND.  .NOT. neutral )  THEN
     503    IF ( humidity  .AND.  .NOT. neutral  .AND.  check_realistic_q )  THEN
    500504       DO  i = nxl, nxr
    501505          DO  j = nys, nyn
  • palm/trunk/SOURCE/modules.f90

    r4502 r4505  
    2525! -----------------
    2626! $Id$
     27! Add flag for saturation check
     28!
     29! 4502 2020-04-17 16:14:16Z raasch
    2730! Implementation of ice microphysics
    2831!
     
    746749    LOGICAL ::  calc_soil_moisture_during_spinup = .FALSE.       !< namelist parameter
    747750    LOGICAL ::  call_psolver_at_all_substeps = .TRUE.            !< namelist parameter
     751    LOGICAL ::  check_realistic_q = .TRUE.                       !< namelist parameter
    748752    LOGICAL ::  child_domain  = .FALSE.                          !< flag indicating that model is nested in a parent domain
    749753    LOGICAL ::  cloud_droplets = .FALSE.                         !< namelist parameter
  • palm/trunk/SOURCE/parin.f90

    r4495 r4505  
    2525! -----------------
    2626! $Id$
     27! Add flag for saturation check
     28!
     29! 4495 2020-04-13 20:11:20Z raasch
    2730! restart data handling with MPI-IO added
    2831!
     
    163166             canyon_height,                                                    &
    164167             canyon_width_x, canyon_width_y, canyon_wall_left,                 &
    165              canyon_wall_south, cfl_factor, cloud_droplets,  &
     168             canyon_wall_south, cfl_factor, check_realistic_q, cloud_droplets, &
    166169             collective_wait, complex_terrain,           &
    167170             conserve_volume_flow,                                             &
     
    235238             canyon_height,                                                    &
    236239             canyon_width_x, canyon_width_y, canyon_wall_left,                 &
    237              canyon_wall_south, cfl_factor, cloud_droplets,                    &
     240             canyon_wall_south, cfl_factor, check_realistic_q, cloud_droplets, &
    238241             collective_wait, complex_terrain,                                 &
    239242             conserve_volume_flow,                                             &
Note: See TracChangeset for help on using the changeset viewer.