1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | IF (ok_isccp) THEN |
---|
5 | c |
---|
6 | c pour les champs instantannes, il faut mettre la meme valeur pour |
---|
7 | c zout et zsto. |
---|
8 | c dtime est passe par ailleurs a histbeg |
---|
9 | c zsto = frequence de stockage des champs |
---|
10 | c zout = frequence d'ecriture des champs |
---|
11 | zsto = dtime |
---|
12 | c |
---|
13 | c ecriture 8 fois par jour |
---|
14 | c zout = dtime * REAL(NINT(86400./dtime*ecrit_isccp)) |
---|
15 | c ecriture toutes les 2h (12 fois par jour) |
---|
16 | c zout = dtime * 4. |
---|
17 | c ecriture toutes les 1/h (48 fois par jour) |
---|
18 | c zout = dtime |
---|
19 | c |
---|
20 | c ecriture mensuelle |
---|
21 | zout = dtime * ecrit_mth |
---|
22 | c |
---|
23 | print*,'ISCCP zout,zsto=',zout,zsto |
---|
24 | c |
---|
25 | c PRINT*, 'La frequence de sortie ISCCP est de ', ecrit_isccp |
---|
26 | c |
---|
27 | idayref = day_ref |
---|
28 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
29 | write(*,*)'ISCCP ', itau_phy, zjulian |
---|
30 | c |
---|
31 | c |
---|
32 | c definition coordonnees lon,lat en globale |
---|
33 | c |
---|
34 | CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlon,zx_lon) |
---|
35 | DO i = 1, iim |
---|
36 | zx_lon(i,1) = rlon(i+1) |
---|
37 | zx_lon(i,jjmp1) = rlon(i+1) |
---|
38 | ENDDO |
---|
39 | |
---|
40 | CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlat,zx_lat) |
---|
41 | c |
---|
42 | CALL histbeg("histISCCP.nc", iim,zx_lon(:,1),jjmp1,zx_lat(1,:), |
---|
43 | . 1, iim, 1, jjmp1, |
---|
44 | . itau_phy, zjulian, dtime, |
---|
45 | . nhori, nid_isccp) |
---|
46 | c |
---|
47 | CALL histvert(nid_isccp, "cldtopres","Cloud Top Pressure","mb", |
---|
48 | . lmaxm1, cldtopres, nvert,'down') |
---|
49 | c |
---|
50 | c variables a ecrire |
---|
51 | c |
---|
52 | DO k=1, kmaxm1 |
---|
53 | CALL histdef(nid_isccp, "cldISCCP_"//taulev(k), |
---|
54 | . "LMDZ ISCCP cld", "%", |
---|
55 | . iim, jjmp1,nhori,lmaxm1,1,lmaxm1,nvert,32, |
---|
56 | . "ave(X)", zsto,zout) |
---|
57 | ENDDO |
---|
58 | c |
---|
59 | CALL histdef(nid_isccp, "nsunlit", |
---|
60 | . "Nb of calls with sunlit ", "%", |
---|
61 | . iim, jjmp1,nhori,1,1,1,-99,32, |
---|
62 | . "ave(X)", zsto,zout) |
---|
63 | c |
---|
64 | CALL histend(nid_isccp) |
---|
65 | c |
---|
66 | ENDIF ! ok_isccp |
---|