[644] | 1 | c $Header$ |
---|
[524] | 2 | c |
---|
[644] | 3 | c sorties hf 3d |
---|
[524] | 4 | c |
---|
[684] | 5 | zstohf = ecrit_hf |
---|
| 6 | zout = ecrit_hf |
---|
[644] | 7 | c |
---|
| 8 | c PRINT*, 'La frequence de sortie hf3d est de ', ecrit_hf |
---|
| 9 | c |
---|
| 10 | idayref = day_ref |
---|
| 11 | CALL ymds2ju(annee_ref, 1, idayref, 0.0, zjulian) |
---|
| 12 | c |
---|
[767] | 13 | |
---|
| 14 | cym CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlon,zx_lon) |
---|
| 15 | cym DO i = 1, iim |
---|
| 16 | cym zx_lon(i,1) = rlon(i+1) |
---|
| 17 | cym zx_lon(i,jjmp1) = rlon(i+1) |
---|
| 18 | cym ENDDO |
---|
| 19 | |
---|
| 20 | cym CALL gr_fi_ecrit(1,klon,iim,jjmp1,rlat,zx_lat) |
---|
| 21 | |
---|
| 22 | cccIM CALL histbeg("histhf", iim,zx_lon, jjmp1,zx_lat, |
---|
| 23 | cym CALL histbeg("histhf3d", iim,zx_lon(:,1), jjmp1,zx_lat(1,:), |
---|
| 24 | cym . 1,iim,1,jjmp1, itau_phy, zjulian, dtime, |
---|
| 25 | cym . nhori, nid_hf3d) |
---|
| 26 | CALL histbeg_phy("histhf3d", itau_phy, zjulian, dtime, |
---|
[524] | 27 | . nhori, nid_hf3d) |
---|
[767] | 28 | |
---|
[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", |
---|
[776] | 35 | . iim,jj_nb,nhori, klev,1,klev,nvert, 32, |
---|
| 36 | . "ave(X)", zstohf,zout) |
---|
[524] | 37 | c |
---|
[644] | 38 | CALL histdef(nid_hf3d, "ovap", "Specific humidity", "kg/kg", |
---|
[776] | 39 | . iim,jj_nb,nhori, klev,1,klev,nvert, 32, |
---|
| 40 | . "ave(X)", zstohf,zout) |
---|
[524] | 41 | c |
---|
[644] | 42 | CALL histdef(nid_hf3d, "vitu", "Zonal wind", "m/s", |
---|
[776] | 43 | . iim,jj_nb,nhori, klev,1,klev,nvert, 32, |
---|
| 44 | . "ave(X)", zstohf,zout) |
---|
[524] | 45 | c |
---|
[644] | 46 | CALL histdef(nid_hf3d, "vitv", "Meridional wind", "m/s", |
---|
[776] | 47 | . iim,jj_nb,nhori, klev,1,klev,nvert, 32, |
---|
| 48 | . "ave(X)", zstohf,zout) |
---|
[524] | 49 | c |
---|
[644] | 50 | CALL histend(nid_hf3d) |
---|
[524] | 51 | c |
---|