[1000] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | PROGRAM create_etat0_limit |
---|
| 5 | USE dimphy |
---|
| 6 | USE comgeomphy |
---|
| 7 | USE mod_phys_lmdz_para |
---|
| 8 | USE mod_const_mpi |
---|
| 9 | USE phys_state_var_mod |
---|
[1146] | 10 | USE infotrac |
---|
[1000] | 11 | IMPLICIT NONE |
---|
| 12 | c |
---|
| 13 | c |
---|
| 14 | c Programme d'appel a etat0, creation des etats initiaux et limit_netcdf |
---|
| 15 | c |
---|
| 16 | c |
---|
| 17 | c interbar = .T . si appel a interpol. barycentrique inter_barxy |
---|
| 18 | c |
---|
| 19 | c extrap = .T . si on fait une extrapolation de donnees , comme pour |
---|
| 20 | c les SST lorsque le fichier ne contient pas uniquement des points |
---|
| 21 | c oceaniques . |
---|
| 22 | c |
---|
| 23 | c oldice = .T. si l'on veut garder les anciennes glaces , obtenues |
---|
| 24 | c par grille_m ( grid_atob ) . |
---|
| 25 | c |
---|
| 26 | c on cree le masque dans etat0 que l'on passe ensuite dans limit pour |
---|
| 27 | c garder les coherences |
---|
| 28 | |
---|
| 29 | LOGICAL interbar, extrap , oldice |
---|
| 30 | PARAMETER ( interbar = .true. , extrap = .FALSE. , oldice=.false.) |
---|
| 31 | #include "dimensions.h" |
---|
| 32 | #include "paramet.h" |
---|
| 33 | #include "indicesol.h" |
---|
| 34 | #include "control.h" |
---|
| 35 | #include "clesphys.h" |
---|
| 36 | REAL :: masque(iip1,jjp1) |
---|
| 37 | ! REAL :: pctsrf(iim*(jjm-1)+2, nbsrf) |
---|
| 38 | |
---|
| 39 | IF (config_inca /= 'none') THEN |
---|
| 40 | #ifdef INCA |
---|
[1017] | 41 | call init_const_lmdz( |
---|
[1146] | 42 | $ nbtr,anneeref,dayref, |
---|
[1017] | 43 | $ iphysiq,day_step,nday) |
---|
[1000] | 44 | #endif |
---|
[1146] | 45 | print *, 'nbtr =' , nbtr |
---|
[1000] | 46 | END IF |
---|
| 47 | |
---|
| 48 | CALL init_mpi |
---|
| 49 | |
---|
| 50 | |
---|
[1146] | 51 | CALL Init_Phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/)) |
---|
[1000] | 52 | PRINT *,'---> klon=',klon |
---|
| 53 | |
---|
| 54 | IF (mpi_size>1 .OR. omp_size>1) THEN |
---|
| 55 | CALL abort_gcm('create_etat0_limit','In parallel mode, |
---|
| 56 | & create_etat0_limit must be called only |
---|
| 57 | & for 1 process and 1 task') |
---|
| 58 | ENDIF |
---|
| 59 | CALL phys_state_var_init |
---|
| 60 | call InitComgeomphy |
---|
| 61 | |
---|
| 62 | |
---|
| 63 | WRITE(6,*) ' ********************* ' |
---|
| 64 | WRITE(6,*) ' interbar = ',interbar |
---|
| 65 | CALL etat0_netcdf ( interbar, masque ) |
---|
| 66 | c |
---|
| 67 | WRITE(6,1) |
---|
| 68 | WRITE(6,*) ' ********************* ' |
---|
| 69 | WRITE(6,*) ' *** Limit_netcdf *** ' |
---|
| 70 | WRITE(6,*) ' ********************* ' |
---|
| 71 | WRITE(6,1) |
---|
| 72 | |
---|
| 73 | c |
---|
| 74 | CALL limit_netcdf ( interbar, extrap , oldice, masque) |
---|
| 75 | |
---|
| 76 | 1 FORMAT(//) |
---|
| 77 | |
---|
| 78 | STOP |
---|
| 79 | END |
---|