source: palm/trunk/SOURCE/lpm_data_output_particles.f90 @ 1783

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

NetCDF routines modularized; new parameter netcdf_deflate; further changes in the pmc

  • Property svn:keywords set to Id
File size: 9.8 KB
RevLine 
[1682]1!> @file lpm_data_output_particles.f90
[1036]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!
[1310]16! Copyright 1997-2014 Leibniz Universitaet Hannover
[1036]17!--------------------------------------------------------------------------------!
18!
[849]19! Current revisions:
20! ------------------
[1783]21! name change of netcdf routines and module + related changes
[1329]22!
[849]23! Former revisions:
24! -----------------
25! $Id: lpm_data_output_particles.f90 1783 2016-03-06 18:36:17Z raasch $
26!
[1683]27! 1682 2015-10-07 23:56:08Z knoop
28! Code annotations made doxygen readable
29!
[1360]30! 1359 2014-04-11 17:15:14Z hoffmann
31! netCDF output currently not available
32! output of particle data in binary format adopted to new particle structure
33!
[1329]34! 1327 2014-03-21 11:00:16Z raasch
35! -netcdf output queries
36!
[1321]37! 1320 2014-03-20 08:40:49Z raasch
38! ONLY-attribute added to USE-statements,
39! revision history before 2012 removed
40!
[1037]41! 1036 2012-10-22 13:43:42Z raasch
42! code put under GPL (PALM 3.9)
43!
[850]44! 849 2012-03-15 10:35:09Z raasch
45! initial revision (former part of advec_particles)
46!
[849]47! 22/02/12 - Initial version
48!
49! Description:
50! ------------
[1682]51!> Write particle data in FORTRAN binary and/or netCDF format
[849]52!------------------------------------------------------------------------------!
[1682]53 SUBROUTINE lpm_data_output_particles
54 
[849]55
[1320]56    USE control_parameters,                                                    &
[1327]57        ONLY:  prt_time_count, simulated_time
[1320]58
59    USE cpulog,                                                                &
60        ONLY:  cpu_log, log_point_s
61
[1359]62    USE indices,                                                               &
63        ONLY:  nxl, nxr, nyn, nys, nzb, nzt
64
65    USE kinds
66
[1783]67    USE netcdf_interface,                                                      &
68        ONLY:  nc_stat
[849]69
[1320]70    USE particle_attributes,                                                   &
[1359]71        ONLY:  grid_particles, maximum_number_of_particles,                    &
72               maximum_number_of_tailpoints, maximum_number_of_tails,          &
73               number_of_particles, number_of_tails, particles,                &
74               particle_tail_coordinates, prt_count
[1320]75
[849]76    IMPLICIT NONE
77
[1682]78    INTEGER(iwp) ::  ip !<
79    INTEGER(iwp) ::  jp !<
80    INTEGER(iwp) ::  kp !<
[849]81
82    CALL cpu_log( log_point_s(40), 'lpm_data_output', 'start' )
83
84!
85!-- Attention: change version number for unit 85 (in routine check_open)
86!--            whenever the output format for this unit is changed!
87    CALL check_open( 85 )
88
[1359]89    WRITE ( 85 )  simulated_time
90    WRITE ( 85 )  prt_count
91         
92    DO  ip = nxl, nxr
93       DO  jp = nys, nyn
94          DO  kp = nzb+1, nzt
95             number_of_particles = prt_count(kp,jp,ip)
96             particles => grid_particles(kp,jp,ip)%particles(1:number_of_particles)
97             IF ( number_of_particles <= 0 )  CYCLE
98             WRITE ( 85 )  particles
99          ENDDO
100       ENDDO
101    ENDDO
102!
103!-- particle tails currently not available
104!    WRITE ( 85 )  maximum_number_of_tailpoints, maximum_number_of_tails, &
105!                  number_of_tails
106!    IF ( maximum_number_of_tails > 0 )  THEN
107!       WRITE ( 85 )  particle_tail_coordinates, prt_time_count
108!    ENDIF
[849]109
110    CALL close_file( 85 )
111
112
113#if defined( __netcdf )
[1359]114! !
115! !-- Output in netCDF format
116!     CALL check_open( 108 )
117!
118! !
119! !-- Update the NetCDF time axis
120!     prt_time_count = prt_time_count + 1
121!
122!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_time_prt, &
123!                             (/ simulated_time /),        &
124!                             start = (/ prt_time_count /), count = (/ 1 /) )
[1783]125!     CALL netcdf_handle_error( 'lpm_data_output_particles', 1 )
[1359]126!
127! !
128! !-- Output the real number of particles used
129!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_rnop_prt, &
130!                             (/ number_of_particles /),   &
131!                             start = (/ prt_time_count /), count = (/ 1 /) )
[1783]132!     CALL netcdf_handle_error( 'lpm_data_output_particles', 2 )
[1359]133!
134! !
135! !-- Output all particle attributes
136!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(1), particles%age,      &
137!                             start = (/ 1, prt_time_count /),               &
138!                             count = (/ maximum_number_of_particles /) )
[1783]139!     CALL netcdf_handle_error( 'lpm_data_output_particles', 3 )
[1359]140!
141!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(2), particles%dvrp_psize,&
142!                             start = (/ 1, prt_time_count /),                &
143!                             count = (/ maximum_number_of_particles /) )
[1783]144!     CALL netcdf_handle_error( 'lpm_data_output_particles', 4 )
[1359]145!
146!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(3), particles%origin_x, &
147!                             start = (/ 1, prt_time_count /),               &
148!                             count = (/ maximum_number_of_particles /) )
[1783]149!     CALL netcdf_handle_error( 'lpm_data_output_particles', 5 )
[1359]150!
151!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(4), particles%origin_y, &
152!                             start = (/ 1, prt_time_count /),               &
153!                             count = (/ maximum_number_of_particles /) )
[1783]154!     CALL netcdf_handle_error( 'lpm_data_output_particles', 6 )
[1359]155!
156!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(5), particles%origin_z, &
157!                             start = (/ 1, prt_time_count /),               &
158!                             count = (/ maximum_number_of_particles /) )
[1783]159!     CALL netcdf_handle_error( 'lpm_data_output_particles', 7 )
[1359]160!
161!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(6), particles%radius,   &
162!                             start = (/ 1, prt_time_count /),               &
163!                             count = (/ maximum_number_of_particles /) )
[1783]164!     CALL netcdf_handle_error( 'lpm_data_output_particles', 8 )
[1359]165!
166!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(7), particles%speed_x,  &
167!                             start = (/ 1, prt_time_count /),               &
168!                             count = (/ maximum_number_of_particles /) )
[1783]169!     CALL netcdf_handle_error( 'lpm_data_output_particles', 9 )
[1359]170!
171!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(8), particles%speed_y,  &
172!                             start = (/ 1, prt_time_count /),               &
173!                             count = (/ maximum_number_of_particles /) )
[1783]174!     CALL netcdf_handle_error( 'lpm_data_output_particles', 10 )
[1359]175!
176!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(9), particles%speed_z,  &
177!                             start = (/ 1, prt_time_count /),               &
178!                             count = (/ maximum_number_of_particles /) )
[1783]179!     CALL netcdf_handle_error( 'lpm_data_output_particles', 11 )
[1359]180!
181!     nc_stat = NF90_PUT_VAR( id_set_prt,id_var_prt(10),                     &
182!                             particles%weight_factor,                       &
183!                             start = (/ 1, prt_time_count /),               &
184!                             count = (/ maximum_number_of_particles /) )
[1783]185!     CALL netcdf_handle_error( 'lpm_data_output_particles', 12 )
[1359]186!
187!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(11), particles%x,       &
188!                             start = (/ 1, prt_time_count /),               &
189!                             count = (/ maximum_number_of_particles /) )
[1783]190!     CALL netcdf_handle_error( 'lpm_data_output_particles', 13 )
[1359]191!
192!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(12), particles%y,       &
193!                             start = (/ 1, prt_time_count /),               &
194!                             count = (/ maximum_number_of_particles /) )
[1783]195!     CALL netcdf_handle_error( 'lpm_data_output_particles', 14 )
[1359]196!
197!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(13), particles%z,       &
198!                             start = (/ 1, prt_time_count /),               &
199!                             count = (/ maximum_number_of_particles /) )
[1783]200!     CALL netcdf_handle_error( 'lpm_data_output_particles', 15 )
[1359]201!
202!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(14), particles%class,   &
203!                             start = (/ 1, prt_time_count /),               &
204!                             count = (/ maximum_number_of_particles /) )
[1783]205!     CALL netcdf_handle_error( 'lpm_data_output_particles', 16 )
[1359]206!
207!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(15), particles%group,   &
208!                             start = (/ 1, prt_time_count /),               &
209!                             count = (/ maximum_number_of_particles /) )
[1783]210!     CALL netcdf_handle_error( 'lpm_data_output_particles', 17 )
[1359]211!
212!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(16),                    &
213!                             particles%tailpoints,                          &
214!                             start = (/ 1, prt_time_count /),               &
215!                             count = (/ maximum_number_of_particles /) )
[1783]216!     CALL netcdf_handle_error( 'lpm_data_output_particles', 18 )
[1359]217!
218!     nc_stat = NF90_PUT_VAR( id_set_prt, id_var_prt(17), particles%tail_id, &
219!                             start = (/ 1, prt_time_count /),               &
220!                             count = (/ maximum_number_of_particles /) )
[1783]221!     CALL netcdf_handle_error( 'lpm_data_output_particles', 19 )
[1359]222!
[849]223#endif
224
225    CALL cpu_log( log_point_s(40), 'lpm_data_output', 'stop' )
226
227 END SUBROUTINE lpm_data_output_particles
Note: See TracBrowser for help on using the repository browser.