source: palm/trunk/SOURCE/lpm_write_exchange_statistics.f90 @ 2338

Last change on this file since 2338 was 2265, checked in by schwenkel, 7 years ago

unused variables removed

  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1!> @file lpm_write_exchange_statistics.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
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.
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!
17! Copyright 1997-2017 Leibniz Universitaet Hannover
18!------------------------------------------------------------------------------!
19!
20! Current revisions:
21! ------------------
22!
23!
24! Former revisions:
25! -----------------
26! $Id: lpm_write_exchange_statistics.f90 2265 2017-06-08 16:58:28Z gronemeier $
27! Unused variables removed.
28!
29! 2101 2017-01-05 16:42:31Z suehring
30!
31! 2000 2016-08-20 18:09:15Z knoop
32! Forced header and separation lines into 80 columns
33!
34! 1822 2016-04-07 07:49:42Z hoffmann
35! Unused variables removed.
36!
37! 1682 2015-10-07 23:56:08Z knoop
38! Code annotations made doxygen readable
39!
40! 1359 2014-04-11 17:15:14Z hoffmann
41! New particle structure integrated.
42!
43! 1320 2014-03-20 08:40:49Z raasch
44! ONLY-attribute added to USE-statements,
45! comment fields (!:) to be used for variable explanations added to
46! all variable declaration statements
47!
48! 1036 2012-10-22 13:43:42Z raasch
49! code put under GPL (PALM 3.9)
50!
51! 849 2012-03-15 10:35:09Z raasch
52! initial revision (former part of advec_particles)
53!
54!
55! Description:
56! ------------
57!> Write particle statistics (total particle numbers and number of particles
58!> exchanged between subdomains) on ASCII file.
59!>
60!> @attention Output format of this file could be further improved! At current
61!>            stage it is only a test output.
62!------------------------------------------------------------------------------!
63 SUBROUTINE lpm_write_exchange_statistics
64 
65
66    USE control_parameters,                                                    &
67        ONLY:  current_timestep_number, dt_3d, simulated_time
68
69    USE indices,                                                               &
70        ONLY:  nxl, nxr, nys, nyn, nzb, nzt
71
72    USE particle_attributes,                                                   &
73        ONLY:  grid_particles,  number_of_particles, prt_count,                &
74               trlp_count_sum, trlp_count_recv_sum, trnp_count_sum,            &
75               trnp_count_recv_sum, trrp_count_sum, trrp_count_recv_sum,       &
76               trsp_count_sum, trsp_count_recv_sum
77
78    USE pegrid
79
80    IMPLICIT NONE
81
82    INTEGER(iwp) :: ip         !<
83    INTEGER(iwp) :: jp         !<
84    INTEGER(iwp) :: kp         !<
85
86!
87!-- Determine the current number of particles
88    number_of_particles         = 0
89    DO  ip = nxl, nxr
90       DO  jp = nys, nyn
91          DO  kp = nzb+1, nzt
92             number_of_particles = number_of_particles                         &
93                                     + prt_count(kp,jp,ip)
94          ENDDO
95       ENDDO
96    ENDDO
97
98    CALL check_open( 80 )
99#if defined( __parallel )
100    WRITE ( 80, 8000 )  current_timestep_number+1, simulated_time+dt_3d, &
101                        number_of_particles, pleft, trlp_count_sum,      &
102                        trlp_count_recv_sum, pright, trrp_count_sum,     &
103                        trrp_count_recv_sum, psouth, trsp_count_sum,     &
104                        trsp_count_recv_sum, pnorth, trnp_count_sum,     &
105                        trnp_count_recv_sum
106    CALL close_file( 80 )
107#else
108    WRITE ( 80, 8000 )  current_timestep_number+1, simulated_time+dt_3d, &
109                        number_of_particles
110#endif
111
112!
113!-- Formats
1148000 FORMAT (I6,1X,F7.2,4X,I10,5X,4(I3,1X,I4,'/',I4,2X),6X,I10)
115
116
117 END SUBROUTINE lpm_write_exchange_statistics
Note: See TracBrowser for help on using the repository browser.