[630] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | PROGRAM create_etat0_limit |
---|
| 5 | c |
---|
| 6 | c |
---|
| 7 | c Programme d'appel a etat0, creation des etats initiaux et limit_netcdf |
---|
| 8 | c |
---|
| 9 | c |
---|
| 10 | c interbar = .T . si appel a interpol. barycentrique inter_barxy |
---|
| 11 | c |
---|
| 12 | c extrap = .T . si on fait une extrapolation de donnees , comme pour |
---|
| 13 | c les SST lorsque le fichier ne contient pas uniquement des points |
---|
| 14 | c oceaniques . |
---|
| 15 | c |
---|
| 16 | c oldice = .T. si l'on veut garder les anciennes glaces , obtenues |
---|
| 17 | c par grille_m ( grid_atob ) . |
---|
| 18 | c |
---|
| 19 | c on cree le masque dans etat0 que l'on passe ensuite dans limit pour |
---|
| 20 | c garder les cohérences |
---|
| 21 | |
---|
| 22 | LOGICAL interbar, extrap , oldice |
---|
| 23 | PARAMETER ( interbar = .true. , extrap = .FALSE. , oldice=.false.) |
---|
| 24 | #include "dimensions.h" |
---|
| 25 | #include "paramet.h" |
---|
| 26 | #include "indicesol.h" |
---|
| 27 | #include "dimphy.h" |
---|
| 28 | REAL :: masque(iip1,jjp1) |
---|
| 29 | REAL :: pctsrf(klon, nbsrf) |
---|
| 30 | |
---|
| 31 | WRITE(6,*) ' ********************* ' |
---|
| 32 | WRITE(6,*) ' interbar = ',interbar |
---|
| 33 | CALL etat0_netcdf ( interbar, masque, pctsrf ) |
---|
| 34 | c |
---|
| 35 | WRITE(6,1) |
---|
| 36 | WRITE(6,*) ' ********************* ' |
---|
| 37 | WRITE(6,*) ' *** Limit_netcdf *** ' |
---|
| 38 | WRITE(6,*) ' ********************* ' |
---|
| 39 | WRITE(6,1) |
---|
| 40 | c |
---|
| 41 | CALL limit_netcdf ( interbar, extrap , oldice, masque, pctsrf ) |
---|
| 42 | |
---|
| 43 | 1 FORMAT(//) |
---|
| 44 | |
---|
| 45 | STOP |
---|
| 46 | END |
---|