Last change
on this file since 2404 was
2209,
checked in by Ehouarn Millour, 10 years ago
|
Update of the slab ocean by Francis Codron. There are now 3 possibilities for the "version_ocean" slab type:
sicOBS = prescribed ice fraction. Water temperature nearby is set to -1.8°C and cannot become lower.
sicNO = ignore sea ice. One can prescribe a fraction, but the nearby ocean evolves freely, depending on surface fluxes: temperature can go below freezing point or above...
sicINT = interactive sea ice.
EM
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
964 bytes
|
Rev | Line | |
---|
[781] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | MODULE surface_data |
---|
| 5 | |
---|
| 6 | REAL, PARAMETER :: calice=1.0/(5.1444e+06*0.15) |
---|
| 7 | REAL, PARAMETER :: tau_gl=86400.*5. |
---|
| 8 | REAL, PARAMETER :: calsno=1./(2.3867e+06*.15) |
---|
| 9 | |
---|
[996] | 10 | LOGICAL, SAVE :: ok_veget ! true for use of vegetation model ORCHIDEE |
---|
[1724] | 11 | CHARACTER(len=10), SAVE :: type_veget ! orchidee/y/bucket/n/betaclim |
---|
[781] | 12 | !$OMP THREADPRIVATE(ok_veget) |
---|
[1865] | 13 | ! Martin |
---|
| 14 | LOGICAL, SAVE :: ok_snow ! true for coupling to snow model SISVAT |
---|
| 15 | !$OMP THREADPRIVATE(ok_snow) |
---|
| 16 | ! Martin |
---|
[781] | 17 | |
---|
[996] | 18 | CHARACTER(len=6), SAVE :: type_ocean ! force/slab/couple |
---|
| 19 | !$OMP THREADPRIVATE(type_ocean) |
---|
| 20 | |
---|
| 21 | ! if type_ocean=couple : version_ocean=opa8 ou nemo |
---|
[2057] | 22 | ! if type_ocean=slab : version_ocean=sicOBS or sicINT or sicNO |
---|
[996] | 23 | CHARACTER(len=6), SAVE :: version_ocean |
---|
| 24 | !$OMP THREADPRIVATE(version_ocean) |
---|
| 25 | |
---|
[2075] | 26 | ! Pas de temps couplage atm/oce (en secondes) |
---|
| 27 | REAL, SAVE :: t_coupl |
---|
| 28 | !$OMP THREADPRIVATE(t_coupl) |
---|
| 29 | |
---|
[781] | 30 | END MODULE surface_data |
---|
Note: See
TracBrowser
for help on using the repository browser.