SURFEX  V8_0
Surfex V8_0 release
 All Classes Files Functions Variables
modd_glt_const_evp.F90
Go to the documentation of this file.
1 !SFX_LIC Copyright 1994-2014 CNRS, Meteo-France and Universite Paul Sabatier
2 !SFX_LIC This is part of the SURFEX software governed by the CeCILL-C licence
3 !SFX_LIC version 1. See LICENSE, CeCILL-C_V1-en.txt and CeCILL-C_V1-fr.txt
4 !SFX_LIC for details. version 1.
5 !GLT_LIC The GELATO model is a seaice model used in stand-alone or embedded mode.
6 !GLT_LIC It has been developed by Meteo-France. The holder of GELATO is Meteo-France.
7 !GLT_LIC
8 !GLT_LIC This software is governed by the CeCILL-C license under French law and biding
9 !GLT_LIC by the rules of distribution of free software. See the CeCILL-C_V1-en.txt
10 !GLT_LIC (English) and CeCILL-C_V1-fr.txt (French) for details. The CeCILL is a free
11 !GLT_LIC software license, explicitly compatible with the GNU GPL
12 !GLT_LIC (see http://www.gnu.org/licenses/license-list.en.html#CeCILL)
13 !GLT_LIC
14 !GLT_LIC The CeCILL-C licence agreement grants users the right to modify and re-use the
15 !GLT_LIC software governed by this free software license. The exercising of this right
16 !GLT_LIC is conditional upon the obligation to make available to the community the
17 !GLT_LIC modifications made to the source code of the software so as to contribute to
18 !GLT_LIC its evolution.
19 !GLT_LIC
20 !GLT_LIC In consideration of access to the source code and the rights to copy, modify
21 !GLT_LIC and redistribute granted by the license, users are provided only with a limited
22 !GLT_LIC warranty and the software's author, the holder of the economic rights, and the
23 !GLT_LIC successive licensors only have limited liability. In this respect, the risks
24 !GLT_LIC associated with loading, using, modifying and/or developing or reproducing the
25 !GLT_LIC software by the user are brought to the user's attention, given its Free
26 !GLT_LIC Software status, which may make it complicated to use, with the result that its
27 !GLT_LIC use is reserved for developers and experienced professionals having in-depth
28 !GLT_LIC computer knowledge. Users are therefore encouraged to load and test the
29 !GLT_LIC suitability of the software as regards their requirements in conditions enabling
30 !GLT_LIC the security of their systems and/or data to be ensured and, more generally, to
31 !GLT_LIC use and operate it in the same conditions of security.
32 !GLT_LIC
33 !GLT_LIC The GELATO sofware is cureently distibuted with the SURFEX software, available at
34 !GLT_LIC http://www.cnrm.meteo.fr/surfex. The fact that you download the software deemed that
35 !GLT_LIC you had knowledge of the CeCILL-C license and that you accept its terms.
36 !GLT_LIC Attempts to use this software in a way not complying with CeCILL-C license
37 !GLT_LIC may lead to prosecution.
38 !GLT_LIC
40  USE modd_glt_param
41  IMPLICIT NONE
42 
43 #if ! defined in_surfex
44 ! *** Constants for EVP rheology.
45 !
46  REAL, PARAMETER :: eyc = 0.36 ! E0
47  REAL, PARAMETER :: cst = 20.
48  REAL, PARAMETER :: pst = 2.75e4 ! N.m-2 [ kg.m-1.s-2 ]
49 
50 !.. densities of ice, seawater
51  REAL, PARAMETER :: rhoi = 910. ! Hibler 1979, kg/m^3
52  REAL, PARAMETER :: rhowdyn = 1030. ! Pond and Pickard, S=35 ppt, T=10.C, p=0
53 
54 ! .. EVP parameters
55  REAL, PARAMETER :: ecc = 4. ! e^2
56  REAL, PARAMETER :: ecci = 1. ! 4./e^2
57  REAL, PARAMETER :: eccm = 2.-0.5*ecci ! 2*(1-0.25*ecci) = 2*(1-1/e^2)
58  REAL, PARAMETER :: eccp = 1.+ecci*0.25 ! 1+1/e^2
59 
60 !.. water and air turning angle (converted to radians).
61 ! If geostrophic current is provided, phiwater=25 degree, 0 if surface current
62 ! REAL, PARAMETER :: phiwater = 25.*3.141592653789/180.
63  REAL, PARAMETER :: phiwater = 0.
64  REAL, PARAMETER :: phiair = 0.
65 
66 !.. ice/water drag coefficient
67  REAL, PARAMETER :: dragw = 0.0055*rhowdyn
68 #endif
69 
70 !.. earth rotational velocity, rad.s-1
71  REAL, PARAMETER :: omega = 7.292e-5
72 
73 #if ! defined in_surfex
74 ! *** Other constants.
75  REAL, PARAMETER :: floor1 = 1.e-5
76  REAL, PARAMETER :: floor2 = 1.e-11
77  REAL, PARAMETER :: rcon = 4.e-9
78 
79 !.. time step for sea ice dynamics
80  REAL :: dt
81 
82 !.. time step for sea ice dynamics subcycling
83  REAL :: dte
84 
85 !.. one over dte
86  REAL :: dtei
87 
88 !.. wave damping time scale T
89  REAL :: tdamp2
90 
91 !.. constants for stress equation
92  REAL :: Tdtei
93  REAL :: c2n
94  REAL :: ecoef
95  REAL :: d2n
96  REAL :: ccoef
97  REAL :: dcoef
98  REAL :: bcoef
99  REAL :: acoef
100 
101 !.. cosine, sine of water and atmosphere turning angles
102  REAL :: xcw,xsw,xca,xsa
103 #endif
104 !
105 END MODULE modd_glt_const_evp