[1351] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
[1374] | 4 | IF (ok_histNMC(3)) THEN |
---|
| 5 | c |
---|
[1351] | 6 | ndex3d = 0 |
---|
| 7 | itau_w = itau_phy + itap |
---|
| 8 | ccc |
---|
| 9 | c Champs interpolles sur des niveaux de pression du NMC |
---|
| 10 | c |
---|
| 11 | c PARAMETER(nout=3) |
---|
| 12 | c nout=1 : in=pdtphys, out=mth |
---|
| 13 | c nout=2 : in=pdtphys, out=day |
---|
| 14 | c nout=3 : in=pdtphys, out=hf |
---|
| 15 | ccc |
---|
| 16 | CALL histwrite_phy(nid_hfnmc,"tnondef",itau_w,tnondef(:,:,3)) |
---|
| 17 | c |
---|
| 18 | CALL histwrite_phy(nid_hfnmc,"ta",itau_w,twriteSTD3) |
---|
| 19 | c |
---|
| 20 | CALL histwrite_phy(nid_hfnmc,"zg",itau_w,phiwriteSTD3) |
---|
| 21 | c |
---|
| 22 | CALL histwrite_phy(nid_hfnmc,"hus",itau_w,qwriteSTD3) |
---|
| 23 | c |
---|
| 24 | CALL histwrite_phy(nid_hfnmc,"hur",itau_w,rhwriteSTD3) |
---|
| 25 | c |
---|
| 26 | CALL histwrite_phy(nid_hfnmc,"ua",itau_w,uwriteSTD3) |
---|
| 27 | c |
---|
| 28 | CALL histwrite_phy(nid_hfnmc,"va",itau_w,vwriteSTD3) |
---|
| 29 | c |
---|
| 30 | CALL histwrite_phy(nid_hfnmc,"wap",itau_w,wwriteSTD3) |
---|
| 31 | c |
---|
| 32 | DO k=1, nlevSTD |
---|
| 33 | DO i=1, klon |
---|
| 34 | IF(tnondef(i,k,3).NE.missing_val) THEN |
---|
[1398] | 35 | zx_tmp_fiNC(i,k) = (100.*tnondef(i,k,3))/freq_moyNMC(3) |
---|
[1351] | 36 | ELSE |
---|
| 37 | zx_tmp_fiNC(i,k) = missing_val |
---|
| 38 | ENDIF |
---|
| 39 | ENDDO |
---|
| 40 | ENDDO !k=1, nlevSTD |
---|
| 41 | c |
---|
| 42 | CALL histwrite_phy(nid_hfnmc,"psbg",itau_w,zx_tmp_fiNC) |
---|
| 43 | c |
---|
| 44 | CALL histwrite_phy(nid_hfnmc,"uv",itau_w,uvsumSTD(:,:,3)) |
---|
| 45 | c |
---|
| 46 | CALL histwrite_phy(nid_hfnmc,"vq",itau_w,vqsumSTD(:,:,3)) |
---|
| 47 | c |
---|
| 48 | CALL histwrite_phy(nid_hfnmc,"vT",itau_w,vTsumSTD(:,:,3)) |
---|
| 49 | c |
---|
| 50 | CALL histwrite_phy(nid_hfnmc,"wq",itau_w,wqsumSTD(:,:,3)) |
---|
| 51 | c |
---|
| 52 | CALL histwrite_phy(nid_hfnmc,"vphi",itau_w,vphisumSTD(:,:,3)) |
---|
| 53 | c |
---|
| 54 | CALL histwrite_phy(nid_hfnmc,"wT",itau_w,wTsumSTD(:,:,3)) |
---|
| 55 | c |
---|
| 56 | CALL histwrite_phy(nid_hfnmc,"uxu",itau_w,u2sumSTD(:,:,3)) |
---|
| 57 | c |
---|
| 58 | CALL histwrite_phy(nid_hfnmc,"vxv",itau_w,v2sumSTD(:,:,3)) |
---|
| 59 | c |
---|
| 60 | CALL histwrite_phy(nid_hfnmc,"TxT",itau_w,T2sumSTD(:,:,3)) |
---|
| 61 | c |
---|
| 62 | c ENDIF !type_run |
---|
| 63 | c |
---|
| 64 | if (ok_sync) then |
---|
| 65 | c$OMP MASTER |
---|
| 66 | call histsync(nid_hfnmc) |
---|
| 67 | c$OMP END MASTER |
---|
| 68 | endif |
---|
[1374] | 69 | c |
---|
| 70 | ENDIF ! (ok_histNMC(3)) THEN |
---|