Changeset 3313 for palm/trunk/SOURCE
- Timestamp:
- Oct 6, 2018 3:22:48 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/parin.f90
r3298 r3313 307 307 ! 308 308 ! 1402 2014-05-09 14:25:13Z raasch 309 ! location messages modified, batch_jobincluded in envpar-NAMELIST309 ! location messages modified, progress_bar_disabled included in envpar-NAMELIST 310 310 ! 311 311 ! 1384 2014-05-02 14:31:06Z raasch … … 495 495 496 496 USE progress_bar, & 497 ONLY : batch_job497 ONLY : progress_bar_disabled 498 498 499 499 USE radiation_model_mod, & … … 722 722 termination_time_needed, vnest_start_time 723 723 724 NAMELIST /envpar/ batch_job, host, local_dvrserver_running,&724 NAMELIST /envpar/ progress_bar_disabled, host, local_dvrserver_running, & 725 725 maximum_cpu_time_allowed, maximum_parallel_io_streams, & 726 726 read_svf, revision, run_identifier, tasks_per_node, & -
palm/trunk/SOURCE/progress_bar_mod.f90
r3232 r3313 80 80 81 81 PRIVATE 82 PUBLIC batch_job, finish_progress_bar, output_progress_bar82 PUBLIC progress_bar_disabled, finish_progress_bar, output_progress_bar 83 83 84 84 CHARACTER(LEN=60) :: bar !< progress bar, initially filled with "_" … … 87 87 INTEGER(iwp) :: ilength !< length of progress bar filled with "X" 88 88 89 LOGICAL :: batch_job = .FALSE. !< switch to determine the run mode89 LOGICAL :: progress_bar_disabled = .FALSE. !< envpar-Namelist switch 90 90 91 91 REAL(wp) :: time_to_be_simulated !< in sec … … 121 121 ENDIF 122 122 123 IF ( batch_job) THEN123 IF ( progress_bar_disabled ) THEN 124 124 125 125 CALL check_open ( 117 ) … … 183 183 ! 184 184 !-- In batch mode, use a file (PROGRESS), otherwise use progress bar 185 IF ( batch_job) THEN185 IF ( progress_bar_disabled ) THEN 186 186 187 187 BACKSPACE ( 117 ) … … 226 226 IMPLICIT NONE 227 227 228 IF ( batch_job) THEN228 IF ( progress_bar_disabled ) THEN 229 229 230 230 CALL close_file ( 117 )
Note: See TracChangeset
for help on using the changeset viewer.