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

Last change on this file since 1320 was 1320, checked in by raasch, 10 years ago

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

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