source: palm/trunk/SOURCE/run_control.f90 @ 1320

Last change on this file since 1320 was 1320, checked in by raasch, 10 years ago

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

  • Property svn:keywords set to Id
File size: 5.4 KB
RevLine 
[1]1 SUBROUTINE run_control
2
[1036]3!--------------------------------------------------------------------------------!
4! This file is part of PALM.
5!
6! PALM is free software: you can redistribute it and/or modify it under the terms
7! of the GNU General Public License as published by the Free Software Foundation,
8! either version 3 of the License, or (at your option) any later version.
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!
[1310]17! Copyright 1997-2014 Leibniz Universitaet Hannover
[1036]18!--------------------------------------------------------------------------------!
19!
[484]20! Current revisions:
[1]21! -----------------
[1320]22! ONLY-attribute added to USE-statements,
23! kind-parameters added to all INTEGER and REAL declaration statements,
24! kinds are defined in new module kinds,
25! old module precision_kind is removed,
26! revision history before 2012 removed,
27! comment fields (!:) to be used for variable explanations added to
28! all variable declaration statements
[1]29!
30! Former revisions:
31! -----------------
[3]32! $Id: run_control.f90 1320 2014-03-20 08:40:49Z raasch $
[83]33!
[1319]34! 1318 2014-03-17 13:35:16Z raasch
35! module interfaces removed
36!
[1258]37! 1257 2013-11-08 15:18:40Z raasch
38! output format for theta* changed to avoid output of *****
39!
[1037]40! 1036 2012-10-22 13:43:42Z raasch
41! code put under GPL (PALM 3.9)
42!
[1002]43! 1001 2012-09-13 14:08:46Z raasch
44! all actions concerning leapfrog scheme removed
45!
[1]46! Revision 1.1  1997/08/11 06:25:38  raasch
47! Initial revision
48!
49!
50! Description:
51! ------------
52! Computation and output of run-control quantities
53!------------------------------------------------------------------------------!
54
[1320]55    USE cpulog,                                                                &
56        ONLY:  cpu_log, log_point
57
58    USE control_parameters,                                                    &
59        ONLY:  advected_distance_x, advected_distance_y,                       &
60               current_timestep_number, disturbance_created, dt_3d, mgcycles,  &
61               run_control_header, runnr, simulated_time, simulated_time_chr,  &
62               timestep_reason
63
64    USE indices,                                                               &
65        ONLY:  nzb
66
[1]67    USE pegrid
68
[1320]69    USE statistics,                                                            &
70        ONLY:  flow_statistics_called, hom, pr_palm, u_max, u_max_ijk, v_max,  &
71               v_max_ijk, w_max, w_max_ijk
72
[1]73    IMPLICIT NONE
74
[1001]75    CHARACTER (LEN=1) ::  disturb_chr
[1]76
77!
78!-- If required, do statistics
79    IF ( .NOT. flow_statistics_called )  CALL flow_statistics
80
81!
82!-- Flow_statistics has its own cpu-time measurement
83    CALL cpu_log( log_point(11), 'run_control', 'start' )
84
85!
86!-- Output
87    IF ( myid == 0 )  THEN
88
89!
90!--    Check, whether file unit is already open (may have been opened in header
91!--    before)
92       CALL check_open( 15 )
93
94!
95!--    If required, write header
96       IF ( .NOT. run_control_header )  THEN
97          WRITE ( 15, 100 )
98          run_control_header = .TRUE.
99       ENDIF
100
101!
102!--    If required, set disturbance flag
103       IF ( disturbance_created )  THEN
104          disturb_chr = 'D'
105       ELSE
106          disturb_chr = ' '
107       ENDIF
108       WRITE ( 15, 101 )  runnr, current_timestep_number, simulated_time_chr,  &
109                          simulated_time-INT( simulated_time ), dt_3d,         &
[1001]110                          timestep_reason, u_max, disturb_chr,                 &
[87]111                          v_max, disturb_chr, w_max, hom(nzb,1,pr_palm,0),     &
112                          hom(nzb+8,1,pr_palm,0), hom(nzb+3,1,pr_palm,0),      &
113                          hom(nzb+6,1,pr_palm,0), hom(nzb+4,1,pr_palm,0),      &
114                          hom(nzb+5,1,pr_palm,0), hom(nzb+9,1,pr_palm,0),      &
115                          hom(nzb+10,1,pr_palm,0), u_max_ijk(1:3),             &
[1]116                          v_max_ijk(1:3), w_max_ijk(1:3),                      &
117                          advected_distance_x/1000.0,                          &
118                          advected_distance_y/1000.0, mgcycles
119!
120!--    Write buffer contents to disc immediately
[82]121       CALL local_flush( 15 )
122
[1]123    ENDIF
124!
125!-- If required, reset disturbance flag. This has to be done outside the above
126!-- IF-loop, because the flag would otherwise only be reset on PE0
127    IF ( disturbance_created )  disturbance_created = .FALSE.
128
129    CALL cpu_log( log_point(11), 'run_control', 'stop' )
130
131!
132!-- Formats
133100 FORMAT (///'Run-control output:'/ &
134              &'------------------'// &
[97]135          &'RUN  ITER. HH:MM:SS.SS    DT(E)     UMAX     VMAX     WMAX     U', &
[1257]136          &'*    W*      THETA*     Z_I     ENERG.   DISTENERG    DIVOLD    ', &
137          &' DIVNEW     UMAX(KJI)    VMAX(KJI)    WMAX(KJI)   ADVECX   ADVEC', &
138          &'Y   MGCYC'/                                                        &
[97]139          &'----------------------------------------------------------------', &
140          &'----------------------------------------------------------------', &
141          &'----------------------------------------------------------------', &
[1257]142          &'---------')
[1001]143101 FORMAT (I3,1X,I6,1X,A8,F3.2,1X,F8.4,A1,1X,F8.4,A1,F8.4,A1,F8.4,2X,F5.3,2X, &
[1]144            F4.2, &
[1257]145            2X,E10.3,2X,F6.0,1X,4(E10.3,1X),3(3(I4),1X),F8.3,1X,F8.3,5X,I3)
[1]146
147 END SUBROUTINE run_control
Note: See TracBrowser for help on using the repository browser.