source: flexpart.git/src/ecmwf_mod.f90 @ 4c64400

10.4.1_peseiGFS_025bugfixes+enhancementsdevrelease-10release-10.4.1scaling-bugunivie
Last change on this file since 4c64400 was 62e65c7, checked in by Espen Sollum ATMOS <eso@…>, 8 years ago

'incloud_ratio' set to 6.2. 'maxnests' reverted to 0. Updated info messages (readspecies)

  • Property mode set to 100644
File size: 3.8 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
22!*******************************************************************************
23!   Include file for calculation of particle trajectories (Program FLEXPART)   *
24!                                                                              *
25!       This file contains ECMWF specific parameters used in FLEXPART          *
26!       Note that module name differs from file name.                          *
27!       The makefile selects either this file, or gfs_mod.f90, depending       *
28!       on target.                                                             *
29!                                                                              *
30!       Author: ESO                                                            *
31!                                                                              *
32!       2015                                                                   *
33!                                                                              *
34!*******************************************************************************
35
36module wind_mod
37
38  implicit none
39
40  !*********************************************
41  ! Maximum dimensions of the input mother grids
42  !*********************************************
43
44!  integer,parameter :: nxmax=361,nymax=181,nuvzmax=92,nwzmax=92,nzmax=92 !ECMWF new
45  integer,parameter :: nxmax=361,nymax=181,nuvzmax=138,nwzmax=138,nzmax=138 !ECMWF new
46  integer,parameter :: nxshift=359
47!  integer,parameter :: nxshift=0
48
49  !*********************************************
50  ! Maximum dimensions of the nested input grids
51  !*********************************************
52
53  integer,parameter :: maxnests=0,nxmaxn=361,nymaxn=181
54
55  ! nxmax,nymax        maximum dimension of wind fields in x and y
56  !                    direction, respectively
57  ! nuvzmax,nwzmax     maximum dimension of (u,v) and (w) wind fields in z
58  !                    direction (for fields on eta levels)
59  ! nzmax              maximum dimension of wind fields in z direction
60  !                    for the transformed Cartesian coordinates
61  ! nxshift            for global grids (in x), the grid can be shifted by
62  !                    nxshift grid points, in order to accomodate nested
63  !                    grids, and output grids overlapping the domain "boundary"
64  !                    nxshift must not be negative; "normal" setting would be 0
65
66end module wind_mod
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG