1 | !> @file lpm_write_exchange_statistics.f90 |
---|
2 | !------------------------------------------------------------------------------! |
---|
3 | ! This file is part of the PALM model system. |
---|
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-2019 Leibniz Universitaet Hannover |
---|
18 | !------------------------------------------------------------------------------! |
---|
19 | ! |
---|
20 | ! Current revisions: |
---|
21 | ! ------------------ |
---|
22 | ! |
---|
23 | ! |
---|
24 | ! Former revisions: |
---|
25 | ! ----------------- |
---|
26 | ! $Id: lpm_write_exchange_statistics.f90 3655 2019-01-07 16:51:22Z suehring $ |
---|
27 | ! unused variables removed |
---|
28 | ! |
---|
29 | ! 2967 2018-04-13 11:22:08Z raasch |
---|
30 | ! nesting routine is only called if nesting is switched on |
---|
31 | ! bugfix: missing parallel cpp-directives added |
---|
32 | ! |
---|
33 | ! 2841 2018-02-27 15:02:57Z knoop |
---|
34 | ! Bugfix: wrong placement of include 'mpif.h' corrected, |
---|
35 | ! kinds module added and pegrid module scope restricted |
---|
36 | ! |
---|
37 | ! 2801 2018-02-14 16:01:55Z thiele |
---|
38 | ! Introduce particle transfer in nested models. |
---|
39 | ! |
---|
40 | ! 2718 2018-01-02 08:49:38Z maronga |
---|
41 | ! Corrected "Former revisions" section |
---|
42 | ! |
---|
43 | ! 2696 2017-12-14 17:12:51Z kanani |
---|
44 | ! Change in file header (GPL part) |
---|
45 | ! |
---|
46 | ! 2265 2017-06-08 16:58:28Z schwenkel |
---|
47 | ! Unused variables removed. |
---|
48 | ! |
---|
49 | ! 2101 2017-01-05 16:42:31Z suehring |
---|
50 | ! |
---|
51 | ! 2000 2016-08-20 18:09:15Z knoop |
---|
52 | ! Forced header and separation lines into 80 columns |
---|
53 | ! |
---|
54 | ! 1822 2016-04-07 07:49:42Z hoffmann |
---|
55 | ! Unused variables removed. |
---|
56 | ! |
---|
57 | ! 1682 2015-10-07 23:56:08Z knoop |
---|
58 | ! Code annotations made doxygen readable |
---|
59 | ! |
---|
60 | ! 1359 2014-04-11 17:15:14Z hoffmann |
---|
61 | ! New particle structure integrated. |
---|
62 | ! |
---|
63 | ! 1320 2014-03-20 08:40:49Z raasch |
---|
64 | ! ONLY-attribute added to USE-statements, |
---|
65 | ! comment fields (!:) to be used for variable explanations added to |
---|
66 | ! all variable declaration statements |
---|
67 | ! |
---|
68 | ! 1036 2012-10-22 13:43:42Z raasch |
---|
69 | ! code put under GPL (PALM 3.9) |
---|
70 | ! |
---|
71 | ! 849 2012-03-15 10:35:09Z raasch |
---|
72 | ! initial revision (former part of advec_particles) |
---|
73 | ! |
---|
74 | ! |
---|
75 | ! Description: |
---|
76 | ! ------------ |
---|
77 | !> Write particle statistics (total particle numbers and number of particles |
---|
78 | !> exchanged between subdomains) on ASCII file. |
---|
79 | !> |
---|
80 | !> @attention Output format of this file could be further improved! At current |
---|
81 | !> stage it is only a test output. |
---|
82 | !------------------------------------------------------------------------------! |
---|
83 | SUBROUTINE lpm_write_exchange_statistics |
---|
84 | |
---|
85 | #if defined( __parallel ) && !defined( __mpifh ) |
---|
86 | USE MPI |
---|
87 | #endif |
---|
88 | |
---|
89 | USE control_parameters, & |
---|
90 | ONLY: current_timestep_number, dt_3d, simulated_time |
---|
91 | |
---|
92 | USE indices, & |
---|
93 | ONLY: nxl, nxr, nys, nyn, nzb, nzt |
---|
94 | |
---|
95 | USE kinds |
---|
96 | |
---|
97 | USE particle_attributes, & |
---|
98 | ONLY: number_of_particles, prt_count, trlp_count_sum, & |
---|
99 | trlp_count_recv_sum, trnp_count_sum, trnp_count_recv_sum, & |
---|
100 | trrp_count_sum, trrp_count_recv_sum, trsp_count_sum, & |
---|
101 | trsp_count_recv_sum |
---|
102 | |
---|
103 | USE pmc_particle_interface, & |
---|
104 | ONLY: pmcp_g_print_number_of_particles |
---|
105 | |
---|
106 | USE pegrid, & |
---|
107 | ONLY: comm2d, ierr, pleft, pright, psouth, pnorth |
---|
108 | |
---|
109 | USE pmc_interface, & |
---|
110 | ONLY: nested_run |
---|
111 | |
---|
112 | IMPLICIT NONE |
---|
113 | |
---|
114 | #if defined( __parallel ) && defined( __mpifh ) |
---|
115 | INCLUDE "mpif.h" |
---|
116 | #endif |
---|
117 | |
---|
118 | INTEGER(iwp) :: ip !< |
---|
119 | INTEGER(iwp) :: jp !< |
---|
120 | INTEGER(iwp) :: kp !< |
---|
121 | INTEGER(iwp) :: tot_number_of_particles |
---|
122 | |
---|
123 | |
---|
124 | |
---|
125 | ! |
---|
126 | !-- Determine the current number of particles |
---|
127 | number_of_particles = 0 |
---|
128 | DO ip = nxl, nxr |
---|
129 | DO jp = nys, nyn |
---|
130 | DO kp = nzb+1, nzt |
---|
131 | number_of_particles = number_of_particles & |
---|
132 | + prt_count(kp,jp,ip) |
---|
133 | ENDDO |
---|
134 | ENDDO |
---|
135 | ENDDO |
---|
136 | |
---|
137 | CALL check_open( 80 ) |
---|
138 | #if defined( __parallel ) |
---|
139 | WRITE ( 80, 8000 ) current_timestep_number+1, simulated_time+dt_3d, & |
---|
140 | number_of_particles, pleft, trlp_count_sum, & |
---|
141 | trlp_count_recv_sum, pright, trrp_count_sum, & |
---|
142 | trrp_count_recv_sum, psouth, trsp_count_sum, & |
---|
143 | trsp_count_recv_sum, pnorth, trnp_count_sum, & |
---|
144 | trnp_count_recv_sum |
---|
145 | #else |
---|
146 | WRITE ( 80, 8000 ) current_timestep_number+1, simulated_time+dt_3d, & |
---|
147 | number_of_particles |
---|
148 | #endif |
---|
149 | CALL close_file( 80 ) |
---|
150 | |
---|
151 | IF ( number_of_particles > 0 ) THEN |
---|
152 | WRITE(9,*) 'number_of_particles ', number_of_particles, & |
---|
153 | current_timestep_number + 1, simulated_time + dt_3d |
---|
154 | ENDIF |
---|
155 | |
---|
156 | #if defined( __parallel ) |
---|
157 | CALL MPI_ALLREDUCE( number_of_particles, tot_number_of_particles, 1, & |
---|
158 | MPI_INTEGER, MPI_SUM, comm2d, ierr ) |
---|
159 | #else |
---|
160 | tot_number_of_particles = number_of_particles |
---|
161 | #endif |
---|
162 | |
---|
163 | IF ( nested_run ) THEN |
---|
164 | CALL pmcp_g_print_number_of_particles( simulated_time+dt_3d, & |
---|
165 | tot_number_of_particles) |
---|
166 | ENDIF |
---|
167 | |
---|
168 | ! |
---|
169 | !-- Formats |
---|
170 | 8000 FORMAT (I6,1X,F7.2,4X,I10,5X,4(I3,1X,I4,'/',I4,2X),6X,I10) |
---|
171 | |
---|
172 | |
---|
173 | END SUBROUTINE lpm_write_exchange_statistics |
---|