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

Last change on this file since 1698 was 1698, checked in by raasch, 8 years ago

last commit documented
example_cbl_rc updated

  • Property svn:keywords set to Id
File size: 5.8 KB
Line 
1!> @file run_control.f90
2!--------------------------------------------------------------------------------!
3! This file is part of PALM.
4!
5! PALM is free software: you can redistribute it and/or modify it under the terms
6! of the GNU General Public License as published by the Free Software Foundation,
7! either version 3 of the License, or (at your option) any later version.
8!
9! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12!
13! You should have received a copy of the GNU General Public License along with
14! PALM. If not, see <http://www.gnu.org/licenses/>.
15!
16! Copyright 1997-2014 Leibniz Universitaet Hannover
17!--------------------------------------------------------------------------------!
18!
19! Current revisions:
20! -----------------
21!
22!
23! Former revisions:
24! -----------------
25! $Id: run_control.f90 1698 2015-10-28 17:26:17Z raasch $
26!
27! 1697 2015-10-28 17:14:10Z raasch
28! small E- and F-FORMAT changes to avoid informative compiler messages about
29! insufficient field width
30!
31! 1682 2015-10-07 23:56:08Z knoop
32! Code annotations made doxygen readable
33!
34! 1353 2014-04-08 15:21:23Z heinze
35! REAL constants provided with KIND-attribute
36!
37! 1320 2014-03-20 08:40:49Z raasch
38! ONLY-attribute added to USE-statements,
39! kind-parameters added to all INTEGER and REAL declaration statements,
40! kinds are defined in new module kinds,
41! old module precision_kind is removed,
42! revision history before 2012 removed,
43! comment fields (!:) to be used for variable explanations added to
44! all variable declaration statements
45!
46! 1318 2014-03-17 13:35:16Z raasch
47! module interfaces removed
48!
49! 1257 2013-11-08 15:18:40Z raasch
50! output format for theta* changed to avoid output of *****
51!
52! 1036 2012-10-22 13:43:42Z raasch
53! code put under GPL (PALM 3.9)
54!
55! 1001 2012-09-13 14:08:46Z raasch
56! all actions concerning leapfrog scheme removed
57!
58! Revision 1.1  1997/08/11 06:25:38  raasch
59! Initial revision
60!
61!
62! Description:
63! ------------
64!> Computation and output of run-control quantities
65!------------------------------------------------------------------------------!
66 SUBROUTINE run_control
67 
68
69    USE cpulog,                                                                &
70        ONLY:  cpu_log, log_point
71
72    USE control_parameters,                                                    &
73        ONLY:  advected_distance_x, advected_distance_y,                       &
74               current_timestep_number, disturbance_created, dt_3d, mgcycles,  &
75               run_control_header, runnr, simulated_time, simulated_time_chr,  &
76               timestep_reason
77
78    USE indices,                                                               &
79        ONLY:  nzb
80
81    USE kinds
82
83    USE pegrid
84
85    USE statistics,                                                            &
86        ONLY:  flow_statistics_called, hom, pr_palm, u_max, u_max_ijk, v_max,  &
87               v_max_ijk, w_max, w_max_ijk
88
89    IMPLICIT NONE
90
91    CHARACTER (LEN=1) ::  disturb_chr
92
93!
94!-- If required, do statistics
95    IF ( .NOT. flow_statistics_called )  CALL flow_statistics
96
97!
98!-- Flow_statistics has its own cpu-time measurement
99    CALL cpu_log( log_point(11), 'run_control', 'start' )
100
101!
102!-- Output
103    IF ( myid == 0 )  THEN
104
105!
106!--    Check, whether file unit is already open (may have been opened in header
107!--    before)
108       CALL check_open( 15 )
109
110!
111!--    If required, write header
112       IF ( .NOT. run_control_header )  THEN
113          WRITE ( 15, 100 )
114          run_control_header = .TRUE.
115       ENDIF
116
117!
118!--    If required, set disturbance flag
119       IF ( disturbance_created )  THEN
120          disturb_chr = 'D'
121       ELSE
122          disturb_chr = ' '
123       ENDIF
124       WRITE ( 15, 101 )  runnr, current_timestep_number, simulated_time_chr,  &
125                          INT( ( simulated_time-INT( simulated_time ) ) * 100),&
126                          dt_3d, timestep_reason, u_max, disturb_chr,          &
127                          v_max, disturb_chr, w_max, hom(nzb,1,pr_palm,0),     &
128                          hom(nzb+8,1,pr_palm,0), hom(nzb+3,1,pr_palm,0),      &
129                          hom(nzb+6,1,pr_palm,0), hom(nzb+4,1,pr_palm,0),      &
130                          hom(nzb+5,1,pr_palm,0), hom(nzb+9,1,pr_palm,0),      &
131                          hom(nzb+10,1,pr_palm,0), u_max_ijk(1:3),             &
132                          v_max_ijk(1:3), w_max_ijk(1:3),                      &
133                          advected_distance_x/1000.0_wp,                       &
134                          advected_distance_y/1000.0_wp, mgcycles
135!
136!--    Write buffer contents to disc immediately
137       CALL local_flush( 15 )
138
139    ENDIF
140!
141!-- If required, reset disturbance flag. This has to be done outside the above
142!-- IF-loop, because the flag would otherwise only be reset on PE0
143    IF ( disturbance_created )  disturbance_created = .FALSE.
144
145    CALL cpu_log( log_point(11), 'run_control', 'stop' )
146
147!
148!-- Formats
149100 FORMAT (///'Run-control output:'/ &
150              &'------------------'// &
151          &'RUN  ITER. HH:MM:SS.SS    DT(E)     UMAX     VMAX     WMAX     U', &
152          &'*    W*      THETA*     Z_I     ENERG.   DISTENERG    DIVOLD    ', &
153          &' DIVNEW     UMAX(KJI)    VMAX(KJI)    WMAX(KJI)   ADVECX   ADVEC', &
154          &'Y   MGCYC'/                                                        &
155          &'----------------------------------------------------------------', &
156          &'----------------------------------------------------------------', &
157          &'----------------------------------------------------------------', &
158          &'---------')
159101 FORMAT (I3,1X,I6,1X,A8,'.',I2.2,1X,F8.4,A1,1X,F8.4,A1,F8.4,A1,F8.4,1X,     &
160            F6.3,1X,F5.2, &
161            2X,E10.3,2X,F6.0,1X,4(E10.3,1X),3(3(I4),1X),F8.3,1X,F8.3,5X,I3)
162
163 END SUBROUTINE run_control
Note: See TracBrowser for help on using the repository browser.