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

Last change on this file since 4123 was 4074, checked in by eckhard, 5 years ago

inifor: Changed initialization mode from 'volume' to 'profile'

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