Changeset 4843 for palm/trunk/SOURCE/chemistry_model_mod.f90
- Timestamp:
- Jan 15, 2021 3:22:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/chemistry_model_mod.f90
r4833 r4843 26 26 ! ----------------- 27 27 ! $Id$ 28 ! local namelist parameter added to switch off the module although the respective module namelist 29 ! appears in the namelist file 30 ! 31 ! 4833 2021-01-07 08:57:54Z raasch 28 32 ! openmp bugfix for time measurements of non advective processes 29 33 ! … … 2506 2510 USE chem_modules 2507 2511 USE control_parameters 2508 2509 2512 USE pegrid 2510 2513 USE statistics 2511 2512 2514 2513 2515 CHARACTER(LEN=100) :: line !< dummy string that contains the current … … 2518 2520 INTEGER(iwp) :: io_status !< Status after reading the namelist file 2519 2521 INTEGER(iwp) :: max_pr_cs_tmp !< 2522 2523 LOGICAL :: switch_off_module = .FALSE. !< local namelist parameter to switch off the module 2524 !< although the respective module namelist appears in 2525 !< the namelist file 2520 2526 2521 2527 REAL(wp), DIMENSION(nmaxfixsteps) :: my_steps !< List of fixed timesteps my_step(1) = 0.0 … … 2564 2570 surface_csflux, & 2565 2571 surface_csflux_name, & 2572 switch_off_module, & 2566 2573 time_fac_type 2567 2574 ! … … 2594 2601 ! 2595 2602 ! chemistry_parameters namelist was found and read correctly. Switch on chemistry model. 2596 air_chemistry = .TRUE.2603 IF ( .NOT. switch_off_module ) air_chemistry = .TRUE. 2597 2604 2598 2605 ELSEIF ( io_status > 0 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.