[644] | 1 | SUBROUTINE ini_undefSTD(nlevSTD,itap, |
---|
[684] | 2 | $ dtime,ecrit_day,ecrit_mth, |
---|
[644] | 3 | $ tnondef,tsumSTD) |
---|
[704] | 4 | USE dimphy |
---|
[644] | 5 | IMPLICIT none |
---|
| 6 | c |
---|
| 7 | c==================================================================== |
---|
| 8 | c |
---|
| 9 | c I. Musat : 09.2004 |
---|
| 10 | c |
---|
| 11 | c Initialisation - a des frequences differentes : |
---|
| 12 | c |
---|
| 13 | c 1) des variables moyennees sur la journee "day" ou sur le mois "mth" |
---|
| 14 | c calculees a partir des valeurs "instantannees" de la physique |
---|
| 15 | c |
---|
| 16 | c 2) des variables moyennes mensuelles "NMC" calculees a partir des val. |
---|
| 17 | c toutes les 6 heures |
---|
| 18 | c |
---|
| 19 | c nout=1 !var. journaliere "day" moyenne sur tous les pas de temps |
---|
| 20 | c ! de la physique |
---|
| 21 | c nout=2 !var. mensuelle "mth" moyennee sur tous les pas de temps |
---|
| 22 | c ! de la physique |
---|
| 23 | c nout=3 !var. mensuelle "NMC" moyennee toutes les 6heures |
---|
| 24 | c |
---|
| 25 | c |
---|
| 26 | c NB: mettre "inst(X)" dans le write_histXXX.h ! |
---|
| 27 | c==================================================================== |
---|
| 28 | c |
---|
[704] | 29 | cym #include "dimensions.h" |
---|
| 30 | cym integer jjmp1 |
---|
| 31 | cym parameter (jjmp1=jjm+1-1/jjm) |
---|
| 32 | cym #include "dimphy.h" |
---|
[644] | 33 | c variables Input/Output |
---|
| 34 | INTEGER nlevSTD, klevSTD, itap |
---|
| 35 | PARAMETER(klevSTD=17) |
---|
[684] | 36 | REAL dtime |
---|
| 37 | REAL ecrit_day,ecrit_mth |
---|
[644] | 38 | c |
---|
| 39 | c variables locales |
---|
| 40 | INTEGER i, k, nout |
---|
| 41 | PARAMETER(nout=3) !nout=1 day/nout=2 mth/nout=3 NMC |
---|
| 42 | c |
---|
| 43 | c variables Output |
---|
| 44 | REAL tnondef(klon,klevSTD,nout) |
---|
| 45 | REAL tsumSTD(klon,klevSTD,nout) |
---|
| 46 | c |
---|
| 47 | c initialisation variables journalieres en debut de journee |
---|
| 48 | c |
---|
[684] | 49 | IF(MOD(itap,NINT(ecrit_day/dtime)).EQ.1.) THEN |
---|
[644] | 50 | DO k=1, nlevSTD |
---|
| 51 | DO i=1, klon |
---|
| 52 | tnondef(i,k,1)=0. |
---|
| 53 | tsumSTD(i,k,1)=0. |
---|
| 54 | ENDDO !i |
---|
| 55 | ENDDO !k |
---|
| 56 | ENDIF |
---|
| 57 | c |
---|
| 58 | c initialisation variables mensuelles (calculees a chaque pas de temps) |
---|
| 59 | c en debut de mois : nout=2 |
---|
| 60 | c |
---|
[684] | 61 | IF(MOD(itap,NINT(ecrit_mth/dtime)).EQ.1.) THEN |
---|
[644] | 62 | c |
---|
| 63 | DO k=1, nlevSTD |
---|
| 64 | DO i=1, klon |
---|
| 65 | tnondef(i,k,2)=0. |
---|
| 66 | tsumSTD(i,k,2)=0. |
---|
| 67 | ENDDO !i |
---|
| 68 | ENDDO !k |
---|
| 69 | c |
---|
| 70 | c initialisation variables mensuelles - runs type Amip - (calculees toutes les 6h) |
---|
| 71 | c en debut de mois : nout = 3 |
---|
| 72 | c |
---|
| 73 | DO k=1, nlevSTD |
---|
| 74 | DO i=1, klon |
---|
| 75 | tnondef(i,k,3)=0. |
---|
| 76 | tsumSTD(i,k,3)=0. |
---|
| 77 | ENDDO !i |
---|
| 78 | ENDDO !k |
---|
| 79 | c |
---|
| 80 | ENDIF |
---|
| 81 | c |
---|
| 82 | RETURN |
---|
| 83 | END |
---|