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

Last change on this file since 4004 was 3997, checked in by eckhard, 5 years ago

inifor: Read origin_z from static driver if given; alert user to warnings

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