[524] | 1 | c |
---|
[644] | 2 | c $Header$ |
---|
[524] | 3 | c |
---|
[644] | 4 | c sorties hf 3d |
---|
[524] | 5 | c |
---|
[644] | 6 | cIM 130904 zstohf = dtime * REAL(NINT(86400./dtime*ecrit_hf)) |
---|
| 7 | cIM 130904 zout = dtime * REAL(NINT(86400./dtime*ecrit_hf)) |
---|
| 8 | cIM zstohf = dtime * FLOAT(ecrit_hf) |
---|
| 9 | cIM zout = dtime * FLOAT(ecrit_hf) |
---|
| 10 | zstohf = dtime * FLOAT(ecrit_hf) |
---|
| 11 | zout = dtime * FLOAT(ecrit_hf) |
---|
| 12 | c |
---|
| 13 | c PRINT*, 'La frequence de sortie hf3d est de ', ecrit_hf |
---|
| 14 | c |
---|
| 15 | idayref = day_ref |
---|
| 16 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
| 17 | c |
---|
| 18 | CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlon,zx_lon) |
---|
| 19 | DO i = 1, iim |
---|
| 20 | zx_lon(i,1) = rlon(i+1) |
---|
| 21 | zx_lon(i,jjmp1) = rlon(i+1) |
---|
| 22 | ENDDO |
---|
| 23 | c |
---|
| 24 | CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlat,zx_lat) |
---|
| 25 | CALL histbeg("histhf3d", iim,zx_lon(:,1), jjmp1,zx_lat(1,:), |
---|
[524] | 26 | . 1,iim,1,jjmp1, itau_phy, zjulian, dtime, |
---|
| 27 | . nhori, nid_hf3d) |
---|
| 28 | c |
---|
[644] | 29 | CALL histvert(nid_hf3d, "presnivs", "Vertical levels", "mb", |
---|
| 30 | . klev, presnivs/100., nvert) |
---|
[524] | 31 | c |
---|
| 32 | c Champs 3D: |
---|
| 33 | c |
---|
[644] | 34 | CALL histdef(nid_hf3d, "temp", "Air temperature", "K", |
---|
[524] | 35 | . iim,jjmp1,nhori, klev,1,klev,nvert, 32, |
---|
[644] | 36 | . "ave(X)", zstohf,zout) |
---|
[524] | 37 | c |
---|
[644] | 38 | CALL histdef(nid_hf3d, "ovap", "Specific humidity", "kg/kg", |
---|
[524] | 39 | . iim,jjmp1,nhori, klev,1,klev,nvert, 32, |
---|
[644] | 40 | . "ave(X)", zstohf,zout) |
---|
[524] | 41 | c |
---|
[644] | 42 | CALL histdef(nid_hf3d, "vitu", "Zonal wind", "m/s", |
---|
[524] | 43 | . iim,jjmp1,nhori, klev,1,klev,nvert, 32, |
---|
[644] | 44 | . "ave(X)", zstohf,zout) |
---|
[524] | 45 | c |
---|
[644] | 46 | CALL histdef(nid_hf3d, "vitv", "Meridional wind", "m/s", |
---|
[524] | 47 | . iim,jjmp1,nhori, klev,1,klev,nvert, 32, |
---|
[644] | 48 | . "ave(X)", zstohf,zout) |
---|
[524] | 49 | c |
---|
[644] | 50 | CALL histend(nid_hf3d) |
---|
[524] | 51 | c |
---|