source: palm/trunk/UTIL/inifor/src/inifor_defs.f90 @ 4499

Last change on this file since 4499 was 4499, checked in by eckhard, 4 years ago

bugfix for explicit loop in 'reverse' subroutine, updated test suite

  • Property svn:keywords set to Id
File size: 7.4 KB
Line 
1!> @file src/inifor_defs.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
6! terms of the GNU General Public License as published by the Free Software
7! Foundation, either version 3 of the License, or (at your option) any later
8! version.
9!
10! PALM is distributed in the hope that it will be useful, but WITHOUT ANY
11! WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12! A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13!
14! You should have received a copy of the GNU General Public License along with
15! PALM. If not, see <http://www.gnu.org/licenses/>.
16!
17! Copyright 2017-2020 Leibniz Universitaet Hannover
18! Copyright 2017-2020 Deutscher Wetterdienst Offenbach
19!------------------------------------------------------------------------------!
20!
21! Current revisions:
22! -----------------
23!
24!
25! Former revisions:
26! -----------------
27! $Id: inifor_defs.f90 4499 2020-04-16 15:51:56Z eckhard $
28! Updated copyright notice, bumped version number
29!
30!
31! 4481 2020-03-31 18:55:54Z maronga
32! Bumped version number
33!
34!
35! 4019 2019-06-06 14:00:35Z eckhard
36! Bumped version number
37!
38!
39! 3997 2019-05-23 12:35:57Z eckhard
40! Defined netCDF attribute names for PALM origin coordinates
41! Make netCDF variable names constants
42! Bumped version number
43!
44!
45! 3867 2019-04-05 16:15:55Z eckhard
46! Added parameter for INIFOR's log file name
47! Use PALM's working precision
48!
49!
50! 3801 2019-03-15 17:14:25Z eckhard
51! Defined netCDF variable names for COSMO grid
52! Bumped version number
53!
54!
55! 3779 2019-03-05 11:13:35Z eckhard
56! Updated version number to 1.4.7, updated copyright note
57!
58!
59! 3764 2019-02-26 13:42:09Z eckhard
60! Bumped version number
61!
62!
63! 3716 2019-02-05 17:02:38Z eckhard
64! Bumped version number
65!
66!
67! 3618 2018-12-10 13:25:22Z eckhard
68! Prefixed module with inifor_
69!
70!
71! 3613 2018-12-07 18:20:37Z eckhard
72! Bumped version number
73!
74!
75! 3557 2018-11-22 16:01:22Z eckhard
76! Updated documentation
77!
78!
79! 3537 2018-11-20 10:53:14Z eckhard
80! Bumped version number
81!
82!
83! 3534 2018-11-19 15:35:16Z raasch
84! NEW_LINE intrinsic replaced by ACHAR to avoid compile time error
85!
86! 3456 2018-10-30 14:29:54Z eckhard
87! Bumped version number
88!
89!
90! 3447 2018-10-29 15:52:54Z eckhard
91! Renamed source files for compatibilty with PALM build system
92!
93!
94! 3395 2018-10-22 17:32:49Z eckhard
95! New parameters for computation of geostrophic winds
96! Bumped INIFOR version number
97!
98!
99! 3183 2018-07-27 14:25:55Z suehring
100! Updated defaults for soil extrapolation steps and nudging time-scale
101! Improved handling of the start date string
102! Added gas constant for water vapor
103! Bumped INIFOR version number
104!
105!
106! 3182 2018-07-27 13:36:03Z suehring
107! Initial revision
108!
109!
110!
111! Authors:
112! --------
113!> @author Eckhard Kadasch (Deutscher Wetterdienst, Offenbach)
114!
115! Description:
116! ------------
117!> The defs module provides global constants used in INIFOR.
118!------------------------------------------------------------------------------!
119 MODULE inifor_defs
120 
121 !USE kinds,                                                                    &
122 !    ONLY :  wp, iwp
123
124 IMPLICIT NONE
125
126!
127!-- Parameters for type definitions
128 INTEGER, PARAMETER  ::  iwp = 8
129 INTEGER, PARAMETER  ::  wp = 8
130 INTEGER, PARAMETER  ::  PATH  = 140 !< length of file path strings
131 INTEGER, PARAMETER  ::  LNAME = 150 !< length of long name strings
132 INTEGER, PARAMETER  ::  SNAME = 40  !< length of short name strings
133 INTEGER, PARAMETER  ::  DATE  = 10  !< length of date strings
134
135!
136!-- Trigonomentry
137 REAL(wp), PARAMETER ::  PI = 3.14159265358979323846264338_wp !< Ratio of a circle's circumference to its diamter [-]
138 REAL(wp), PARAMETER ::  TO_RADIANS = PI / 180.0_wp           !< Conversion factor from degrees to radiant [-]
139 REAL(wp), PARAMETER ::  TO_DEGREES = 180.0_wp / PI           !< Conversion factor from radians to degrees [-]
140
141!
142!-- COSMO parameters
143 INTEGER, PARAMETER  ::  WATER_ID = 9                !< Integer corresponding to the water soil type in COSMO-DE [-]
144 REAL(wp), PARAMETER ::  EARTH_RADIUS = 6371229.0_wp !< Earth radius used in COSMO-DE [m]
145 REAL(wp), PARAMETER ::  P_SL = 1e5_wp               !< Reference pressure for computation of COSMO-DE's basic state pressure [Pa]
146 REAL(wp), PARAMETER ::  T_SL = 288.15_wp            !< Reference temperature for computation of COSMO-DE's basic state pressure [K]
147 REAL(wp), PARAMETER ::  BETA = 42.0_wp              !< logarithmic lapse rate, dT / d ln(p), for computation of COSMO-DE's basic
148                                                     !< state pressure [K]
149 REAL(wp), PARAMETER ::  RD   = 287.05_wp            !< specific gas constant of dry air, used in computation of COSMO-DE's basic
150                                                     !< state [J/kg/K]
151 REAL(wp), PARAMETER ::  RV   = 461.51_wp            !< specific gas constant of water vapor [J/kg/K]
152 REAL(wp), PARAMETER ::  G    = 9.80665_wp           !< acceleration of Earth's gravity, used in computation of COSMO-DE's basic
153                                                     !< state [m/s/s]
154 REAL(wp), PARAMETER ::  RHO_L = 1e3_wp              !< density of liquid water, used to convert W_SO from [kg/m^2] to [m^3/m^3],
155                                                     !< in [kg/m^3]
156 REAL(wp), PARAMETER ::  HECTO = 100_wp              !< unit conversion factor from hPa to Pa
157
158!
159!-- PALM-4U parameters
160 REAL(wp), PARAMETER ::  OMEGA   = 7.29e-5_wp !< angular velocity of Earth's rotation [s^-1]
161 REAL(wp), PARAMETER ::  P_REF   = 1e5_wp     !< Reference pressure for potential temperature [Pa]
162 REAL(wp), PARAMETER ::  RD_PALM = 287.0_wp   !< specific gas constant of dry air, used in computation of PALM-4U's potential temperature [J/kg/K]
163 REAL(wp), PARAMETER ::  CP_PALM = 1005.0_wp  !< heat capacity of dry air at constant pressure, used in computation of PALM-4U's potential temperature [J/kg/K]
164
165!
166!-- PALM static driver attribute names (PIDS 1.9)
167CHARACTER(SNAME), PARAMETER ::  PIDS_ORIGIN_LON = 'origin_lon'
168CHARACTER(SNAME), PARAMETER ::  PIDS_ORIGIN_LAT = 'origin_lat'
169CHARACTER(SNAME), PARAMETER ::  PIDS_ORIGIN_Z   = 'origin_z'
170
171!
172!-- COSMO netCDF names
173CHARACTER(SNAME), PARAMETER ::  NC_DEPTH_NAME = 'depth_2'
174CHARACTER(SNAME), PARAMETER ::  NC_HHL_NAME = 'HHL'
175CHARACTER(SNAME), PARAMETER ::  NC_RLAT_NAME = 'rlat'
176CHARACTER(SNAME), PARAMETER ::  NC_RLON_NAME = 'rlon'
177CHARACTER(SNAME), PARAMETER ::  NC_ROTATED_POLE_NAME = 'rotated_pole'
178CHARACTER(SNAME), PARAMETER ::  NC_POLE_LATITUDE_NAME = 'grid_north_pole_latitude'
179CHARACTER(SNAME), PARAMETER ::  NC_POLE_LONGITUDE_NAME = 'grid_north_pole_longitude'
180
181!
182!-- INIFOR parameters
183 INTEGER, PARAMETER          ::  FILL_ITERATIONS = 5          !< Number of iterations for extrapolating soil data into COSMO-DE
184                                                              !< water cells [-]
185 INTEGER, PARAMETER          ::  FORCING_STEP = 1             !< Number of hours between forcing time steps [h]
186 REAL(wp), PARAMETER         ::  NUDGING_TAU = 21600.0_wp     !< Nudging relaxation time scale [s]
187 CHARACTER(LEN=*), PARAMETER ::  COPYRIGHT = 'Copyright 2017-2020 Leibniz Universitaet Hannover' // &
188    ACHAR( 10 ) // ' Copyright 2017-2020 Deutscher Wetterdienst Offenbach' !< Copyright notice
189 CHARACTER(LEN=*), PARAMETER ::  LOG_FILE_NAME = 'inifor.log' !< Name of INIFOR's log file
190 CHARACTER(LEN=*), PARAMETER ::  VERSION = '1.4.12'           !< INIFOR version number
191 
192 END MODULE inifor_defs
Note: See TracBrowser for help on using the repository browser.