source: branches/FLEXPART_9.1.3/src/wetdepokernel.f90 @ 13

Last change on this file since 13 was 13, checked in by saeck, 11 years ago

update to wetdepo.f90

File size: 4.5 KB
Line 
1!**********************************************************************
2! Copyright 1998,1999,2000,2001,2002,2005,2007,2008,2009,2010         *
3! Andreas Stohl, Petra Seibert, A. Frank, Gerhard Wotawa,             *
4! Caroline Forster, Sabine Eckhardt, John Burkhart, Harald Sodemann   *
5!                                                                     *
6! This file is part of FLEXPART.                                      *
7!                                                                     *
8! FLEXPART is free software: you can redistribute it and/or modify    *
9! it under the terms of the GNU General Public License as published by*
10! the Free Software Foundation, either version 3 of the License, or   *
11! (at your option) any later version.                                 *
12!                                                                     *
13! FLEXPART is distributed in the hope that it will be useful,         *
14! but WITHOUT ANY WARRANTY; without even the implied warranty of      *
15! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the       *
16! GNU General Public License for more details.                        *
17!                                                                     *
18! You should have received a copy of the GNU General Public License   *
19! along with FLEXPART.  If not, see <http://www.gnu.org/licenses/>.   *
20!**********************************************************************
21
22subroutine wetdepokernel(nunc,deposit,x,y,nage,kp)
23  !                          i      i    i i  i
24  !*****************************************************************************
25  !                                                                            *
26  !     Attribution of the deposition from an individual particle to the       *
27  !     deposition fields using a uniform kernel with bandwidths dxout and dyout.*
28  !                                                                            *
29  !     Author: A. Stohl                                                       *
30  !                                                                            *
31  !     26 December 1996                                                       *
32  !                                                                            *
33  !*****************************************************************************
34  !                                                                            *
35  ! Variables:                                                                 *
36  !                                                                            *
37  ! nunc             uncertainty class of the respective particle              *
38  ! nage             age class of the respective particle                      *
39  ! deposit          amount (kg) to be deposited                               *
40  !                                                                            *
41  !*****************************************************************************
42
43  use unc_mod
44  use par_mod
45  use com_mod
46
47  implicit none
48
49  real :: x,y,deposit(maxspec),ddx,ddy,xl,yl,wx,wy,w
50  integer :: ix,jy,ixp,jyp,nunc,nage,ks,kp
51
52  xl=(x*dx+xoutshift)/dxout
53  yl=(y*dy+youtshift)/dyout
54  ix=int(xl)
55  jy=int(yl)
56  ddx=xl-real(ix)                   ! distance to left cell border
57  ddy=yl-real(jy)                   ! distance to lower cell border
58
59  if (ddx.gt.0.5) then
60    ixp=ix+1
61    wx=1.5-ddx
62  else
63    ixp=ix-1
64    wx=0.5+ddx
65  endif
66
67  if (ddy.gt.0.5) then
68    jyp=jy+1
69    wy=1.5-ddy
70  else
71    jyp=jy-1
72    wy=0.5+ddy
73  endif
74
75
76  ! Determine mass fractions for four grid points
77  !**********************************************
78
79  do ks=1,nspec
80
81  if ((ix.ge.0).and.(jy.ge.0).and.(ix.le.numxgrid-1).and. &
82       (jy.le.numygrid-1)) then
83    w=wx*wy
84      wetgridunc(ix,jy,ks,kp,nunc,nage)= &
85           wetgridunc(ix,jy,ks,kp,nunc,nage)+deposit(ks)*w
86  endif
87
88  if ((ixp.ge.0).and.(jyp.ge.0).and.(ixp.le.numxgrid-1).and. &
89       (jyp.le.numygrid-1)) then
90    w=(1.-wx)*(1.-wy)
91      wetgridunc(ixp,jyp,ks,kp,nunc,nage)= &
92           wetgridunc(ixp,jyp,ks,kp,nunc,nage)+deposit(ks)*w
93  endif
94
95  if ((ixp.ge.0).and.(jy.ge.0).and.(ixp.le.numxgrid-1).and. &
96       (jy.le.numygrid-1)) then
97    w=(1.-wx)*wy
98      wetgridunc(ixp,jy,ks,kp,nunc,nage)= &
99           wetgridunc(ixp,jy,ks,kp,nunc,nage)+deposit(ks)*w
100  endif
101
102  if ((ix.ge.0).and.(jyp.ge.0).and.(ix.le.numxgrid-1).and. &
103       (jyp.le.numygrid-1)) then
104    w=wx*(1.-wy)
105      wetgridunc(ix,jyp,ks,kp,nunc,nage)= &
106           wetgridunc(ix,jyp,ks,kp,nunc,nage)+deposit(ks)*w
107  endif
108  end do
109
110end subroutine wetdepokernel
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG