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