CTBTO FLEXPART WO4 (2015-10-15)
 All Classes Files Functions Variables
drydepokernel.f90
Go to the documentation of this file.
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 
22 subroutine drydepokernel(nunc,deposit,x,y,nage,kp)
23  ! i i i i i
24  !*****************************************************************************
25  ! *
26  ! Attribution of the deposition to the grid using a uniform kernel with *
27  ! bandwidths dx and dy. *
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,ks,nunc,nage,kp
51 
52 
53  xl=(x*dx+xoutshift)/dxout
54  yl=(y*dy+youtshift)/dyout
55  ix=int(xl)
56  jy=int(yl)
57  ddx=xl-real(ix) ! distance to left cell border
58  ddy=yl-real(jy) ! distance to lower cell border
59 
60  if (ddx.gt.0.5) then
61  ixp=ix+1
62  wx=1.5-ddx
63  else
64  ixp=ix-1
65  wx=0.5+ddx
66  endif
67 
68  if (ddy.gt.0.5) then
69  jyp=jy+1
70  wy=1.5-ddy
71  else
72  jyp=jy-1
73  wy=0.5+ddy
74  endif
75 
76 
77  ! Determine mass fractions for four grid points
78  !**********************************************
79  do ks=1,nspec
80 
81  if ((abs(deposit(ks)).gt.0).and.drydepspec(ks)) then
82 
83  if ((ix.ge.0).and.(jy.ge.0).and.(ix.le.numxgrid-1).and. &
84  (jy.le.numygrid-1)) then
85  w=wx*wy
86  drygridunc(ix,jy,ks,kp,nunc,nage)= &
87  drygridunc(ix,jy,ks,kp,nunc,nage)+deposit(ks)*w
88  continue
89  endif
90 
91  if ((ixp.ge.0).and.(jyp.ge.0).and.(ixp.le.numxgrid-1).and. &
92  (jyp.le.numygrid-1)) then
93  w=(1.-wx)*(1.-wy)
94  drygridunc(ixp,jyp,ks,kp,nunc,nage)= &
95  drygridunc(ixp,jyp,ks,kp,nunc,nage)+deposit(ks)*w
96  endif
97 
98  if ((ixp.ge.0).and.(jy.ge.0).and.(ixp.le.numxgrid-1).and. &
99  (jy.le.numygrid-1)) then
100  w=(1.-wx)*wy
101  drygridunc(ixp,jy,ks,kp,nunc,nage)= &
102  drygridunc(ixp,jy,ks,kp,nunc,nage)+deposit(ks)*w
103  endif
104 
105  if ((ix.ge.0).and.(jyp.ge.0).and.(ix.le.numxgrid-1).and. &
106  (jyp.le.numygrid-1)) then
107  w=wx*(1.-wy)
108  drygridunc(ix,jyp,ks,kp,nunc,nage)= &
109  drygridunc(ix,jyp,ks,kp,nunc,nage)+deposit(ks)*w
110  endif
111 
112  endif
113 
114  end do
115 
116 end subroutine drydepokernel
subroutine drydepokernel(nunc, deposit, x, y, nage, kp)