Last change
on this file since 345 was
325,
checked in by lmdzadmin, 23 years ago
|
Inclusion des fractions de surface dans limit_netcdf (create_etat0_limit.F) +
petit menage cosmetique
LF
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.2 KB
|
Rev | Line | |
---|
[259] | 1 | PROGRAM create_etat0_limit |
---|
| 2 | c |
---|
| 3 | c |
---|
| 4 | c Programme d'appel a etat0, creation des etats initiaux et limit_netcdf |
---|
| 5 | c |
---|
| 6 | c |
---|
| 7 | c interbar = .T . si appel a interpol. barycentrique inter_barxy |
---|
| 8 | c |
---|
| 9 | c extrap = .T . si on fait une extrapolation de donnees , comme pour |
---|
| 10 | c les SST lorsque le fichier ne contient pas uniquement des points |
---|
| 11 | c oceaniques . |
---|
| 12 | c |
---|
| 13 | c oldice = .T. si l'on veut garder les anciennes glaces , obtenues |
---|
| 14 | c par grille_m ( grid_atob ) . |
---|
[320] | 15 | c |
---|
| 16 | c on cree le masque dans etat0 que l'on passe ensuite dans limit pour |
---|
| 17 | c garder les cohérences |
---|
[259] | 18 | |
---|
| 19 | LOGICAL interbar, extrap , oldice |
---|
| 20 | PARAMETER ( interbar = .TRUE. , extrap = .FALSE. , oldice=.TRUE.) |
---|
[320] | 21 | #include "dimensions.h" |
---|
| 22 | #include "paramet.h" |
---|
[325] | 23 | #include "indicesol.h" |
---|
| 24 | #include "dimphy.h" |
---|
[320] | 25 | REAL :: masque(iip1,jjp1) |
---|
[325] | 26 | REAL :: pctsrf(klon, nbsrf) |
---|
[259] | 27 | |
---|
[325] | 28 | CALL etat0_netcdf ( interbar, masque, pctsrf ) |
---|
[259] | 29 | c |
---|
[269] | 30 | WRITE(6,1) |
---|
| 31 | WRITE(6,*) ' ********************* ' |
---|
| 32 | WRITE(6,*) ' *** Limit_netcdf *** ' |
---|
| 33 | WRITE(6,*) ' ********************* ' |
---|
| 34 | WRITE(6,1) |
---|
| 35 | c |
---|
[325] | 36 | CALL limit_netcdf ( interbar, extrap , oldice, masque, pctsrf ) |
---|
[259] | 37 | |
---|
[269] | 38 | 1 FORMAT(//) |
---|
| 39 | |
---|
[259] | 40 | STOP |
---|
| 41 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.