Changeset 3313 for palm/trunk/SOURCE/progress_bar_mod.f90
- Timestamp:
- Oct 6, 2018 3:22:48 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.