source: palm/trunk/SOURCE/lpm_extend_tail_array.f90 @ 1359

Last change on this file since 1359 was 1359, checked in by hoffmann, 10 years ago

new Lagrangian particle structure integrated

  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1 SUBROUTINE lpm_extend_tail_array( number_of_new_tails )
2
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!
17! Copyright 1997-2014 Leibniz Universitaet Hannover
18!--------------------------------------------------------------------------------!
19!
20! Current revisions:
21! ------------------
22! New particle structure integrated.
23! Kind definition added to all floating point numbers.
24!
25! Former revisions:
26! -----------------
27! $Id: lpm_extend_tail_array.f90 1359 2014-04-11 17:15:14Z hoffmann $
28!
29! 1320 2014-03-20 08:40:49Z raasch
30! ONLY-attribute added to USE-statements,
31! kind-parameters added to all INTEGER and REAL declaration statements,
32! kinds are defined in new module kinds,
33! comment fields (!:) to be used for variable explanations added to
34! all variable declaration statements
35!
36! 1036 2012-10-22 13:43:42Z raasch
37! code put under GPL (PALM 3.9)
38!
39! 849 2012-03-15 10:35:09Z raasch
40! initial revision (former part of advec_particles)
41!
42!
43! Description:
44! ------------
45! Allocates more memory for the particle tail array.
46!------------------------------------------------------------------------------!
47
48    USE kinds
49
50    USE particle_attributes,                                                   &
51        ONLY:  maximum_number_of_tails, maximum_number_of_tailpoints,          &
52               new_tail_id, number_of_initial_tails, number_of_tails,          &
53               particle_tail_coordinates, tail_mask, write_particle_statistics
54
55    IMPLICIT NONE
56
57    INTEGER(iwp) ::  new_maximum_number                           !:
58    INTEGER(iwp) ::  number_of_new_tails                          !:
59
60    LOGICAL, DIMENSION(maximum_number_of_tails) ::  tmp_tail_mask !:
61
62    REAL(wp), DIMENSION(maximum_number_of_tailpoints,5,maximum_number_of_tails) :: &
63                                                    tmp_tail      !:
64
65
66    new_maximum_number = maximum_number_of_tails + &
67                         MAX( 5*number_of_new_tails, number_of_initial_tails )
68
69    IF ( write_particle_statistics )  THEN
70       CALL check_open( 80 )
71       WRITE ( 80, '(''*** Request: '', I5, '' new_maximum_number(tails)'')' ) &
72                            new_maximum_number
73       CALL close_file( 80 )
74    ENDIF
75    WRITE (9,*) '*** Request: ',new_maximum_number,' new_maximum_number(tails)'
76
77    tmp_tail(:,:,1:number_of_tails)  = &
78                                particle_tail_coordinates(:,:,1:number_of_tails)
79    tmp_tail_mask(1:number_of_tails) = tail_mask(1:number_of_tails)
80
81    DEALLOCATE( new_tail_id, particle_tail_coordinates, tail_mask )
82    ALLOCATE( new_tail_id(new_maximum_number),                          &
83              particle_tail_coordinates(maximum_number_of_tailpoints,5, &
84              new_maximum_number),                                      &
85              tail_mask(new_maximum_number) )
86
87    maximum_number_of_tails = new_maximum_number
88
89    particle_tail_coordinates = 0.0_wp
90    particle_tail_coordinates(:,:,1:number_of_tails) = &
91                                                 tmp_tail(:,:,1:number_of_tails)
92    tail_mask(1:number_of_tails) = tmp_tail_mask(1:number_of_tails)
93    tail_mask(number_of_tails+1:maximum_number_of_tails) = .TRUE.
94
95
96 END SUBROUTINE lpm_extend_tail_array
Note: See TracBrowser for help on using the repository browser.