1 | !> @file user_lpm_init.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 terms of the GNU General |
---|
6 | ! Public License as published by the Free Software Foundation, either version 3 of the License, or |
---|
7 | ! (at your option) any later version. |
---|
8 | ! |
---|
9 | ! PALM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the |
---|
10 | ! implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
---|
11 | ! Public License for more details. |
---|
12 | ! |
---|
13 | ! You should have received a copy of the GNU General Public License along with PALM. If not, see |
---|
14 | ! <http://www.gnu.org/licenses/>. |
---|
15 | ! |
---|
16 | ! Copyright 1997-2020 Leibniz Universitaet Hannover |
---|
17 | !--------------------------------------------------------------------------------------------------! |
---|
18 | ! |
---|
19 | ! |
---|
20 | ! Current revisions: |
---|
21 | ! ----------------- |
---|
22 | ! |
---|
23 | ! |
---|
24 | ! Former revisions: |
---|
25 | ! ----------------- |
---|
26 | ! $Id: user_lpm_init.f90 4497 2020-04-15 10:20:51Z suehring $ |
---|
27 | ! file re-formatted to follow the PALM coding standard |
---|
28 | ! |
---|
29 | ! |
---|
30 | ! 4360 2020-01-07 11:25:50Z suehring |
---|
31 | ! Corrected "Former revisions" section |
---|
32 | ! |
---|
33 | ! 3768 2019-02-27 14:35:58Z raasch |
---|
34 | ! unused variables commented out to avoid compiler warnings |
---|
35 | ! |
---|
36 | ! 3655 2019-01-07 16:51:22Z knoop |
---|
37 | ! Corrected "Former revisions" section |
---|
38 | ! |
---|
39 | ! 211 2008-11-11 04:46:24Z raasch |
---|
40 | ! Former file user_interface.f90 split into one file per subroutine |
---|
41 | ! |
---|
42 | ! Description: |
---|
43 | ! ------------ |
---|
44 | !> Modification of initial particles by the user. |
---|
45 | !--------------------------------------------------------------------------------------------------! |
---|
46 | SUBROUTINE user_lpm_init |
---|
47 | |
---|
48 | USE indices |
---|
49 | |
---|
50 | USE kinds |
---|
51 | |
---|
52 | USE particle_attributes |
---|
53 | |
---|
54 | USE user |
---|
55 | |
---|
56 | IMPLICIT NONE |
---|
57 | |
---|
58 | ! INTEGER(iwp) :: ip !< |
---|
59 | ! INTEGER(iwp) :: jp !< |
---|
60 | ! INTEGER(iwp) :: kp !< |
---|
61 | ! INTEGER(iwp) :: n !< |
---|
62 | |
---|
63 | ! |
---|
64 | !-- Here the user-defined actions follow |
---|
65 | ! DO ip = nxl, nxr |
---|
66 | ! DO jp = nys, nyn |
---|
67 | ! DO kp = nzb+1, nzt |
---|
68 | ! number_of_particles = prt_count(kp,jp,ip) |
---|
69 | ! particles => grid_particles(kp,jp,ip)%particles(1:number_of_particles) |
---|
70 | ! IF ( number_of_particles <= 0 ) CYCLE |
---|
71 | ! DO n = 1, number_of_particles |
---|
72 | ! |
---|
73 | ! ENDDO |
---|
74 | ! ENDDO |
---|
75 | ! ENDDO |
---|
76 | ! ENDDO |
---|
77 | |
---|
78 | END SUBROUTINE user_lpm_init |
---|
79 | |
---|