[1682] | 1 | !> @file run_control.f90 |
---|
[2000] | 2 | !------------------------------------------------------------------------------! |
---|
[2696] | 3 | ! This file is part of the PALM model system. |
---|
[1036] | 4 | ! |
---|
[2000] | 5 | ! PALM is free software: you can redistribute it and/or modify it under the |
---|
| 6 | ! terms of the GNU General Public License as published by the Free Software |
---|
| 7 | ! Foundation, either version 3 of the License, or (at your option) any later |
---|
| 8 | ! version. |
---|
[1036] | 9 | ! |
---|
| 10 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
| 11 | ! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
---|
| 12 | ! A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
---|
| 13 | ! |
---|
| 14 | ! You should have received a copy of the GNU General Public License along with |
---|
| 15 | ! PALM. If not, see <http://www.gnu.org/licenses/>. |
---|
| 16 | ! |
---|
[4360] | 17 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
[2000] | 18 | !------------------------------------------------------------------------------! |
---|
[1036] | 19 | ! |
---|
[484] | 20 | ! Current revisions: |
---|
[1] | 21 | ! ----------------- |
---|
[2001] | 22 | ! |
---|
| 23 | ! |
---|
[1321] | 24 | ! Former revisions: |
---|
| 25 | ! ----------------- |
---|
| 26 | ! $Id: run_control.f90 4360 2020-01-07 11:25:50Z Giersch $ |
---|
[2716] | 27 | ! Corrected "Former revisions" section |
---|
| 28 | ! |
---|
[4182] | 29 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
| 30 | ! Corrected "Former revisions" section |
---|
[1321] | 31 | ! |
---|
[4182] | 32 | ! Revision 1.1 1997/08/11 06:25:38 raasch |
---|
| 33 | ! Initial revision |
---|
| 34 | ! |
---|
| 35 | ! |
---|
[1] | 36 | ! Description: |
---|
| 37 | ! ------------ |
---|
[1682] | 38 | !> Computation and output of run-control quantities |
---|
[1] | 39 | !------------------------------------------------------------------------------! |
---|
[1682] | 40 | SUBROUTINE run_control |
---|
| 41 | |
---|
[1] | 42 | |
---|
[1320] | 43 | USE cpulog, & |
---|
| 44 | ONLY: cpu_log, log_point |
---|
| 45 | |
---|
| 46 | USE control_parameters, & |
---|
| 47 | ONLY: advected_distance_x, advected_distance_y, & |
---|
| 48 | current_timestep_number, disturbance_created, dt_3d, mgcycles, & |
---|
| 49 | run_control_header, runnr, simulated_time, simulated_time_chr, & |
---|
| 50 | timestep_reason |
---|
| 51 | |
---|
| 52 | USE indices, & |
---|
| 53 | ONLY: nzb |
---|
| 54 | |
---|
[1353] | 55 | USE kinds |
---|
| 56 | |
---|
[1] | 57 | USE pegrid |
---|
| 58 | |
---|
[1320] | 59 | USE statistics, & |
---|
| 60 | ONLY: flow_statistics_called, hom, pr_palm, u_max, u_max_ijk, v_max, & |
---|
| 61 | v_max_ijk, w_max, w_max_ijk |
---|
| 62 | |
---|
[1] | 63 | IMPLICIT NONE |
---|
| 64 | |
---|
[1001] | 65 | CHARACTER (LEN=1) :: disturb_chr |
---|
[1] | 66 | |
---|
| 67 | ! |
---|
| 68 | !-- If required, do statistics |
---|
| 69 | IF ( .NOT. flow_statistics_called ) CALL flow_statistics |
---|
| 70 | |
---|
| 71 | ! |
---|
| 72 | !-- Flow_statistics has its own cpu-time measurement |
---|
| 73 | CALL cpu_log( log_point(11), 'run_control', 'start' ) |
---|
| 74 | |
---|
| 75 | ! |
---|
| 76 | !-- Output |
---|
| 77 | IF ( myid == 0 ) THEN |
---|
| 78 | |
---|
| 79 | ! |
---|
| 80 | !-- Check, whether file unit is already open (may have been opened in header |
---|
| 81 | !-- before) |
---|
| 82 | CALL check_open( 15 ) |
---|
| 83 | |
---|
| 84 | ! |
---|
| 85 | !-- If required, write header |
---|
| 86 | IF ( .NOT. run_control_header ) THEN |
---|
| 87 | WRITE ( 15, 100 ) |
---|
| 88 | run_control_header = .TRUE. |
---|
| 89 | ENDIF |
---|
| 90 | |
---|
| 91 | ! |
---|
| 92 | !-- If required, set disturbance flag |
---|
| 93 | IF ( disturbance_created ) THEN |
---|
| 94 | disturb_chr = 'D' |
---|
| 95 | ELSE |
---|
| 96 | disturb_chr = ' ' |
---|
| 97 | ENDIF |
---|
| 98 | WRITE ( 15, 101 ) runnr, current_timestep_number, simulated_time_chr, & |
---|
[1697] | 99 | INT( ( simulated_time-INT( simulated_time ) ) * 100),& |
---|
| 100 | dt_3d, timestep_reason, u_max, disturb_chr, & |
---|
[87] | 101 | v_max, disturb_chr, w_max, hom(nzb,1,pr_palm,0), & |
---|
| 102 | hom(nzb+8,1,pr_palm,0), hom(nzb+3,1,pr_palm,0), & |
---|
| 103 | hom(nzb+6,1,pr_palm,0), hom(nzb+4,1,pr_palm,0), & |
---|
| 104 | hom(nzb+5,1,pr_palm,0), hom(nzb+9,1,pr_palm,0), & |
---|
| 105 | hom(nzb+10,1,pr_palm,0), u_max_ijk(1:3), & |
---|
[1] | 106 | v_max_ijk(1:3), w_max_ijk(1:3), & |
---|
[1353] | 107 | advected_distance_x/1000.0_wp, & |
---|
| 108 | advected_distance_y/1000.0_wp, mgcycles |
---|
[1] | 109 | ! |
---|
| 110 | !-- Write buffer contents to disc immediately |
---|
[1808] | 111 | FLUSH( 15 ) |
---|
[82] | 112 | |
---|
[1] | 113 | ENDIF |
---|
| 114 | ! |
---|
| 115 | !-- If required, reset disturbance flag. This has to be done outside the above |
---|
| 116 | !-- IF-loop, because the flag would otherwise only be reset on PE0 |
---|
| 117 | IF ( disturbance_created ) disturbance_created = .FALSE. |
---|
| 118 | |
---|
| 119 | CALL cpu_log( log_point(11), 'run_control', 'stop' ) |
---|
| 120 | |
---|
| 121 | ! |
---|
| 122 | !-- Formats |
---|
| 123 | 100 FORMAT (///'Run-control output:'/ & |
---|
| 124 | &'------------------'// & |
---|
[97] | 125 | &'RUN ITER. HH:MM:SS.SS DT(E) UMAX VMAX WMAX U', & |
---|
[1257] | 126 | &'* W* THETA* Z_I ENERG. DISTENERG DIVOLD ', & |
---|
| 127 | &' DIVNEW UMAX(KJI) VMAX(KJI) WMAX(KJI) ADVECX ADVEC', & |
---|
| 128 | &'Y MGCYC'/ & |
---|
[97] | 129 | &'----------------------------------------------------------------', & |
---|
| 130 | &'----------------------------------------------------------------', & |
---|
| 131 | &'----------------------------------------------------------------', & |
---|
[1257] | 132 | &'---------') |
---|
[1697] | 133 | 101 FORMAT (I3,1X,I6,1X,A8,'.',I2.2,1X,F8.4,A1,1X,F8.4,A1,F8.4,A1,F8.4,1X, & |
---|
| 134 | F6.3,1X,F5.2, & |
---|
[1257] | 135 | 2X,E10.3,2X,F6.0,1X,4(E10.3,1X),3(3(I4),1X),F8.3,1X,F8.3,5X,I3) |
---|
[1] | 136 | |
---|
| 137 | END SUBROUTINE run_control |
---|