source: flexpart.git/src/outg_mod.f90 @ 7999df47

10.4.1_peseiGFS_025bugfixes+enhancementsdevrelease-10release-10.4.1scaling-bugunivie
Last change on this file since 7999df47 was 6a678e3, checked in by Espen Sollum ATMOS <eso@…>, 8 years ago

Added option to use double precision for calculating the deposition fields

  • Property mode set to 100644
File size: 2.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
22module outg_mod
23
24  use par_mod, only: dep_prec
25
26  implicit none
27
28  real,allocatable, dimension (:) :: outheight
29  real,allocatable, dimension (:) :: outheighthalf
30  real,allocatable, dimension (:,:) :: oroout
31  real,allocatable, dimension (:,:) :: orooutn
32  real,allocatable, dimension (:,:) :: area
33  real,allocatable, dimension (:,:) :: arean
34  real,allocatable, dimension (:,:,:) :: volume
35  real,allocatable, dimension (:,:,:) :: volumen
36  real,allocatable, dimension (:,:,:) :: areaeast
37  real,allocatable, dimension (:,:,:) :: areanorth
38  real,allocatable, dimension (:,:,:) :: densityoutgrid
39  real,allocatable, dimension (:,:,:) :: factor3d
40  real,allocatable, dimension (:,:,:) :: grid
41  real(dep_prec),allocatable, dimension (:,:) :: wetgrid
42  real(dep_prec),allocatable, dimension (:,:) :: drygrid
43  real,allocatable, dimension (:,:,:) :: gridsigma
44  real(dep_prec),allocatable, dimension (:,:) :: drygridsigma
45  real(dep_prec),allocatable, dimension (:,:) :: wetgridsigma
46  real,allocatable, dimension (:) :: sparse_dump_r
47  real,allocatable, dimension (:) :: sparse_dump_u
48  integer,allocatable, dimension (:) :: sparse_dump_i
49
50end module outg_mod
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG