Last change
on this file since 3241 was
1154,
checked in by lguez, 16 years ago
|
-- Added "NetCDF95" interface in "bibio".
-- NetCDF95 uses the module "typesizes", which is part of NetCDF, so we
exclude dependency on "typesizes" in "bld.cfg".
-- Added "assert_eq" and "assert" procedures, which are in the public
part of Numerical Recipes.
-- Added some interpolation and regridding utilities in "bibio".
-- Added the ability to read an ozone climatology from a NetCDF file.
-- Commented out unused variables and code in "etat0_netcdf".
-- Updated calls to NetCDF in "etat0_netcdf": from Fortran 77
interface to Fortran 90 interface.
-- Removed useless "deallocate" at the end of "etat0_netcdf".
-- Corrected some declarations not conforming to Fortran standard, such
as "integer*4", or obsolescent such as "character*4".
-- Replaced some calls to not-standard function "float" by calls to
"real".
-- On Brodie at IDRIS, the NetCDF library compiled with OpenMP should
be used. Changed path in "arch-SX8_BRODIE.path".
-- Added warning for incompatibility of debugging options and OpenMP
parallelization in "makelmdz_fcm".
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
827 bytes
|
Line | |
---|
1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | ! |
---|
5 | ! ATTENTION!!!!: ce fichier include est compatible format fixe/format libre |
---|
6 | ! veillez à n'utiliser que des ! pour les commentaires |
---|
7 | ! et à bien positionner les & des lignes de continuation |
---|
8 | ! (les placer en colonne 6 et en colonne 73) |
---|
9 | ! |
---|
10 | ! |
---|
11 | INTEGER nbsrf |
---|
12 | PARAMETER (nbsrf=4) ! nombre de sous-fractions pour une maille |
---|
13 | ! |
---|
14 | INTEGER is_oce |
---|
15 | PARAMETER (is_oce=3) ! ocean |
---|
16 | INTEGER is_sic |
---|
17 | PARAMETER (is_sic=4) ! glace de mer |
---|
18 | INTEGER is_ter |
---|
19 | PARAMETER (is_ter=1) ! terre |
---|
20 | INTEGER is_lic |
---|
21 | PARAMETER (is_lic=2) ! glacier continental |
---|
22 | ! |
---|
23 | REAL epsfra |
---|
24 | PARAMETER (epsfra=1.0E-05) |
---|
25 | ! |
---|
26 | CHARACTER(len=3) clnsurf(nbsrf) |
---|
27 | DATA clnsurf/'ter', 'lic', 'oce', 'sic'/ |
---|
28 | SAVE clnsurf |
---|
29 | !$OMP THREADPRIVATE(clnsurf) |
---|
Note: See
TracBrowser
for help on using the repository browser.