Changeset 4843 for palm/trunk/SOURCE/lagrangian_particle_model_mod.f90
- Timestamp:
- Jan 15, 2021 3:22:11 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/lagrangian_particle_model_mod.f90
r4842 r4843 24 24 ! ----------------- 25 25 ! $Id$ 26 ! local namelist parameter added to switch off the module although the respective module namelist 27 ! appears in the namelist file 28 ! 29 ! 4842 2021-01-14 10:42:28Z raasch 26 30 ! reading of namelist file and actions in case of namelist errors revised so that statement labels 27 31 ! and goto statements are not required any more, … … 577 581 578 582 INTEGER(iwp) :: io_status !< status after reading the namelist file 583 584 LOGICAL :: switch_off_module = .FALSE. !< local namelist parameter to switch off the module 585 !< although the respective module namelist appears in 586 !< the namelist file 579 587 580 588 NAMELIST /particle_parameters/ & … … 638 646 splitting_mode, & 639 647 step_dealloc, & 648 switch_off_module, & 640 649 unlimited_dimension, & 641 650 use_sgs_for_particles, & … … 655 664 !-- particle_parameters namelist was found and read correctly. Set flag that indicates that 656 665 !-- particles are switched on. 657 particle_advection = .TRUE.666 IF ( .NOT. switch_off_module ) particle_advection = .TRUE. 658 667 659 668 ELSEIF ( io_status > 0 ) THEN
Note: See TracChangeset
for help on using the changeset viewer.