| 1 | ! |
|---|
| 2 | ! $Header$ |
|---|
| 3 | ! |
|---|
| 4 | |
|---|
| 5 | IF (config_inca == 'none') THEN |
|---|
| 6 | ndex = 0 |
|---|
| 7 | ndex2d = 0 |
|---|
| 8 | ndex3d = 0 |
|---|
| 9 | c |
|---|
| 10 | itau_w = itau_phy + nstep |
|---|
| 11 | |
|---|
| 12 | CALL histwrite_phy(nid_tra,"phis",itau_w,pphis) |
|---|
| 13 | C |
|---|
| 14 | CALL histwrite_phy(nid_tra,"aire",itau_w,airephy) |
|---|
| 15 | |
|---|
| 16 | DO it=1,nqmax |
|---|
| 17 | C champs 2D |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | CALL histwrite_phy(nid_tra,tnom(it+2),itau_w,tr_seri(:,:,it)) |
|---|
| 21 | if (lessivage) THEN |
|---|
| 22 | CALL histwrite_phy(nid_tra,"fl"//tnom(it+2),itau_w, |
|---|
| 23 | . flestottr(:,:,it)) |
|---|
| 24 | endif |
|---|
| 25 | |
|---|
| 26 | c----Olivia |
|---|
| 27 | CALL histwrite_phy(nid_tra,"d_tr_th_"//tnom(it+2),itau_w, |
|---|
| 28 | . d_tr_th(:,:,it)) |
|---|
| 29 | |
|---|
| 30 | if(iflag_con.GE.2) then |
|---|
| 31 | CALL histwrite_phy(nid_tra,"d_tr_cv_"//tnom(it+2),itau_w, |
|---|
| 32 | . d_tr_cv(:,:,it)) |
|---|
| 33 | endif !(iflag_con.GE.2) then |
|---|
| 34 | CALL histwrite_phy(nid_tra,"d_tr_cl_"//tnom(it+2),itau_w, |
|---|
| 35 | . d_tr_cl(:,:,it)) |
|---|
| 36 | c---fin Olivia |
|---|
| 37 | |
|---|
| 38 | ENDDO |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | C abder |
|---|
| 42 | CALL histwrite_phy(nid_tra,"pyu1",itau_w,yu1) |
|---|
| 43 | |
|---|
| 44 | CALL histwrite_phy(nid_tra,"pyv1",itau_w,yv1) |
|---|
| 45 | |
|---|
| 46 | CALL histwrite_phy(nid_tra,"ftsol1",itau_w,pftsol1) |
|---|
| 47 | |
|---|
| 48 | CALL histwrite_phy(nid_tra,"ftsol2",itau_w,pftsol2) |
|---|
| 49 | |
|---|
| 50 | CALL histwrite_phy(nid_tra,"ftsol3",itau_w,pftsol3) |
|---|
| 51 | |
|---|
| 52 | CALL histwrite_phy(nid_tra,"ftsol4",itau_w,pftsol4) |
|---|
| 53 | |
|---|
| 54 | CALL histwrite_phy(nid_tra,"psrf1",itau_w,ppsrf1) |
|---|
| 55 | |
|---|
| 56 | CALL histwrite_phy(nid_tra,"psrf2",itau_w,ppsrf2) |
|---|
| 57 | |
|---|
| 58 | CALL histwrite_phy(nid_tra,"psrf3",itau_w,ppsrf3) |
|---|
| 59 | |
|---|
| 60 | CALL histwrite_phy(nid_tra,"psrf4",itau_w,ppsrf4) |
|---|
| 61 | CALL histwrite_phy(nid_tra,"pplay",itau_w,pplay) |
|---|
| 62 | |
|---|
| 63 | CALL histwrite_phy(nid_tra,"t",itau_w,t_seri) |
|---|
| 64 | CALL histwrite_phy(nid_tra,"mfu",itau_w,pmfu) |
|---|
| 65 | CALL histwrite_phy(nid_tra,"mfd",itau_w,pmfd) |
|---|
| 66 | CALL histwrite_phy(nid_tra,"en_u",itau_w,pen_u) |
|---|
| 67 | CALL histwrite_phy(nid_tra,"en_d",itau_w,pen_d) |
|---|
| 68 | CALL histwrite_phy(nid_tra,"de_d",itau_w,pde_d) |
|---|
| 69 | CALL histwrite_phy(nid_tra,"de_u",itau_w,pde_u) |
|---|
| 70 | CALL histwrite_phy(nid_tra,"coefh",itau_w,coefh) |
|---|
| 71 | |
|---|
| 72 | |
|---|
| 73 | c abder |
|---|
| 74 | |
|---|
| 75 | if (ok_sync) then |
|---|
| 76 | c$OMP MASTER |
|---|
| 77 | call histsync(nid_tra) |
|---|
| 78 | c$OMP END MASTER |
|---|
| 79 | endif |
|---|
| 80 | |
|---|
| 81 | END IF |
|---|
| 82 | |
|---|
| 83 | |
|---|
| 84 | |
|---|