[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 |
---|
[414] | 20 | PARAMETER ( interbar = .true. , extrap = .FALSE. , oldice=.false.) |
---|
[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 | |
---|
[370] | 28 | WRITE(6,*) ' ********************* ' |
---|
| 29 | WRITE(6,*) ' interbar = ',interbar |
---|
[325] | 30 | CALL etat0_netcdf ( interbar, masque, pctsrf ) |
---|
[259] | 31 | c |
---|
[269] | 32 | WRITE(6,1) |
---|
| 33 | WRITE(6,*) ' ********************* ' |
---|
| 34 | WRITE(6,*) ' *** Limit_netcdf *** ' |
---|
| 35 | WRITE(6,*) ' ********************* ' |
---|
| 36 | WRITE(6,1) |
---|
| 37 | c |
---|
[325] | 38 | CALL limit_netcdf ( interbar, extrap , oldice, masque, pctsrf ) |
---|
[259] | 39 | |
---|
[269] | 40 | 1 FORMAT(//) |
---|
| 41 | |
---|
[259] | 42 | STOP |
---|
| 43 | END |
---|