source: LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90 @ 2530

Last change on this file since 2530 was 2530, checked in by oboucher, 8 years ago

Changing flag_aerosol_strat from logical (y/n) to
an integer (0/1/2) for CMIP6 needs

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:keywords set to Id
File size: 69.8 KB
RevLine 
[1798]1!
[2429]2! $Id: phys_output_write_mod.F90 2530 2016-05-31 11:34:05Z oboucher $
[1798]3!
4MODULE phys_output_write_mod
5
[1898]6  USE phytrac_mod, ONLY : d_tr_cl, d_tr_th, d_tr_cv, d_tr_lessi_impa, &
7       d_tr_lessi_nucl, d_tr_insc, d_tr_bcscav, d_tr_evapls, d_tr_ls,  &
8       d_tr_trsp, d_tr_sscav, d_tr_sat, d_tr_uscav
[1813]9
[1898]10  ! Author: Abderrahmane IDELKADI (original include file)
11  ! Author: Laurent FAIRHEAD (transformation to module/subroutine)
12  ! Author: Ulysse GERARD (effective implementation)
[1813]13
[1898]14CONTAINS
[1798]15
[1898]16  ! ug Routine pour définir (los du premier passageà) ET sortir les variables
17  SUBROUTINE phys_output_write(itap, pdtphys, paprs, pphis, &
18       pplay, lmax_th, aerosol_couple,         &
[2496]19       ok_ade, ok_aie, ivap, iliq, isol, new_aod, ok_sync, &
[1915]20       ptconv, read_climoz, clevSTD, ptconvth, &
[2003]21       d_t, qx, d_qx, zmasse, flag_aerosol, flag_aerosol_strat, ok_cdnc)
[1798]22
[1898]23    ! This subroutine does the actual writing of diagnostics that were
24    ! defined and initialised in phys_output_mod.F90
[1798]25
[2057]26    USE dimphy, only: klon, klev, klevp1, nslay
[2429]27    USE mod_phys_lmdz_para, ONLY: is_north_pole_phy,is_south_pole_phy
[2344]28    USE mod_grid_phy_lmdz, ONLY : nbp_lon, nbp_lat
29    USE time_phylmdz_mod, only: day_step_phy, start_time, itau_phy
[1897]30    USE phys_output_ctrlout_mod, only: o_phis, o_aire, is_ter, is_lic, is_oce, &
[1898]31         is_ave, is_sic, o_contfracATM, o_contfracOR, &
[2385]32         o_aireTER, o_flat, o_slp, o_ptstar, o_pt0, o_tsol, &
[1898]33         o_t2m, o_t2m_min, o_t2m_max, &
[2103]34         o_t2m_min_mon, o_t2m_max_mon, &
[1898]35         o_q2m, o_ustar, o_u10m, o_v10m, &
[2240]36         o_wind10m, o_wind10max, o_gusts, o_sicf, &
[1898]37         o_psol, o_mass, o_qsurf, o_qsol, &
[2516]38         o_precip, o_ndayrain, o_plul, o_pluc, o_plun, &
[2481]39         o_snow, o_msnow, o_fsnow, o_evap, o_ep,o_epmax_diag, & ! epmax_cape
[1898]40         o_tops, o_tops0, o_topl, o_topl0, &
41         o_SWupTOA, o_SWupTOAclr, o_SWdnTOA, &
42         o_SWdnTOAclr, o_nettop, o_SWup200, &
43         o_SWup200clr, o_SWdn200, o_SWdn200clr, &
44         o_LWup200, o_LWup200clr, o_LWdn200, &
45         o_LWdn200clr, o_sols, o_sols0, &
46         o_soll, o_radsol, o_soll0, o_SWupSFC, &
47         o_SWupSFCclr, o_SWdnSFC, o_SWdnSFCclr, &
48         o_LWupSFC, o_LWdnSFC, o_LWupSFCclr, &
49         o_LWdnSFCclr, o_bils, o_bils_diss, &
[2042]50         o_bils_ec,o_bils_ech, o_bils_tke, o_bils_kinetic, &
[1898]51         o_bils_latent, o_bils_enthalp, o_sens, &
[2517]52         o_fder, o_ffonte, o_fqcalving, o_fqfonte, o_runofflic, &
[1898]53         o_taux, o_tauy, o_snowsrf, o_qsnow, &
54         o_snowhgt, o_toice, o_sissnow, o_runoff, &
55         o_albslw3, o_pourc_srf, o_fract_srf, &
56         o_taux_srf, o_tauy_srf, o_tsol_srf, &
57         o_evappot_srf, o_ustar_srf, o_u10m_srf, &
58         o_v10m_srf, o_t2m_srf, o_evap_srf, &
59         o_sens_srf, o_lat_srf, o_flw_srf, &
60         o_fsw_srf, o_wbils_srf, o_wbilo_srf, &
[2159]61         o_tke_srf, o_tke_max_srf,o_dltpbltke_srf, o_wstar, &
[1898]62         o_cdrm, o_cdrh, o_cldl, o_cldm, o_cldh, &
[1924]63         o_cldt, o_JrNt, o_cldljn, o_cldmjn, &
64         o_cldhjn, o_cldtjn, o_cldq, o_lwp, o_iwp, &
65         o_ue, o_ve, o_uq, o_vq, o_cape, o_pbase, &
[1898]66         o_ptop, o_fbase, o_plcl, o_plfc, &
[2481]67         o_wbeff, o_cape_max, o_upwd, o_ep,o_epmax_diag, o_Ma, &
[1898]68         o_dnwd, o_dnwd0, o_ftime_con, o_mc, &
[2496]69         o_prw, o_prlw, o_prsw, o_s_pblh, o_s_pblt, o_s_lcl, &
[1898]70         o_s_therm, o_uSTDlevs, o_vSTDlevs, &
71         o_wSTDlevs, o_zSTDlevs, o_qSTDlevs, &
72         o_tSTDlevs, epsfra, o_t_oce_sic, &
73         o_ale_bl, o_alp_bl, o_ale_wk, o_alp_wk, &
[2393]74         o_dtvdf_x    , o_dtvdf_w    , o_dqvdf_x    , o_dqvdf_w    , &
75         o_sens_x     , o_sens_w     , o_flat_x     , o_flat_w     , &
76         o_delta_tsurf, &
77         o_cdragh_x   , o_cdragh_w   , o_cdragm_x   , o_cdragm_w   , &
78         o_kh         , o_kh_x       , o_kh_w       , &
[1898]79         o_ale, o_alp, o_cin, o_WAPE, o_wake_h, &
80         o_wake_s, o_wake_deltat, o_wake_deltaq, &
[2486]81         o_wake_omg, o_dtwak, o_dqwak, o_dqwak2d, o_Vprecip, &
[1898]82         o_ftd, o_fqd, o_wdtrainA, o_wdtrainM, &
83         o_n2, o_s2, o_proba_notrig, &
84         o_random_notrig, o_ale_bl_stat, &
85         o_ale_bl_trig, o_alp_bl_det, &
86         o_alp_bl_fluct_m, o_alp_bl_fluct_tke, &
[2057]87         o_alp_bl_conv, o_alp_bl_stat, &
88         o_slab_qflux, o_tslab, o_slab_bils, &
[2209]89         o_slab_bilg, o_slab_sic, o_slab_tice, &
[1898]90         o_weakinv, o_dthmin, o_cldtau, &
91         o_cldemi, o_pr_con_l, o_pr_con_i, &
92         o_pr_lsc_l, o_pr_lsc_i, o_re, o_fl, &
93         o_rh2m, o_rh2m_min, o_rh2m_max, &
94         o_qsat2m, o_tpot, o_tpote, o_SWnetOR, &
95         o_SWdownOR, o_LWdownOR, o_snowl, &
96         o_solldown, o_dtsvdfo, o_dtsvdft, &
[2243]97         o_dtsvdfg, o_dtsvdfi, o_z0m, o_z0h, o_od550aer, &
[1898]98         o_od865aer, o_absvisaer, o_od550lt1aer, &
[2146]99         o_sconcso4, o_sconcno3, o_sconcoa, o_sconcbc, &
100         o_sconcss, o_sconcdust, o_concso4, o_concno3, &
[1898]101         o_concoa, o_concbc, o_concss, o_concdust, &
102         o_loadso4, o_loadoa, o_loadbc, o_loadss, &
[2146]103         o_loaddust, o_tausumaero, o_tausumaero_lw, &
104         o_topswad, o_topswad0, o_solswad, o_solswad0, &
105         o_toplwad, o_toplwad0, o_sollwad, o_sollwad0, &
[1898]106         o_swtoaas_nat, o_swsrfas_nat, &
107         o_swtoacs_nat, o_swtoaas_ant, &
108         o_swsrfas_ant, o_swtoacs_ant, &
109         o_swsrfcs_ant, o_swtoacf_nat, &
110         o_swsrfcf_nat, o_swtoacf_ant, &
111         o_swsrfcs_nat, o_swsrfcf_ant, &
112         o_swtoacf_zero, o_swsrfcf_zero, &
113         o_topswai, o_solswai, o_scdnc, &
114         o_cldncl, o_reffclws, o_reffclwc, &
115         o_cldnvi, o_lcc, o_lcc3d, o_lcc3dcon, &
116         o_lcc3dstra, o_reffclwtop, o_ec550aer, &
117         o_lwcon, o_iwcon, o_temp, o_theta, &
118         o_ovapinit, o_ovap, o_oliq, o_geop, &
119         o_vitu, o_vitv, o_vitw, o_pres, o_paprs, &
[1924]120         o_zfull, o_zhalf, o_rneb, o_rnebjn, o_rnebcon, &
[1898]121         o_rnebls, o_rhum, o_ozone, o_ozone_light, &
[2496]122         o_dtphy, o_dqphy, o_dqphy2d, o_dqlphy, o_dqlphy2d, &
123         o_dqsphy, o_dqsphy2d, o_albe_srf, o_z0m_srf, o_z0h_srf, &
[2209]124         o_ages_srf, o_snow_srf, o_alb1, o_alb2, o_tke, &
[1898]125         o_tke_max, o_kz, o_kz_max, o_clwcon, &
[2496]126         o_dtdyn, o_dqdyn, o_dqdyn2d, o_dqldyn, o_dqldyn2d, &
127         o_dqsdyn, o_dqsdyn2d, o_dudyn, o_dvdyn, &
[1898]128         o_dtcon, o_tntc, o_ducon, o_dvcon, &
[2486]129         o_dqcon, o_dqcon2d, o_tnhusc, o_tnhusc, o_dtlsc, &
130         o_dtlschr, o_dqlsc, o_dqlsc2d, o_beta_prec, &
131         o_dtlscth, o_dtlscst, o_dqlscth, o_dqlscth2d, &
132         o_dqlscst, o_dqlscst2d, o_plulth, o_plulst, &
[1898]133         o_ptconvth, o_lmaxth, o_dtvdf, &
[2486]134         o_dtdis, o_dqvdf, o_dqvdf2d, o_dteva, o_dqeva, o_dqeva2d, &
[1903]135         o_ptconv, o_ratqs, o_dtthe, &
136         o_duthe, o_dvthe, o_ftime_th, &
[1898]137         o_f_th, o_e_th, o_w_th, o_q_th, &
138         o_a_th, o_d_th, o_f0_th, o_zmax_th, &
[2486]139         o_dqthe, o_dqthe2d, o_dtajs, o_dqajs, o_dqajs2d, o_dtswr, &
[1898]140         o_dtsw0, o_dtlwr, o_dtlw0, o_dtec, &
141         o_duvdf, o_dvvdf, o_duoro, o_dvoro, &
142         o_dtoro, o_dulif, o_dvlif, o_dtlif, &
[2333]143         o_du_gwd_hines, o_dv_gwd_hines, o_dthin, o_dqch4, o_rsu, &
144         o_du_gwd_front, o_dv_gwd_front, &
145         o_east_gwstress, o_west_gwstress, &
[1898]146         o_rsd, o_rlu, o_rld, o_rsucs, o_rsdcs, &
147         o_rlucs, o_rldcs, o_tnt, o_tntr, &
148         o_tntscpbl, o_tnhus, o_tnhusscpbl, &
149         o_evu, o_h2o, o_mcd, o_dmc, o_ref_liq, &
150         o_ref_ice, o_rsut4co2, o_rlut4co2, &
151         o_rsutcs4co2, o_rlutcs4co2, o_rsu4co2, &
152         o_rlu4co2, o_rsucs4co2, o_rlucs4co2, &
153         o_rsd4co2, o_rld4co2, o_rsdcs4co2, &
154         o_rldcs4co2, o_tnondef, o_ta, o_zg, &
155         o_hus, o_hur, o_ua, o_va, o_wap, &
156         o_psbg, o_tro3, o_tro3_daylight, &
157         o_uxv, o_vxq, o_vxT, o_wxq, o_vxphi, &
158         o_wxT, o_uxu, o_vxv, o_TxT, o_trac, &
159         o_dtr_vdf, o_dtr_the, o_dtr_con, &
160         o_dtr_lessi_impa, o_dtr_lessi_nucl, &
161         o_dtr_insc, o_dtr_bcscav, o_dtr_evapls, &
162         o_dtr_ls, o_dtr_trsp, o_dtr_sscav, &
[1938]163         o_dtr_sat, o_dtr_uscav, o_trac_cum, o_du_gwd_rando, o_dv_gwd_rando, &
[2333]164         o_ustr_gwd_hines,o_vstr_gwd_hines,o_ustr_gwd_rando,o_vstr_gwd_rando, &
165         o_ustr_gwd_front,o_vstr_gwd_front
[1798]166
[1897]167    USE phys_state_var_mod, only: pctsrf, paire_ter, rain_fall, snow_fall, &
[2243]168         qsol, z0m, z0h, fevap, agesno, &
[1898]169         nday_rain, rain_con, snow_con, &
170         topsw, toplw, toplw0, swup, swdn, &
171         topsw0, swup0, swdn0, SWup200, SWup200clr, &
172         SWdn200, SWdn200clr, LWup200, LWup200clr, &
173         LWdn200, LWdn200clr, solsw, solsw0, sollw, &
[2366]174         radsol, swradcorr, sollw0, sollwdown, sollw, gustiness, &
[1898]175         sollwdownclr, lwdn0, ftsol, ustar, u10m, &
[2159]176         v10m, pbl_tke, wake_delta_pbl_TKE, &
[2393]177         delta_tsurf, &
[2159]178         wstar, cape, ema_pcb, ema_pct, &
[1898]179         ema_cbmf, Ma, fm_therm, ale_bl, alp_bl, ale, &
180         alp, cin, wake_pe, wake_s, wake_deltat, &
181         wake_deltaq, ftd, fqd, ale_bl_trig, albsol1, &
182         rnebcon, wo, falb1, albsol2, coefh, clwcon0, &
[2194]183         ratqs, entr_therm, zqasc, detr_therm, f0, &
184         lwup, lwdn, lwup0, coefm, &
[1898]185         swupp, lwupp, swup0p, lwup0p, swdnp, lwdnp, &
186         swdn0p, lwdn0p, tnondef, O3sumSTD, uvsumSTD, &
187         vqsumSTD, vTsumSTD, O3daysumSTD, wqsumSTD, &
188         vphisumSTD, wTsumSTD, u2sumSTD, v2sumSTD, &
[2333]189         T2sumSTD, nlevSTD, du_gwd_rando, du_gwd_front, &
[2271]190         ulevSTD, vlevSTD, wlevSTD, philevSTD, qlevSTD, tlevSTD, &
[2282]191         rhlevSTD, O3STD, O3daySTD, uvSTD, vqSTD, vTSTD, wqSTD, &
192         vphiSTD, wTSTD, u2STD, v2STD, T2STD, missing_val_nf90
[1898]193
[2385]194    USE phys_local_var_mod, only: zxfluxlat, slp, ptstar, pt0, zxtsol, zt2m, &
[2243]195         t2m_min_mon, t2m_max_mon, evap, &
196         zu10m, zv10m, zq2m, zustar, zxqsurf, &
[2516]197         rain_lsc, rain_num, snow_lsc, bils, sens, fder, &
[2517]198         zxffonte, zxfqcalving, zxfqfonte, zxrunofflic, fluxu, &
[1898]199         fluxv, zxsnow, qsnow, snowhgt, to_ice, &
200         sissnow, runoff, albsol3_lic, evap_pot, &
[2243]201         t2m, fluxt, fluxlat, fsollw, fsolsw, &
[1898]202         wfbils, wfbilo, cdragm, cdragh, cldl, cldm, &
[1924]203         cldh, cldt, JrNt, cldljn, cldmjn, cldhjn, &
204         cldtjn, cldq, flwp, fiwp, ue, ve, uq, vq, &
[2496]205         plcl, plfc, wbeff, upwd, dnwd, dnwd0, prw, prlw, prsw, &
[1898]206         s_pblh, s_pblt, s_lcl, s_therm, uwriteSTD, &
207         vwriteSTD, wwriteSTD, phiwriteSTD, qwriteSTD, &
[2393]208         twriteSTD, ale_wake, alp_wake, &
209         dtvdf_x    ,dtvdf_w    ,dqvdf_x    ,dqvdf_w    , &
210         sens_x     ,sens_w     ,zxfluxlat_x,zxfluxlat_w, &
211         cdragh_x   ,cdragh_w   ,cdragm_x   ,cdragm_w   , &
212         kh         ,kh_x       ,kh_w       , &
213         wake_h, &
[1898]214         wake_omg, d_t_wake, d_q_wake, Vprecip, &
215         wdtrainA, wdtrainM, n2, s2, proba_notrig, &
216         random_notrig, ale_bl_stat, &
217         alp_bl_det, alp_bl_fluct_m, alp_bl_conv, &
218         alp_bl_stat, alp_bl_fluct_tke, slab_wfbils, &
219         weak_inversion, dthmin, cldtau, cldemi, &
220         pmflxr, pmflxs, prfl, psfl, re, fl, rh2m, &
[2243]221         qsat2m, tpote, tpot, d_ts, od550aer, &
[2146]222         od865aer, absvisaer, od550lt1aer, sconcso4, sconcno3, &
223         sconcoa, sconcbc, sconcss, sconcdust, concso4, concno3, &
[1898]224         concoa, concbc, concss, concdust, loadso4, &
225         loadoa, loadbc, loadss, loaddust, tausum_aero, &
226         topswad_aero, topswad0_aero, solswad_aero, &
227         solswad0_aero, topsw_aero, solsw_aero, &
228         topsw0_aero, solsw0_aero, topswcf_aero, &
229         solswcf_aero, topswai_aero, solswai_aero, &
[2146]230         toplwad_aero, toplwad0_aero, sollwad_aero, &
231         sollwad0_aero, toplwai_aero, sollwai_aero, &
[1898]232         scdnc, cldncl, reffclws, reffclwc, cldnvi, &
233         lcc, lcc3d, lcc3dcon, lcc3dstra, reffclwtop, &
234         ec550aer, flwc, fiwc, t_seri, theta, q_seri, &
[2284]235         ql_seri, tr_seri, &
236         zphi, u_seri, v_seri, omega, cldfra, &
[2499]237         rneb, rnebjn, zx_rh, d_t_dyn,  &
238         d_q_dyn,  d_ql_dyn, d_qs_dyn, &
239         d_q_dyn2d,  d_ql_dyn2d, d_qs_dyn2d, &
[1898]240         d_u_dyn, d_v_dyn, d_t_con, d_t_ajsb, d_t_ajs, &
[1943]241         d_u_ajs, d_v_ajs, &
[1898]242         d_u_con, d_v_con, d_q_con, d_q_ajs, d_t_lsc, &
[2194]243         d_t_lwr,d_t_lw0,d_t_swr,d_t_sw0, &
[1898]244         d_t_eva, d_q_lsc, beta_prec, d_t_lscth, &
245         d_t_lscst, d_q_lscth, d_q_lscst, plul_th, &
246         plul_st, d_t_vdf, d_t_diss, d_q_vdf, d_q_eva, &
247         zw2, fraca, zmax_th, d_q_ajsb, d_t_ec, d_u_vdf, &
248         d_v_vdf, d_u_oro, d_v_oro, d_t_oro, d_u_lif, &
[2333]249         d_v_lif, d_t_lif, du_gwd_hines, dv_gwd_hines, d_t_hin, &
250         dv_gwd_rando, dv_gwd_front, &
251         east_gwstress, west_gwstress, &
[2481]252         d_q_ch4, pmfd, pmfu, ref_liq, ref_ice, rhwriteSTD, &
253         ep, epmax_diag ! epmax_cape
[1898]254
[1897]255    USE phys_output_var_mod, only: vars_defined, snow_o, zfra_o, bils_diss, &
[2042]256         bils_ec,bils_ech, bils_tke, bils_kinetic, bils_latent, bils_enthalp, &
[2333]257         itau_con, nfiles, clef_files, nid_files, &
258         zustr_gwd_hines, zvstr_gwd_hines,zustr_gwd_rando, zvstr_gwd_rando, &
259         zustr_gwd_front, zvstr_gwd_front                                   
[2209]260    USE ocean_slab_mod, only: tslab, slab_bils, slab_bilg, tice, seaice
261    USE pbl_surface_mod, only: snow
[1897]262    USE indice_sol_mod, only: nbsrf
[2320]263    USE infotrac_phy, only: nqtot, nqo, type_trac
[2351]264    USE geometry_mod, only: cell_area
[2209]265    USE surface_data, only: type_ocean, version_ocean, ok_veget, ok_snow
[2003]266!    USE aero_mod, only: naero_spc
[2146]267    USE aero_mod, only: naero_tot, id_STRAT_phy
[1897]268    USE ioipsl, only: histend, histsync
269    USE iophy, only: set_itau_iophy, histwrite_phy
270    USE netcdf, only: nf90_fill_real
[2319]271    USE print_control_mod, ONLY: prt_level,lunout
[1897]272
[2319]273
[1825]274#ifdef CPP_XIOS
275    ! ug Pour les sorties XIOS
[2002]276    USE xios, ONLY: xios_update_calendar
[2271]277    USE wxios, only: wxios_closedef, missing_val
[1825]278#endif
[1915]279    USE phys_cal_mod, only : mth_len
[1825]280
[2114]281
[1798]282    IMPLICIT NONE
283
[2114]284
[1798]285    INCLUDE "clesphys.h"
286    INCLUDE "thermcell.h"
287    INCLUDE "compbl.h"
288    INCLUDE "YOMCST.h"
289
[1898]290    ! Input
[2496]291    INTEGER :: itap, ivap, iliq, isol, read_climoz
[1798]292    INTEGER, DIMENSION(klon) :: lmax_th
293    LOGICAL :: aerosol_couple, ok_sync
294    LOGICAL :: ok_ade, ok_aie, new_aod
295    LOGICAL, DIMENSION(klon, klev) :: ptconv, ptconvth
296    REAL :: pdtphys
297    CHARACTER (LEN=4), DIMENSION(nlevSTD) :: clevSTD
[1971]298    REAL, DIMENSION(klon,nlevSTD) :: zx_tmp_fi3d_STD
[1798]299    REAL, DIMENSION(klon) :: pphis
300    REAL, DIMENSION(klon, klev) :: pplay, d_t
301    REAL, DIMENSION(klon, klev+1) :: paprs
302    REAL, DIMENSION(klon,klev,nqtot) :: qx, d_qx
[2344]303    REAL, DIMENSION(klon, klev) :: zmasse
[2530]304    INTEGER :: flag_aerosol_strat
[2003]305    INTEGER :: flag_aerosol
306    LOGICAL :: ok_cdnc
[1828]307    REAL, DIMENSION(3) :: freq_moyNMC
[1798]308
[1898]309    ! Local
[1798]310    INTEGER :: itau_w
[1821]311    INTEGER :: i, iinit, iinitend=1, iff, iq, nsrf, k, ll, naero
[1798]312    REAL, DIMENSION (klon) :: zx_tmp_fi2d
313    REAL, DIMENSION (klon,klev) :: zx_tmp_fi3d, zpt_conv
314    REAL, DIMENSION (klon,klev+1) :: zx_tmp_fi3d1
315    CHARACTER (LEN=4)              :: bb2
[2344]316    INTEGER, DIMENSION(nbp_lon*nbp_lat)  :: ndex2d
317    INTEGER, DIMENSION(nbp_lon*nbp_lat*klev) :: ndex3d
[1798]318    REAL, PARAMETER :: dobson_u = 2.1415e-05 ! Dobson unit, in kg m-2
[2271]319!   REAL, PARAMETER :: missing_val=nf90_fill_real
320#ifndef CPP_XIOS
321    REAL :: missing_val
322#endif
[1915]323    REAL, PARAMETER :: un_jour=86400.
[1798]324
[1898]325    ! On calcul le nouveau tau:
[2344]326    itau_w = itau_phy + itap + start_time * day_step_phy
[1898]327    ! On le donne à iophy pour que les histwrite y aient accès:
328    CALL set_itau_iophy(itau_w)
329
[1821]330    IF(.NOT.vars_defined) THEN
[1898]331       iinitend = 2
[1821]332    ELSE
[1898]333       iinitend = 1
[1798]334    ENDIF
[1898]335
336    ! ug la boucle qui suit ne sert qu'une fois, pour l'initialisation, sinon il n'y a toujours qu'un seul passage:
337    DO iinit=1, iinitend
[1825]338#ifdef CPP_XIOS
[1898]339       !$OMP MASTER
340       IF (vars_defined) THEN
341          if (prt_level >= 10) then
[2002]342             write(lunout,*)"phys_output_write: call xios_update_calendar, itau_w=",itau_w
[1898]343          endif
[2095]344!          CALL xios_update_calendar(itau_w)
345          CALL xios_update_calendar(itap)
[1898]346       END IF
347       !$OMP END MASTER
348       !$OMP BARRIER
[1825]349#endif
[1898]350       ! On procède à l'écriture ou à la définition des nombreuses variables:
[1813]351!!! Champs 1D !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[1898]352       CALL histwrite_phy(o_phis, pphis)
[1798]353
[2429]354       zx_tmp_fi2d = cell_area
355       if (is_north_pole_phy) then
356         zx_tmp_fi2d(1) = cell_area(1)/nbp_lon
357       endif
358       if (is_south_pole_phy) then
359         zx_tmp_fi2d(klon) = cell_area(klon)/nbp_lon
360       endif
361       CALL histwrite_phy(o_aire, zx_tmp_fi2d)
362
[1898]363       IF (vars_defined) THEN
364          DO i=1, klon
365             zx_tmp_fi2d(i)=pctsrf(i,is_ter)+pctsrf(i,is_lic)
366          ENDDO
367       ENDIF
[1813]368
[1898]369       CALL histwrite_phy(o_contfracATM, zx_tmp_fi2d)
370       CALL histwrite_phy(o_contfracOR, pctsrf(:,is_ter))
371       CALL histwrite_phy(o_aireTER, paire_ter)
[1813]372!!! Champs 2D !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[1898]373       CALL histwrite_phy(o_flat, zxfluxlat)
[2385]374       CALL histwrite_phy(o_ptstar, ptstar)
375       CALL histwrite_phy(o_pt0, pt0)
[1898]376       CALL histwrite_phy(o_slp, slp)
377       CALL histwrite_phy(o_tsol, zxtsol)
378       CALL histwrite_phy(o_t2m, zt2m)
379       CALL histwrite_phy(o_t2m_min, zt2m)
380       CALL histwrite_phy(o_t2m_max, zt2m)
[2146]381       CALL histwrite_phy(o_t2m_max_mon, t2m_max_mon)
382       CALL histwrite_phy(o_t2m_min_mon, t2m_min_mon)
[1813]383
[1898]384       IF (vars_defined) THEN
385          DO i=1, klon
386             zx_tmp_fi2d(i)=SQRT(zu10m(i)*zu10m(i)+zv10m(i)*zv10m(i))
387          ENDDO
388       ENDIF
389       CALL histwrite_phy(o_wind10m, zx_tmp_fi2d)
[1813]390
[1898]391       IF (vars_defined) THEN
392          DO i=1, klon
393             zx_tmp_fi2d(i)=SQRT(zu10m(i)*zu10m(i)+zv10m(i)*zv10m(i))
394          ENDDO
395       ENDIF
396       CALL histwrite_phy(o_wind10max, zx_tmp_fi2d)
[1813]397
[2240]398       CALL histwrite_phy(o_gusts, gustiness)
399
[1898]400       IF (vars_defined) THEN
401          DO i = 1, klon
402             zx_tmp_fi2d(i) = pctsrf(i,is_sic)
403          ENDDO
404       ENDIF
405       CALL histwrite_phy(o_sicf, zx_tmp_fi2d)
406       CALL histwrite_phy(o_q2m, zq2m)
407       CALL histwrite_phy(o_ustar, zustar)
408       CALL histwrite_phy(o_u10m, zu10m)
409       CALL histwrite_phy(o_v10m, zv10m)
[1813]410
[1898]411       IF (vars_defined) THEN
412          DO i = 1, klon
413             zx_tmp_fi2d(i) = paprs(i,1)
414          ENDDO
415       ENDIF
416       CALL histwrite_phy(o_psol, zx_tmp_fi2d)
417       CALL histwrite_phy(o_mass, zmasse)
418       CALL histwrite_phy(o_qsurf, zxqsurf)
[1813]419
[1898]420       IF (.NOT. ok_veget) THEN
421          CALL histwrite_phy(o_qsol, qsol)
422       ENDIF
[1813]423
[1898]424       IF (vars_defined) THEN
425          DO i = 1, klon
426             zx_tmp_fi2d(i) = rain_fall(i) + snow_fall(i)
427          ENDDO
428       ENDIF
[1813]429
[1898]430       CALL histwrite_phy(o_precip, zx_tmp_fi2d)
431       CALL histwrite_phy(o_ndayrain, nday_rain)
[1813]432
[2481]433       ! epmax_cape:
[2483]434!       CALL histwrite_phy(o_epmax_diag, epmax_diag)
[2481]435       CALL histwrite_phy(o_ep, ep)
436
[1898]437       IF (vars_defined) THEN
438          DO i = 1, klon
439             zx_tmp_fi2d(i) = rain_lsc(i) + snow_lsc(i)
440          ENDDO
441       ENDIF
442       CALL histwrite_phy(o_plul, zx_tmp_fi2d)
[2516]443       CALL histwrite_phy(o_plun, rain_num)
[1813]444
[1898]445       IF (vars_defined) THEN
446          DO i = 1, klon
447             zx_tmp_fi2d(i) = rain_con(i) + snow_con(i)
448          ENDDO
449       ENDIF
450       CALL histwrite_phy(o_pluc, zx_tmp_fi2d)
451       CALL histwrite_phy(o_snow, snow_fall)
[2209]452       CALL histwrite_phy(o_msnow, zxsnow)
[1898]453       CALL histwrite_phy(o_fsnow, zfra_o)
454       CALL histwrite_phy(o_evap, evap)
[2366]455       CALL histwrite_phy(o_tops, topsw*swradcorr)
456       CALL histwrite_phy(o_tops0, topsw0*swradcorr)
[1898]457       CALL histwrite_phy(o_topl, toplw)
458       CALL histwrite_phy(o_topl0, toplw0)
[1813]459
[1898]460       IF (vars_defined) THEN
[2366]461          zx_tmp_fi2d(:) = swup(:,klevp1)*swradcorr(:)
[1898]462       ENDIF
463       CALL histwrite_phy(o_SWupTOA, zx_tmp_fi2d)
[1813]464
[1898]465       IF (vars_defined) THEN
[2366]466          zx_tmp_fi2d(:) = swup0(:,klevp1)*swradcorr(:)
[1898]467       ENDIF
468       CALL histwrite_phy(o_SWupTOAclr, zx_tmp_fi2d)
[1813]469
[1898]470       IF (vars_defined) THEN
[2366]471          zx_tmp_fi2d(:) = swdn(:,klevp1)*swradcorr(:)
[1898]472       ENDIF
473       CALL histwrite_phy(o_SWdnTOA, zx_tmp_fi2d)
[1813]474
[1898]475       IF (vars_defined) THEN
[2366]476          zx_tmp_fi2d(:) = swdn0(:,klevp1)*swradcorr(:)
[1898]477       ENDIF
478       CALL histwrite_phy(o_SWdnTOAclr, zx_tmp_fi2d)
[1813]479
[1898]480       IF (vars_defined) THEN
[2366]481          zx_tmp_fi2d(:) = topsw(:)*swradcorr(:)-toplw(:)
[1898]482       ENDIF
483       CALL histwrite_phy(o_nettop, zx_tmp_fi2d)
[2366]484       CALL histwrite_phy(o_SWup200, SWup200*swradcorr)
485       CALL histwrite_phy(o_SWup200clr, SWup200clr*swradcorr)
486       CALL histwrite_phy(o_SWdn200, SWdn200*swradcorr)
487       CALL histwrite_phy(o_SWdn200clr, SWdn200clr*swradcorr)
[1898]488       CALL histwrite_phy(o_LWup200, LWup200)
489       CALL histwrite_phy(o_LWup200clr, LWup200clr)
490       CALL histwrite_phy(o_LWdn200, LWdn200)
491       CALL histwrite_phy(o_LWdn200clr, LWdn200clr)
[2366]492       CALL histwrite_phy(o_sols, solsw*swradcorr)
493       CALL histwrite_phy(o_sols0, solsw0*swradcorr)
[1898]494       CALL histwrite_phy(o_soll, sollw)
[2366]495       CALL histwrite_phy(o_soll0, sollw0)
[1898]496       CALL histwrite_phy(o_radsol, radsol)
[1813]497
[1898]498       IF (vars_defined) THEN
[2366]499          zx_tmp_fi2d(:) = swup(:,1)*swradcorr(:)
[1898]500       ENDIF
501       CALL histwrite_phy(o_SWupSFC, zx_tmp_fi2d)
[1813]502
[1898]503       IF (vars_defined) THEN
[2366]504          zx_tmp_fi2d(:) = swup0(:,1)*swradcorr(:)
[1898]505       ENDIF
506       CALL histwrite_phy(o_SWupSFCclr, zx_tmp_fi2d)
[1813]507
[1898]508       IF (vars_defined) THEN
[2366]509          zx_tmp_fi2d(:) = swdn(:,1)*swradcorr(:)
[1898]510       ENDIF
511       CALL histwrite_phy(o_SWdnSFC, zx_tmp_fi2d)
[1813]512
[1898]513       IF (vars_defined) THEN
[2366]514          zx_tmp_fi2d(:) = swdn0(:,1)*swradcorr(:)
[1898]515       ENDIF
516       CALL histwrite_phy(o_SWdnSFCclr, zx_tmp_fi2d)
[1813]517
[1898]518       IF (vars_defined) THEN
[2366]519          zx_tmp_fi2d(:)=sollwdown(:)-sollw(:)
[1898]520       ENDIF
521       CALL histwrite_phy(o_LWupSFC, zx_tmp_fi2d)
522       CALL histwrite_phy(o_LWdnSFC, sollwdown)
[1813]523
[1898]524       IF (vars_defined) THEN
525          sollwdownclr(1:klon) = -1.*lwdn0(1:klon,1)
526          zx_tmp_fi2d(1:klon)=sollwdownclr(1:klon)-sollw0(1:klon)
527       ENDIF
528       CALL histwrite_phy(o_LWupSFCclr, zx_tmp_fi2d)
529       CALL histwrite_phy(o_LWdnSFCclr, sollwdownclr)
530       CALL histwrite_phy(o_bils, bils)
531       CALL histwrite_phy(o_bils_diss, bils_diss)
532       CALL histwrite_phy(o_bils_ec, bils_ec)
[2051]533       IF (iflag_ener_conserv>=1) THEN
534         CALL histwrite_phy(o_bils_ech, bils_ech)
535       ENDIF
[1898]536       CALL histwrite_phy(o_bils_tke, bils_tke)
537       CALL histwrite_phy(o_bils_kinetic, bils_kinetic)
538       CALL histwrite_phy(o_bils_latent, bils_latent)
539       CALL histwrite_phy(o_bils_enthalp, bils_enthalp)
[1813]540
[1898]541       IF (vars_defined) THEN
542          zx_tmp_fi2d(1:klon)=-1*sens(1:klon)
543       ENDIF
544       CALL histwrite_phy(o_sens, zx_tmp_fi2d)
545       CALL histwrite_phy(o_fder, fder)
546       CALL histwrite_phy(o_ffonte, zxffonte)
547       CALL histwrite_phy(o_fqcalving, zxfqcalving)
548       CALL histwrite_phy(o_fqfonte, zxfqfonte)
[2517]549       CALL histwrite_phy(o_runofflic, zxrunofflic)
[1898]550       IF (vars_defined) THEN
551          zx_tmp_fi2d=0.
552          DO nsrf=1,nbsrf
553             zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+pctsrf(:,nsrf)*fluxu(:,1,nsrf)
554          ENDDO
555       ENDIF
556       CALL histwrite_phy(o_taux, zx_tmp_fi2d)
[1813]557
[1898]558       IF (vars_defined) THEN
559          zx_tmp_fi2d=0.
560          DO nsrf=1,nbsrf
561             zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+pctsrf(:,nsrf)*fluxv(:,1,nsrf)
562          ENDDO
563       ENDIF
564       CALL histwrite_phy(o_tauy, zx_tmp_fi2d)
[1813]565
[1898]566       IF (ok_snow) THEN
[2209]567          CALL histwrite_phy(o_snowsrf, snow_o)
[1898]568          CALL histwrite_phy(o_qsnow, qsnow)
569          CALL histwrite_phy(o_snowhgt,snowhgt)
570          CALL histwrite_phy(o_toice,to_ice)
571          CALL histwrite_phy(o_sissnow,sissnow)
572          CALL histwrite_phy(o_runoff,runoff)
573          CALL histwrite_phy(o_albslw3,albsol3_lic)
574       ENDIF
[1813]575
[1898]576       DO nsrf = 1, nbsrf
577          IF (vars_defined)             zx_tmp_fi2d(1 : klon) = pctsrf( 1 : klon, nsrf)*100.
578          CALL histwrite_phy(o_pourc_srf(nsrf), zx_tmp_fi2d)
579          IF (vars_defined)           zx_tmp_fi2d(1 : klon) = pctsrf( 1 : klon, nsrf)
580          CALL histwrite_phy(o_fract_srf(nsrf), zx_tmp_fi2d)
581          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = fluxu( 1 : klon, 1, nsrf)
582          CALL histwrite_phy(o_taux_srf(nsrf), zx_tmp_fi2d)
583          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = fluxv( 1 : klon, 1, nsrf)
584          CALL histwrite_phy(o_tauy_srf(nsrf), zx_tmp_fi2d)
585          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = ftsol( 1 : klon, nsrf)
586          CALL histwrite_phy(o_tsol_srf(nsrf), zx_tmp_fi2d)
587          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = evap_pot( 1 : klon, nsrf)
588          CALL histwrite_phy(o_evappot_srf(nsrf), zx_tmp_fi2d)
589          IF (vars_defined)       zx_tmp_fi2d(1 : klon) = ustar(1 : klon, nsrf)
590          CALL histwrite_phy(o_ustar_srf(nsrf), zx_tmp_fi2d)
591          IF (vars_defined)       zx_tmp_fi2d(1 : klon) = u10m(1 : klon, nsrf)
592          CALL histwrite_phy(o_u10m_srf(nsrf), zx_tmp_fi2d)
593          IF (vars_defined)       zx_tmp_fi2d(1 : klon) = v10m(1 : klon, nsrf)
594          CALL histwrite_phy(o_v10m_srf(nsrf), zx_tmp_fi2d)
595          IF (vars_defined)       zx_tmp_fi2d(1 : klon) = t2m(1 : klon, nsrf)
596          CALL histwrite_phy(o_t2m_srf(nsrf), zx_tmp_fi2d)
597          IF (vars_defined)       zx_tmp_fi2d(1 : klon) = fevap(1 : klon, nsrf)
598          CALL histwrite_phy(o_evap_srf(nsrf), zx_tmp_fi2d)
599          IF (vars_defined)        zx_tmp_fi2d(1 : klon) = fluxt( 1 : klon, 1, nsrf)
600          CALL histwrite_phy(o_sens_srf(nsrf), zx_tmp_fi2d)
601          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = fluxlat( 1 : klon, nsrf)
602          CALL histwrite_phy(o_lat_srf(nsrf), zx_tmp_fi2d)
603          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = fsollw( 1 : klon, nsrf)
604          CALL histwrite_phy(o_flw_srf(nsrf), zx_tmp_fi2d)
605          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = fsolsw( 1 : klon, nsrf)
606          CALL histwrite_phy(o_fsw_srf(nsrf), zx_tmp_fi2d)
607          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = wfbils( 1 : klon, nsrf)
608          CALL histwrite_phy(o_wbils_srf(nsrf), zx_tmp_fi2d)
609          IF (vars_defined)         zx_tmp_fi2d(1 : klon) = wfbilo( 1 : klon, nsrf)
610          CALL histwrite_phy(o_wbilo_srf(nsrf), zx_tmp_fi2d)
[1865]611
[1898]612          IF (iflag_pbl > 1) THEN
613             CALL histwrite_phy(o_tke_srf(nsrf),  pbl_tke(:,1:klev,nsrf))
614             CALL histwrite_phy(o_tke_max_srf(nsrf),  pbl_tke(:,1:klev,nsrf))
615          ENDIF
[2159]616!jyg<
[2255]617          IF (iflag_pbl > 1 .AND. iflag_wake>=1  .AND. iflag_pbl_split >=1) THEN
[2159]618             CALL histwrite_phy(o_dltpbltke_srf(nsrf), wake_delta_pbl_TKE(:,1:klev,nsrf))
619          ENDIF
620!>jyg
[1813]621
[1898]622       ENDDO
623       DO nsrf=1,nbsrf+1
624          CALL histwrite_phy(o_wstar(nsrf), wstar(1 : klon, nsrf))
625       ENDDO
[1813]626
[1898]627       CALL histwrite_phy(o_cdrm, cdragm)
628       CALL histwrite_phy(o_cdrh, cdragh)
629       CALL histwrite_phy(o_cldl, cldl)
630       CALL histwrite_phy(o_cldm, cldm)
631       CALL histwrite_phy(o_cldh, cldh)
632       CALL histwrite_phy(o_cldt, cldt)
[1924]633       CALL histwrite_phy(o_JrNt, JrNt)
634       CALL histwrite_phy(o_cldljn, cldl*JrNt)
635       CALL histwrite_phy(o_cldmjn, cldm*JrNt)
636       CALL histwrite_phy(o_cldhjn, cldh*JrNt)
637       CALL histwrite_phy(o_cldtjn, cldt*JrNt)
[1898]638       CALL histwrite_phy(o_cldq, cldq)
639       IF (vars_defined)       zx_tmp_fi2d(1:klon) = flwp(1:klon)
640       CALL histwrite_phy(o_lwp, zx_tmp_fi2d)
641       IF (vars_defined)       zx_tmp_fi2d(1:klon) = fiwp(1:klon)
642       CALL histwrite_phy(o_iwp, zx_tmp_fi2d)
643       CALL histwrite_phy(o_ue, ue)
644       CALL histwrite_phy(o_ve, ve)
645       CALL histwrite_phy(o_uq, uq)
646       CALL histwrite_phy(o_vq, vq)
647       IF(iflag_con.GE.3) THEN ! sb
648          CALL histwrite_phy(o_cape, cape)
649          CALL histwrite_phy(o_pbase, ema_pcb)
650          CALL histwrite_phy(o_ptop, ema_pct)
651          CALL histwrite_phy(o_fbase, ema_cbmf)
652          if (iflag_con /= 30) then
653             CALL histwrite_phy(o_plcl, plcl)
654             CALL histwrite_phy(o_plfc, plfc)
655             CALL histwrite_phy(o_wbeff, wbeff)
656          end if
[1816]657
[1898]658          CALL histwrite_phy(o_cape_max, cape)
[1813]659
[1898]660          CALL histwrite_phy(o_upwd, upwd)
661          CALL histwrite_phy(o_Ma, Ma)
662          CALL histwrite_phy(o_dnwd, dnwd)
663          CALL histwrite_phy(o_dnwd0, dnwd0)
664          IF (vars_defined)         zx_tmp_fi2d=float(itau_con)/float(itap)
665          CALL histwrite_phy(o_ftime_con, zx_tmp_fi2d)
666          IF (vars_defined) THEN
667             IF(iflag_thermals>=1)THEN
668                zx_tmp_fi3d=dnwd+dnwd0+upwd+fm_therm(:,1:klev)
669             ELSE
670                zx_tmp_fi3d=dnwd+dnwd0+upwd
671             ENDIF
672          ENDIF
673          CALL histwrite_phy(o_mc, zx_tmp_fi3d)
674       ENDIF !iflag_con .GE. 3
675       CALL histwrite_phy(o_prw, prw)
[2496]676       CALL histwrite_phy(o_prlw, prlw)
677       CALL histwrite_phy(o_prsw, prsw)
[1898]678       CALL histwrite_phy(o_s_pblh, s_pblh)
679       CALL histwrite_phy(o_s_pblt, s_pblt)
680       CALL histwrite_phy(o_s_lcl, s_lcl)
681       CALL histwrite_phy(o_s_therm, s_therm)
682       !IM : Les champs suivants (s_capCL, s_oliqCL, s_cteiCL, s_trmb1, s_trmb2, s_trmb3) ne sont pas definis dans HBTM.F
683       !       IF (o_s_capCL%flag(iff)<=lev_files(iff)) THEN
684       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
685       !    $o_s_capCL%name,itau_w,s_capCL)
686       !       ENDIF
687       !       IF (o_s_oliqCL%flag(iff)<=lev_files(iff)) THEN
688       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
689       !    $o_s_oliqCL%name,itau_w,s_oliqCL)
690       !       ENDIF
691       !       IF (o_s_cteiCL%flag(iff)<=lev_files(iff)) THEN
692       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
693       !    $o_s_cteiCL%name,itau_w,s_cteiCL)
694       !       ENDIF
695       !       IF (o_s_trmb1%flag(iff)<=lev_files(iff)) THEN
696       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
697       !    $o_s_trmb1%name,itau_w,s_trmb1)
698       !       ENDIF
699       !       IF (o_s_trmb2%flag(iff)<=lev_files(iff)) THEN
700       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
701       !    $o_s_trmb2%name,itau_w,s_trmb2)
702       !       ENDIF
703       !       IF (o_s_trmb3%flag(iff)<=lev_files(iff)) THEN
704       !     CALL histwrite_phy(nid_files(iff),clef_stations(iff),
705       !    $o_s_trmb3%name,itau_w,s_trmb3)
706       !       ENDIF
[1813]707
[2282]708#ifdef CPP_IOIPSL
709#ifndef CPP_XIOS
[2271]710  IF (.NOT.ok_all_xml) THEN
[1898]711       ! ATTENTION, LES ANCIENS HISTWRITE ONT ETES CONSERVES EN ATTENDANT MIEUX:
712       ! Champs interpolles sur des niveaux de pression
[2271]713       missing_val=missing_val_nf90
[1898]714       DO iff=1, nfiles
715          ll=0
716          DO k=1, nlevSTD
717             bb2=clevSTD(k)
718             IF(bb2.EQ."850".OR.bb2.EQ."700".OR. &
719                  bb2.EQ."500".OR.bb2.EQ."200".OR. &
720                  bb2.EQ."100".OR. &
721                  bb2.EQ."50".OR.bb2.EQ."10") THEN
[1813]722
[1898]723                ! a refaire correctement !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
724                ll=ll+1
725                CALL histwrite_phy(o_uSTDlevs(ll),uwriteSTD(:,k,iff), iff)
726                CALL histwrite_phy(o_vSTDlevs(ll),vwriteSTD(:,k,iff), iff)
727                CALL histwrite_phy(o_wSTDlevs(ll),wwriteSTD(:,k,iff), iff)
728                CALL histwrite_phy(o_zSTDlevs(ll),phiwriteSTD(:,k,iff), iff)
729                CALL histwrite_phy(o_qSTDlevs(ll),qwriteSTD(:,k,iff), iff)
730                CALL histwrite_phy(o_tSTDlevs(ll),twriteSTD(:,k,iff), iff)
[1813]731
[1898]732             ENDIF !(bb2.EQ."850".OR.bb2.EQ."700".OR.
733          ENDDO
[1813]734       ENDDO
[2282]735  ENDIF
736#endif
737#endif
738#ifdef CPP_XIOS
739  IF(ok_all_xml) THEN
[2271]740!XIOS  CALL xios_get_field_attr("u850",default_value=missing_val)
741!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
742          ll=0
743          DO k=1, nlevSTD
744             bb2=clevSTD(k)
745             IF(bb2.EQ."850".OR.bb2.EQ."700".OR. &
746                bb2.EQ."500".OR.bb2.EQ."200".OR. &
747                bb2.EQ."100".OR. &
748                bb2.EQ."50".OR.bb2.EQ."10") THEN
749                ll=ll+1
[2282]750                CALL histwrite_phy(o_uSTDlevs(ll),ulevSTD(:,k))
751                CALL histwrite_phy(o_vSTDlevs(ll),vlevSTD(:,k))
752                CALL histwrite_phy(o_wSTDlevs(ll),wlevSTD(:,k))
753                CALL histwrite_phy(o_zSTDlevs(ll),philevSTD(:,k))
754                CALL histwrite_phy(o_qSTDlevs(ll),qlevSTD(:,k))
755                CALL histwrite_phy(o_tSTDlevs(ll),tlevSTD(:,k))
[2271]756             ENDIF !(bb2.EQ."850".OR.bb2.EQ."700".OR.
757          ENDDO
758  ENDIF
[2282]759#endif
[1898]760       IF (vars_defined) THEN
761          DO i=1, klon
762             IF (pctsrf(i,is_oce).GT.epsfra.OR. &
763                  pctsrf(i,is_sic).GT.epsfra) THEN
764                zx_tmp_fi2d(i) = (ftsol(i, is_oce) * pctsrf(i,is_oce)+ &
765                     ftsol(i, is_sic) * pctsrf(i,is_sic))/ &
766                     (pctsrf(i,is_oce)+pctsrf(i,is_sic))
767             ELSE
768                zx_tmp_fi2d(i) = 273.15
769             ENDIF
770          ENDDO
[1813]771       ENDIF
[1898]772       CALL histwrite_phy(o_t_oce_sic, zx_tmp_fi2d)
[1813]773
[1898]774       ! Couplage convection-couche limite
775       IF (iflag_con.GE.3) THEN
776          IF (iflag_coupl>=1) THEN
777             CALL histwrite_phy(o_ale_bl, ale_bl)
778             CALL histwrite_phy(o_alp_bl, alp_bl)
779          ENDIF !iflag_coupl>=1
780       ENDIF !(iflag_con.GE.3)
781       ! Wakes
782       IF (iflag_con.EQ.3) THEN
783          IF (iflag_wake>=1) THEN
784             CALL histwrite_phy(o_ale_wk, ale_wake)
785             CALL histwrite_phy(o_alp_wk, alp_wake)
[2393]786             IF (iflag_pbl_split>=1) THEN
787               IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=dtvdf_x(1:klon,1:klev)/pdtphys
788               CALL histwrite_phy(o_dtvdf_x    ,zx_tmp_fi3d)
789               IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=dtvdf_w(1:klon,1:klev)/pdtphys
790               CALL histwrite_phy(o_dtvdf_w    ,zx_tmp_fi3d)
791               IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=dqvdf_x(1:klon,1:klev)/pdtphys
792               CALL histwrite_phy(o_dqvdf_x    ,zx_tmp_fi3d)
793               IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=dqvdf_w(1:klon,1:klev)/pdtphys
794               CALL histwrite_phy(o_dqvdf_w    ,zx_tmp_fi3d)
795               CALL histwrite_phy(o_sens_x     ,sens_x     )
796               CALL histwrite_phy(o_sens_w     ,sens_w     )
797               CALL histwrite_phy(o_flat_x     ,zxfluxlat_x)
798               CALL histwrite_phy(o_flat_w     ,zxfluxlat_w)
799               CALL histwrite_phy(o_delta_tsurf,delta_tsurf)
800               CALL histwrite_phy(o_cdragh_x   ,cdragh_x   )
801               CALL histwrite_phy(o_cdragh_w   ,cdragh_w   )
802               CALL histwrite_phy(o_cdragm_x   ,cdragm_x   )
803               CALL histwrite_phy(o_cdragm_w   ,cdragm_w   )
804               CALL histwrite_phy(o_kh         ,kh         )
805               CALL histwrite_phy(o_kh_x       ,kh_x       )
806               CALL histwrite_phy(o_kh_w       ,kh_w       )
807             ENDIF   ! (iflag_pbl_split>=1)
[1898]808             CALL histwrite_phy(o_ale, ale)
809             CALL histwrite_phy(o_alp, alp)
810             CALL histwrite_phy(o_cin, cin)
811             CALL histwrite_phy(o_WAPE, wake_pe)
812             CALL histwrite_phy(o_wake_h, wake_h)
813             CALL histwrite_phy(o_wake_s, wake_s)
814             CALL histwrite_phy(o_wake_deltat, wake_deltat)
815             CALL histwrite_phy(o_wake_deltaq, wake_deltaq)
816             CALL histwrite_phy(o_wake_omg, wake_omg)
817             IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_wake(1:klon,1:klev) &
818                  /pdtphys
819             CALL histwrite_phy(o_dtwak, zx_tmp_fi3d)
820             IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_wake(1:klon,1:klev)/pdtphys
821             CALL histwrite_phy(o_dqwak, zx_tmp_fi3d)
[2486]822             CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
823             CALL histwrite_phy(o_dqwak2d, zx_tmp_fi2d)
[1898]824          ENDIF ! iflag_wake>=1
825          CALL histwrite_phy(o_ftd, ftd)
826          CALL histwrite_phy(o_fqd, fqd)
[2253]827       ENDIF !(iflag_con.EQ.3)
828       IF (iflag_con.EQ.3.OR.iflag_con.EQ.30) THEN
[1898]829          ! sortie RomP convection descente insaturee iflag_con=30
[2253]830          ! etendue a iflag_con=3 (jyg)
[1898]831          CALL histwrite_phy(o_Vprecip, Vprecip)
832          CALL histwrite_phy(o_wdtrainA, wdtrainA)
833          CALL histwrite_phy(o_wdtrainM, wdtrainM)
834       ENDIF !(iflag_con.EQ.3.or.iflag_con.EQ.30)
[1813]835!!! nrlmd le 10/04/2012
[1898]836       IF (iflag_trig_bl>=1) THEN
837          CALL histwrite_phy(o_n2, n2)
838          CALL histwrite_phy(o_s2, s2)
839          CALL histwrite_phy(o_proba_notrig, proba_notrig)
840          CALL histwrite_phy(o_random_notrig, random_notrig)
841          CALL histwrite_phy(o_ale_bl_stat, ale_bl_stat)
842          CALL histwrite_phy(o_ale_bl_trig, ale_bl_trig)
[1813]843       ENDIF  !(iflag_trig_bl>=1)
[1898]844       IF (iflag_clos_bl>=1) THEN
845          CALL histwrite_phy(o_alp_bl_det, alp_bl_det)
846          CALL histwrite_phy(o_alp_bl_fluct_m, alp_bl_fluct_m)
847          CALL histwrite_phy(o_alp_bl_fluct_tke,  &
848               alp_bl_fluct_tke)
849          CALL histwrite_phy(o_alp_bl_conv, alp_bl_conv)
850          CALL histwrite_phy(o_alp_bl_stat, alp_bl_stat)
[1813]851       ENDIF  !(iflag_clos_bl>=1)
852!!! fin nrlmd le 10/04/2012
[2057]853       ! Output of slab ocean variables
[1898]854       IF (type_ocean=='slab ') THEN
[2057]855          CALL histwrite_phy(o_slab_qflux, slab_wfbils)
856          CALL histwrite_phy(o_slab_bils, slab_bils)
857          IF (nslay.EQ.1) THEN
858              zx_tmp_fi2d(:)=tslab(:,1)
859              CALL histwrite_phy(o_tslab, zx_tmp_fi2d)
860          ELSE
861              CALL histwrite_phy(o_tslab, tslab)
862          END IF
[2209]863          IF (version_ocean=='sicINT') THEN
864              CALL histwrite_phy(o_slab_bilg, slab_bilg)
865              CALL histwrite_phy(o_slab_tice, tice)
866              CALL histwrite_phy(o_slab_sic, seaice)
867          END IF
[1898]868       ENDIF !type_ocean == force/slab
869       CALL histwrite_phy(o_weakinv, weak_inversion)
870       CALL histwrite_phy(o_dthmin, dthmin)
871       CALL histwrite_phy(o_cldtau, cldtau)
872       CALL histwrite_phy(o_cldemi, cldemi)
873       CALL histwrite_phy(o_pr_con_l, pmflxr(:,1:klev))
874       CALL histwrite_phy(o_pr_con_i, pmflxs(:,1:klev))
875       CALL histwrite_phy(o_pr_lsc_l, prfl(:,1:klev))
876       CALL histwrite_phy(o_pr_lsc_i, psfl(:,1:klev))
877       CALL histwrite_phy(o_re, re)
878       CALL histwrite_phy(o_fl, fl)
879       IF (vars_defined) THEN
880          DO i=1, klon
881             zx_tmp_fi2d(i)=MIN(100.,rh2m(i)*100.)
882          ENDDO
883       ENDIF
884       CALL histwrite_phy(o_rh2m, zx_tmp_fi2d)
[1813]885
[1898]886       IF (vars_defined) THEN
887          DO i=1, klon
888             zx_tmp_fi2d(i)=MIN(100.,rh2m(i)*100.)
889          ENDDO
890       ENDIF
891       CALL histwrite_phy(o_rh2m_min, zx_tmp_fi2d)
[1813]892
[1898]893       IF (vars_defined) THEN
894          DO i=1, klon
895             zx_tmp_fi2d(i)=MIN(100.,rh2m(i)*100.)
896          ENDDO
897       ENDIF
898       CALL histwrite_phy(o_rh2m_max, zx_tmp_fi2d)
[1813]899
[1898]900       CALL histwrite_phy(o_qsat2m, qsat2m)
901       CALL histwrite_phy(o_tpot, tpot)
902       CALL histwrite_phy(o_tpote, tpote)
903       IF (vars_defined) zx_tmp_fi2d(1 : klon) = fsolsw( 1 : klon, is_ter)
904       CALL histwrite_phy(o_SWnetOR,  zx_tmp_fi2d)
905       IF (vars_defined) zx_tmp_fi2d(1:klon) = solsw(1:klon)/(1.-albsol1(1:klon))
906       CALL histwrite_phy(o_SWdownOR,  zx_tmp_fi2d)
907       CALL histwrite_phy(o_LWdownOR, sollwdown)
908       CALL histwrite_phy(o_snowl, snow_lsc)
909       CALL histwrite_phy(o_solldown, sollwdown)
910       CALL histwrite_phy(o_dtsvdfo, d_ts(:,is_oce))
911       CALL histwrite_phy(o_dtsvdft, d_ts(:,is_ter))
912       CALL histwrite_phy(o_dtsvdfg,  d_ts(:,is_lic))
913       CALL histwrite_phy(o_dtsvdfi, d_ts(:,is_sic))
[2243]914       CALL histwrite_phy(o_z0m, z0m(:,nbsrf+1))
915       CALL histwrite_phy(o_z0h, z0h(:,nbsrf+1))
[1898]916       ! OD550 per species
[2146]917!--OLIVIER
918!This is warranted by treating INCA aerosols as offline aerosols
919!       IF (new_aod .and. (.not. aerosol_couple)) THEN
920       IF (new_aod) THEN
[2003]921          IF (flag_aerosol.GT.0) THEN
[1898]922             CALL histwrite_phy(o_od550aer, od550aer)
923             CALL histwrite_phy(o_od865aer, od865aer)
924             CALL histwrite_phy(o_absvisaer, absvisaer)
925             CALL histwrite_phy(o_od550lt1aer, od550lt1aer)
926             CALL histwrite_phy(o_sconcso4, sconcso4)
[2146]927             CALL histwrite_phy(o_sconcno3, sconcno3)
[1898]928             CALL histwrite_phy(o_sconcoa, sconcoa)
929             CALL histwrite_phy(o_sconcbc, sconcbc)
930             CALL histwrite_phy(o_sconcss, sconcss)
931             CALL histwrite_phy(o_sconcdust, sconcdust)
932             CALL histwrite_phy(o_concso4, concso4)
[2146]933             CALL histwrite_phy(o_concno3, concno3)
[1898]934             CALL histwrite_phy(o_concoa, concoa)
935             CALL histwrite_phy(o_concbc, concbc)
936             CALL histwrite_phy(o_concss, concss)
937             CALL histwrite_phy(o_concdust, concdust)
938             CALL histwrite_phy(o_loadso4, loadso4)
939             CALL histwrite_phy(o_loadoa, loadoa)
940             CALL histwrite_phy(o_loadbc, loadbc)
941             CALL histwrite_phy(o_loadss, loadss)
942             CALL histwrite_phy(o_loaddust, loaddust)
943             !--STRAT AER
[1813]944          ENDIF
[2530]945          IF (flag_aerosol.GT.0.OR.flag_aerosol_strat.GT.0) THEN
[2003]946!             DO naero = 1, naero_spc
947!--correction mini bug OB
948             DO naero = 1, naero_tot
[1898]949                CALL histwrite_phy(o_tausumaero(naero), &
950                     tausum_aero(:,2,naero) )
951             END DO
[1813]952          ENDIF
[2530]953          IF (flag_aerosol_strat.GT.0) THEN
[2146]954             CALL histwrite_phy(o_tausumaero_lw, &
955                  tausum_aero(:,6,id_STRAT_phy) )
956          ENDIF
[1898]957       ENDIF
[1813]958       IF (ok_ade) THEN
[2366]959          CALL histwrite_phy(o_topswad, topswad_aero*swradcorr)
960          CALL histwrite_phy(o_topswad0, topswad0_aero*swradcorr)
961          CALL histwrite_phy(o_solswad, solswad_aero*swradcorr)
962          CALL histwrite_phy(o_solswad0, solswad0_aero*swradcorr)
[2146]963          CALL histwrite_phy(o_toplwad, toplwad_aero)
964          CALL histwrite_phy(o_toplwad0, toplwad0_aero)
965          CALL histwrite_phy(o_sollwad, sollwad_aero)
966          CALL histwrite_phy(o_sollwad0, sollwad0_aero)
[1898]967          !====MS forcing diagnostics
968          if (new_aod) then
[2366]969             zx_tmp_fi2d(:)=topsw_aero(:,1)*swradcorr(:)
970             CALL histwrite_phy(o_swtoaas_nat,zx_tmp_fi2d)
971             zx_tmp_fi2d(:)=solsw_aero(:,1)*swradcorr(:)
972             CALL histwrite_phy(o_swsrfas_nat,zx_tmp_fi2d)
973             zx_tmp_fi2d(:)=topsw0_aero(:,1)*swradcorr(:)
974             CALL histwrite_phy(o_swtoacs_nat,zx_tmp_fi2d)
975             zx_tmp_fi2d(:)=solsw0_aero(:,1)*swradcorr(:)
976             CALL histwrite_phy(o_swsrfcs_nat,zx_tmp_fi2d)
[1898]977             !ant
[2366]978             zx_tmp_fi2d(:)=topsw_aero(:,2)*swradcorr(:)
979             CALL histwrite_phy(o_swtoaas_ant,zx_tmp_fi2d)
980             zx_tmp_fi2d(:)=solsw_aero(:,2)*swradcorr(:)
981             CALL histwrite_phy(o_swsrfas_ant,zx_tmp_fi2d)
982             zx_tmp_fi2d(:)=topsw0_aero(:,2)*swradcorr(:)
983             CALL histwrite_phy(o_swtoacs_ant,zx_tmp_fi2d)
984             zx_tmp_fi2d(:)=solsw0_aero(:,2)*swradcorr(:)
985             CALL histwrite_phy(o_swsrfcs_ant,zx_tmp_fi2d)
[1898]986             !cf
987             if (.not. aerosol_couple) then
[2366]988                zx_tmp_fi2d(:)=topswcf_aero(:,1)*swradcorr(:)
989                CALL histwrite_phy(o_swtoacf_nat,zx_tmp_fi2d)
990                zx_tmp_fi2d(:)=solswcf_aero(:,1)*swradcorr(:)
991                CALL histwrite_phy(o_swsrfcf_nat,zx_tmp_fi2d)
992                zx_tmp_fi2d(:)=topswcf_aero(:,2)*swradcorr(:)
993                CALL histwrite_phy(o_swtoacf_ant,zx_tmp_fi2d)
994                zx_tmp_fi2d(:)=solswcf_aero(:,2)*swradcorr(:)
995                CALL histwrite_phy(o_swsrfcf_ant,zx_tmp_fi2d)
996                zx_tmp_fi2d(:)=topswcf_aero(:,3)*swradcorr(:)
997                CALL histwrite_phy(o_swtoacf_zero,zx_tmp_fi2d)
998                zx_tmp_fi2d(:)=solswcf_aero(:,3)*swradcorr(:)
999                CALL histwrite_phy(o_swsrfcf_zero,zx_tmp_fi2d)
[1898]1000             endif
1001          endif ! new_aod
1002          !====MS forcing diagnostics
[1813]1003       ENDIF
1004       IF (ok_aie) THEN
[2366]1005          CALL histwrite_phy(o_topswai, topswai_aero*swradcorr)
1006          CALL histwrite_phy(o_solswai, solswai_aero*swradcorr)
[2003]1007       ENDIF
1008       IF (flag_aerosol.GT.0.AND.ok_cdnc) THEN
[1898]1009          CALL histwrite_phy(o_scdnc, scdnc)
1010          CALL histwrite_phy(o_cldncl, cldncl)
1011          CALL histwrite_phy(o_reffclws, reffclws)
1012          CALL histwrite_phy(o_reffclwc, reffclwc)
1013          CALL histwrite_phy(o_cldnvi, cldnvi)
1014          CALL histwrite_phy(o_lcc, lcc)
1015          CALL histwrite_phy(o_lcc3d, lcc3d)
1016          CALL histwrite_phy(o_lcc3dcon, lcc3dcon)
1017          CALL histwrite_phy(o_lcc3dstra, lcc3dstra)
1018          CALL histwrite_phy(o_reffclwtop, reffclwtop)
[1813]1019       ENDIF
[1898]1020       ! Champs 3D:
[1813]1021       IF (ok_ade .OR. ok_aie) then
[1898]1022          CALL histwrite_phy(o_ec550aer, ec550aer)
[1813]1023       ENDIF
[1898]1024       CALL histwrite_phy(o_lwcon, flwc)
1025       CALL histwrite_phy(o_iwcon, fiwc)
1026       CALL histwrite_phy(o_temp, t_seri)
1027       CALL histwrite_phy(o_theta, theta)
1028       CALL histwrite_phy(o_ovapinit, qx(:,:,ivap))
1029       CALL histwrite_phy(o_ovap, q_seri)
1030       CALL histwrite_phy(o_oliq, ql_seri)
1031       CALL histwrite_phy(o_geop, zphi)
1032       CALL histwrite_phy(o_vitu, u_seri)
1033       CALL histwrite_phy(o_vitv, v_seri)
1034       CALL histwrite_phy(o_vitw, omega)
1035       CALL histwrite_phy(o_pres, pplay)
1036       CALL histwrite_phy(o_paprs, paprs(:,1:klev))
[2377]1037       CALL histwrite_phy(o_zfull,zphi/RG)
[1813]1038
[1898]1039       IF (vars_defined)  THEN
[2377]1040        zx_tmp_fi3d(:,1)= pphis(:)/RG
1041        DO k = 2, klev
1042         DO i = 1, klon
1043            zx_tmp_fi3d(i,k) = zphi(i,k)/RG + &
1044                          (zphi(i,k)-zphi(i,k-1))/RG * &
1045                          (paprs(i,k)-pplay(i,k))/(pplay(i,k)-pplay(i,k-1))
1046         ENDDO
1047        ENDDO
[1898]1048       ENDIF
1049       CALL histwrite_phy(o_zhalf, zx_tmp_fi3d)
1050       CALL histwrite_phy(o_rneb, cldfra)
1051       CALL histwrite_phy(o_rnebcon, rnebcon)
1052       CALL histwrite_phy(o_rnebls, rneb)
[1938]1053       IF (vars_defined)  THEN
1054          DO k=1, klev
1055             DO i=1, klon
1056                zx_tmp_fi3d(i,k)=cldfra(i,k)*JrNt(i)
1057             ENDDO
1058          ENDDO
1059       ENDIF
[1924]1060       CALL histwrite_phy(o_rnebjn, zx_tmp_fi3d)
[1898]1061       CALL histwrite_phy(o_rhum, zx_rh)
1062       CALL histwrite_phy(o_ozone, &
1063            wo(:, :, 1) * dobson_u * 1e3 / zmasse / rmo3 * rmd)
[1813]1064
[1898]1065       IF (read_climoz == 2) THEN
1066          CALL histwrite_phy(o_ozone_light, &
1067               wo(:, :, 2) * dobson_u * 1e3 / zmasse / rmo3 * rmd)
1068       ENDIF
[1813]1069
[1898]1070       CALL histwrite_phy(o_dtphy, d_t)
[2496]1071
[1898]1072       CALL histwrite_phy(o_dqphy,  d_qx(:,:,ivap))
[2486]1073       CALL water_int(klon,klev,d_qx(:,:,ivap),zmasse,zx_tmp_fi2d)
1074       CALL histwrite_phy(o_dqphy2d,  zx_tmp_fi2d)
[2496]1075
1076       CALL histwrite_phy(o_dqlphy,  d_qx(:,:,iliq))
1077       CALL water_int(klon,klev,d_qx(:,:,iliq),zmasse,zx_tmp_fi2d)
1078       CALL histwrite_phy(o_dqlphy2d,  zx_tmp_fi2d)
1079
1080       IF (nqo.EQ.3) THEN
1081       CALL histwrite_phy(o_dqsphy,  d_qx(:,:,isol))
1082       CALL water_int(klon,klev,d_qx(:,:,isol),zmasse,zx_tmp_fi2d)
1083       CALL histwrite_phy(o_dqsphy2d,  zx_tmp_fi2d)
1084       ELSE
1085       zx_tmp_fi3d=0.0
1086       CALL histwrite_phy(o_dqsphy,  zx_tmp_fi3d)
1087       zx_tmp_fi2d=0.0
1088       CALL histwrite_phy(o_dqsphy2d,  zx_tmp_fi2d)
1089       ENDIF
1090
[1898]1091       DO nsrf=1, nbsrf
1092          IF (vars_defined) zx_tmp_fi2d(1 : klon) = falb1( 1 : klon, nsrf)
1093          CALL histwrite_phy(o_albe_srf(nsrf), zx_tmp_fi2d)
[2243]1094          IF (vars_defined) zx_tmp_fi2d(1 : klon) = z0m( 1 : klon, nsrf)
1095          CALL histwrite_phy(o_z0m_srf(nsrf), zx_tmp_fi2d)
1096          IF (vars_defined) zx_tmp_fi2d(1 : klon) = z0h( 1 : klon, nsrf)
1097          CALL histwrite_phy(o_z0h_srf(nsrf), zx_tmp_fi2d)
[1898]1098          IF (vars_defined) zx_tmp_fi2d(1 : klon) = agesno( 1 : klon, nsrf)
1099          CALL histwrite_phy(o_ages_srf(nsrf), zx_tmp_fi2d)
[2209]1100          IF (vars_defined) zx_tmp_fi2d(1 : klon) = snow( 1 : klon, nsrf)
1101          CALL histwrite_phy(o_snow_srf(nsrf), zx_tmp_fi2d)
[1898]1102       ENDDO !nsrf=1, nbsrf
1103       CALL histwrite_phy(o_alb1, albsol1)
1104       CALL histwrite_phy(o_alb2, albsol2)
1105       !FH Sorties pour la couche limite
1106       if (iflag_pbl>1) then
1107          zx_tmp_fi3d=0.
1108          IF (vars_defined) THEN
1109             do nsrf=1,nbsrf
1110                do k=1,klev
1111                   zx_tmp_fi3d(:,k)=zx_tmp_fi3d(:,k) &
1112                        +pctsrf(:,nsrf)*pbl_tke(:,k,nsrf)
1113                enddo
1114             enddo
1115          ENDIF
1116          CALL histwrite_phy(o_tke, zx_tmp_fi3d)
[1813]1117
[1898]1118          CALL histwrite_phy(o_tke_max, zx_tmp_fi3d)
1119       ENDIF
[1813]1120
[1898]1121       CALL histwrite_phy(o_kz, coefh(:,:,is_ave))
[1813]1122
[1898]1123       CALL histwrite_phy(o_kz_max, coefh(:,:,is_ave))
[1813]1124
[1898]1125       CALL histwrite_phy(o_clwcon, clwcon0)
1126       CALL histwrite_phy(o_dtdyn, d_t_dyn)
[2496]1127
[1898]1128       CALL histwrite_phy(o_dqdyn, d_q_dyn)
[2496]1129
[2499]1130       CALL histwrite_phy(o_dqdyn2d,d_q_dyn2d)
1131
[2496]1132       CALL histwrite_phy(o_dqldyn, d_ql_dyn)
1133
[2499]1134       CALL histwrite_phy(o_dqldyn2d, d_ql_dyn2d)
1135
[2496]1136       CALL histwrite_phy(o_dqsdyn, d_qs_dyn)
1137
[2499]1138       CALL histwrite_phy(o_dqsdyn2d, d_qs_dyn2d)
1139
[1898]1140       CALL histwrite_phy(o_dudyn, d_u_dyn)
1141       CALL histwrite_phy(o_dvdyn, d_v_dyn)
[1813]1142
[1898]1143       IF (vars_defined) THEN
1144          zx_tmp_fi3d(1:klon,1:klev)=d_t_con(1:klon,1:klev)/pdtphys
1145       ENDIF
1146       CALL histwrite_phy(o_dtcon, zx_tmp_fi3d)
[2102]1147       if(iflag_thermals.eq.0)then
[1898]1148          IF (vars_defined) THEN
1149             zx_tmp_fi3d(1:klon,1:klev)=d_t_con(1:klon,1:klev)/pdtphys + &
1150                  d_t_ajsb(1:klon,1:klev)/pdtphys
1151          ENDIF
1152          CALL histwrite_phy(o_tntc, zx_tmp_fi3d)
[2102]1153       else if(iflag_thermals.ge.1.and.iflag_wake.EQ.1)then
[1898]1154          IF (vars_defined) THEN
1155             zx_tmp_fi3d(1:klon,1:klev)=d_t_con(1:klon,1:klev)/pdtphys + &
1156                  d_t_ajs(1:klon,1:klev)/pdtphys + &
1157                  d_t_wake(1:klon,1:klev)/pdtphys
1158          ENDIF
1159          CALL histwrite_phy(o_tntc, zx_tmp_fi3d)
1160       endif
1161       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_u_con(1:klon,1:klev)/pdtphys
1162       CALL histwrite_phy(o_ducon, zx_tmp_fi3d)
1163       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_v_con(1:klon,1:klev)/pdtphys
1164       CALL histwrite_phy(o_dvcon, zx_tmp_fi3d)
1165       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_con(1:klon,1:klev)/pdtphys
1166       CALL histwrite_phy(o_dqcon, zx_tmp_fi3d)
[2486]1167       CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1168       CALL histwrite_phy(o_dqcon2d, zx_tmp_fi2d)
[1813]1169
[2102]1170       IF(iflag_thermals.EQ.0) THEN
[1898]1171          IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_con(1:klon,1:klev)/pdtphys
1172          CALL histwrite_phy(o_tnhusc, zx_tmp_fi3d)
[2102]1173       ELSE IF(iflag_thermals.GE.1.AND.iflag_wake.EQ.1) THEN
[1898]1174          IF (vars_defined) THEN
1175             zx_tmp_fi3d(1:klon,1:klev)=d_q_con(1:klon,1:klev)/pdtphys + &
1176                  d_q_ajs(1:klon,1:klev)/pdtphys + &
1177                  d_q_wake(1:klon,1:klev)/pdtphys
1178          ENDIF
1179          CALL histwrite_phy(o_tnhusc, zx_tmp_fi3d)
1180       ENDIF
[1813]1181
[1898]1182       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lsc(1:klon,1:klev)/pdtphys
1183       CALL histwrite_phy(o_dtlsc, zx_tmp_fi3d)
1184       IF (vars_defined) zx_tmp_fi3d(1:klon, 1:klev)=(d_t_lsc(1:klon,1:klev)+ &
1185            d_t_eva(1:klon,1:klev))/pdtphys
1186       CALL histwrite_phy(o_dtlschr, zx_tmp_fi3d)
1187       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_lsc(1:klon,1:klev)/pdtphys
1188       CALL histwrite_phy(o_dqlsc, zx_tmp_fi3d)
[2486]1189       CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1190       CALL histwrite_phy(o_dqlsc2d, zx_tmp_fi2d)
[1898]1191       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=beta_prec(1:klon,1:klev)
1192       CALL histwrite_phy(o_beta_prec, zx_tmp_fi3d)
[1813]1193!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[1898]1194       ! Sorties specifiques a la separation thermiques/non thermiques
[1813]1195       if (iflag_thermals>=1) then
[1898]1196          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lscth(1:klon,1:klev)/pdtphys
1197          CALL histwrite_phy(o_dtlscth, zx_tmp_fi3d)
1198          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lscst(1:klon,1:klev)/pdtphys
1199          CALL histwrite_phy(o_dtlscst, zx_tmp_fi3d)
1200          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_lscth(1:klon,1:klev)/pdtphys
1201          CALL histwrite_phy(o_dqlscth, zx_tmp_fi3d)
[2486]1202          CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1203          CALL histwrite_phy(o_dqlscth2d, zx_tmp_fi2d)
[1898]1204          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_lscst(1:klon,1:klev)/pdtphys
1205          CALL histwrite_phy(o_dqlscst, zx_tmp_fi3d)
[2486]1206          CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1207          CALL histwrite_phy(o_dqlscst2d, zx_tmp_fi2d)
[1898]1208          CALL histwrite_phy(o_plulth, plul_th)
1209          CALL histwrite_phy(o_plulst, plul_st)
1210          IF (vars_defined) THEN
1211             do k=1,klev
1212                do i=1,klon
1213                   if (ptconvth(i,k)) then
1214                      zx_tmp_fi3d(i,k)=1.
1215                   else
1216                      zx_tmp_fi3d(i,k)=0.
1217                   endif
1218                enddo
1219             enddo
1220          ENDIF
1221          CALL histwrite_phy(o_ptconvth, zx_tmp_fi3d)
1222          IF (vars_defined) THEN
1223             do i=1,klon
1224                zx_tmp_fi2d(1:klon)=lmax_th(:)
1225             enddo
1226          ENDIF
1227          CALL histwrite_phy(o_lmaxth, zx_tmp_fi2d)
1228       endif ! iflag_thermals>=1
[1813]1229!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[1898]1230       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_vdf(1:klon,1:klev)/pdtphys
1231       CALL histwrite_phy(o_dtvdf, zx_tmp_fi3d)
1232       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_diss(1:klon,1:klev)/pdtphys
1233       CALL histwrite_phy(o_dtdis, zx_tmp_fi3d)
1234       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_vdf(1:klon,1:klev)/pdtphys
1235       CALL histwrite_phy(o_dqvdf, zx_tmp_fi3d)
[2486]1236       CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1237       CALL histwrite_phy(o_dqvdf2d, zx_tmp_fi2d)
[1898]1238       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_eva(1:klon,1:klev)/pdtphys
1239       CALL histwrite_phy(o_dteva, zx_tmp_fi3d)
1240       IF (vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_eva(1:klon,1:klev)/pdtphys
1241       CALL histwrite_phy(o_dqeva, zx_tmp_fi3d)
[2486]1242       CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1243       CALL histwrite_phy(o_dqeva2d, zx_tmp_fi2d)
[1898]1244       zpt_conv = 0.
1245       WHERE (ptconv) zpt_conv = 1.
1246       CALL histwrite_phy(o_ptconv, zpt_conv)
1247       CALL histwrite_phy(o_ratqs, ratqs)
1248       IF (vars_defined) THEN
1249          zx_tmp_fi3d(1:klon,1:klev)=d_t_ajs(1:klon,1:klev)/pdtphys - &
1250               d_t_ajsb(1:klon,1:klev)/pdtphys
1251       ENDIF
1252       CALL histwrite_phy(o_dtthe, zx_tmp_fi3d)
[1903]1253       IF (vars_defined) THEN
[1943]1254          zx_tmp_fi3d(1:klon,1:klev)=d_u_ajs(1:klon,1:klev)/pdtphys
[1903]1255       ENDIF
1256       CALL histwrite_phy(o_duthe, zx_tmp_fi3d)
1257       IF (vars_defined) THEN
[1943]1258          zx_tmp_fi3d(1:klon,1:klev)=d_v_ajs(1:klon,1:klev)/pdtphys
[1903]1259       ENDIF
1260       CALL histwrite_phy(o_dvthe, zx_tmp_fi3d)
1261
[1813]1262       IF (iflag_thermals>=1) THEN
[1898]1263          ! Pour l instant 0 a y reflichir pour les thermiques
1264          zx_tmp_fi2d=0.
1265          CALL histwrite_phy(o_ftime_th, zx_tmp_fi2d)
1266          CALL histwrite_phy(o_f_th, fm_therm)
1267          CALL histwrite_phy(o_e_th, entr_therm)
1268          CALL histwrite_phy(o_w_th, zw2)
1269          CALL histwrite_phy(o_q_th, zqasc)
1270          CALL histwrite_phy(o_a_th, fraca)
1271          CALL histwrite_phy(o_d_th, detr_therm)
1272          CALL histwrite_phy(o_f0_th, f0)
1273          CALL histwrite_phy(o_zmax_th, zmax_th)
1274          IF (vars_defined) THEN
1275             zx_tmp_fi3d(1:klon,1:klev)=d_q_ajs(1:klon,1:klev)/pdtphys - &
1276                  d_q_ajsb(1:klon,1:klev)/pdtphys
1277          ENDIF
1278          CALL histwrite_phy(o_dqthe, zx_tmp_fi3d)
[2486]1279          CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1280          CALL histwrite_phy(o_dqthe2d, zx_tmp_fi2d)
[1898]1281       ENDIF !iflag_thermals
1282       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_ajsb(1:klon,1:klev)/pdtphys
1283       CALL histwrite_phy(o_dtajs, zx_tmp_fi3d)
1284       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_q_ajsb(1:klon,1:klev)/pdtphys
1285       CALL histwrite_phy(o_dqajs, zx_tmp_fi3d)
[2486]1286       CALL water_int(klon,klev,zx_tmp_fi3d,zmasse,zx_tmp_fi2d)
1287       CALL histwrite_phy(o_dqajs2d, zx_tmp_fi2d)
[2194]1288       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_swr(1:klon,1:klev)/pdtphys
[1898]1289       CALL histwrite_phy(o_dtswr, zx_tmp_fi3d)
[2194]1290       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_sw0(1:klon,1:klev)/pdtphys
[1898]1291       CALL histwrite_phy(o_dtsw0, zx_tmp_fi3d)
[2194]1292       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lwr(1:klon,1:klev)/pdtphys
[1898]1293       CALL histwrite_phy(o_dtlwr, zx_tmp_fi3d)
[2194]1294       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lw0(1:klon,1:klev)/pdtphys
[1898]1295       CALL histwrite_phy(o_dtlw0, zx_tmp_fi3d)
1296       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_ec(1:klon,1:klev)/pdtphys
1297       CALL histwrite_phy(o_dtec, zx_tmp_fi3d)
1298       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_u_vdf(1:klon,1:klev)/pdtphys
1299       CALL histwrite_phy(o_duvdf, zx_tmp_fi3d)
1300       IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_v_vdf(1:klon,1:klev)/pdtphys
1301       CALL histwrite_phy(o_dvvdf, zx_tmp_fi3d)
[1813]1302       IF (ok_orodr) THEN
[1898]1303          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_u_oro(1:klon,1:klev)/pdtphys
1304          CALL histwrite_phy(o_duoro, zx_tmp_fi3d)
1305          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_v_oro(1:klon,1:klev)/pdtphys
1306          CALL histwrite_phy(o_dvoro, zx_tmp_fi3d)
1307          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_oro(1:klon,1:klev)/pdtphys
1308          CALL histwrite_phy(o_dtoro, zx_tmp_fi3d)
[1813]1309       ENDIF
[1898]1310       IF (ok_orolf) THEN
1311          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_u_lif(1:klon,1:klev)/pdtphys
1312          CALL histwrite_phy(o_dulif, zx_tmp_fi3d)
[1903]1313
1314          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_v_lif(1:klon,1:klev)/pdtphys
1315          CALL histwrite_phy(o_dvlif, zx_tmp_fi3d)
1316
1317          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_lif(1:klon,1:klev)/pdtphys
1318          CALL histwrite_phy(o_dtlif, zx_tmp_fi3d)
[1813]1319       ENDIF
1320
1321       IF (ok_hines) THEN
[2333]1322          CALL histwrite_phy(o_du_gwd_hines, du_gwd_hines/pdtphys)
1323          CALL histwrite_phy(o_dv_gwd_hines, dv_gwd_hines/pdtphys)
[1898]1324          IF(vars_defined) zx_tmp_fi3d(1:klon,1:klev)=d_t_hin(1:klon,1:klev)/pdtphys
1325          CALL histwrite_phy(o_dthin, zx_tmp_fi3d)
[2333]1326          CALL histwrite_phy(o_ustr_gwd_hines, zustr_gwd_hines)
1327          CALL histwrite_phy(o_vstr_gwd_hines, zvstr_gwd_hines)
1328       end IF
1329
1330       if (.not. ok_hines .and. ok_gwd_rando) then
1331          CALL histwrite_phy(o_du_gwd_front, du_gwd_front / pdtphys)
1332          CALL histwrite_phy(o_dv_gwd_front, dv_gwd_front / pdtphys)
1333          CALL histwrite_phy(o_ustr_gwd_front, zustr_gwd_front)
1334          CALL histwrite_phy(o_vstr_gwd_front, zvstr_gwd_front)
[1898]1335       ENDIF
[1938]1336
1337       IF (ok_gwd_rando) then
1338          CALL histwrite_phy(o_du_gwd_rando, du_gwd_rando / pdtphys)
1339          CALL histwrite_phy(o_dv_gwd_rando, dv_gwd_rando / pdtphys)
[2333]1340          CALL histwrite_phy(o_ustr_gwd_rando, zustr_gwd_rando)
[1938]1341          CALL histwrite_phy(o_vstr_gwd_rando, zvstr_gwd_rando)
[2333]1342          CALL histwrite_phy(o_east_gwstress, east_gwstress )
1343          CALL histwrite_phy(o_west_gwstress, west_gwstress )
[1938]1344       end IF
1345
[2136]1346       IF (ok_qch4) then
1347          CALL histwrite_phy(o_dqch4, d_q_ch4 / pdtphys)
1348       ENDIF
1349
[2366]1350       DO k=1, klevp1
1351         zx_tmp_fi3d1(:,k)=swup(:,k)*swradcorr(:)
1352       ENDDO
1353       CALL histwrite_phy(o_rsu, zx_tmp_fi3d1)
1354       DO k=1, klevp1
1355         zx_tmp_fi3d1(:,k)=swdn(:,k)*swradcorr(:)
1356       ENDDO
1357       CALL histwrite_phy(o_rsd, zx_tmp_fi3d1)
1358       DO k=1, klevp1
1359         zx_tmp_fi3d1(:,k)=swup0(:,k)*swradcorr(:)
1360       ENDDO
1361       CALL histwrite_phy(o_rsucs, zx_tmp_fi3d1)
1362       DO k=1, klevp1
1363         zx_tmp_fi3d1(:,k)=swdn0(:,k)*swradcorr(:)
1364       ENDDO
1365       CALL histwrite_phy(o_rsdcs, zx_tmp_fi3d1)
1366
[1898]1367       CALL histwrite_phy(o_rlu, lwup)
1368       CALL histwrite_phy(o_rld, lwdn)
1369       CALL histwrite_phy(o_rlucs, lwup0)
1370       CALL histwrite_phy(o_rldcs, lwdn0)
[2366]1371
[1898]1372       IF(vars_defined) THEN
1373          zx_tmp_fi3d(1:klon,1:klev)=d_t(1:klon,1:klev)+ &
1374               d_t_dyn(1:klon,1:klev)
1375       ENDIF
1376       CALL histwrite_phy(o_tnt, zx_tmp_fi3d)
[2366]1377
[1898]1378       IF(vars_defined) THEN
[2194]1379          zx_tmp_fi3d(1:klon,1:klev)=d_t_swr(1:klon,1:klev)/pdtphys + &
1380               d_t_lwr(1:klon,1:klev)/pdtphys
[1898]1381       ENDIF
1382       CALL histwrite_phy(o_tntr, zx_tmp_fi3d)
1383       IF(vars_defined) THEN
1384          zx_tmp_fi3d(1:klon,1:klev)= (d_t_lsc(1:klon,1:klev)+ &
1385               d_t_eva(1:klon,1:klev)+ &
1386               d_t_vdf(1:klon,1:klev))/pdtphys
1387       ENDIF
1388       CALL histwrite_phy(o_tntscpbl, zx_tmp_fi3d)
1389       IF(vars_defined) THEN
1390          zx_tmp_fi3d(1:klon,1:klev)=d_qx(1:klon,1:klev,ivap)+ &
1391               d_q_dyn(1:klon,1:klev)
1392       ENDIF
1393       CALL histwrite_phy(o_tnhus, zx_tmp_fi3d)
1394       IF(vars_defined) THEN
1395          zx_tmp_fi3d(1:klon,1:klev)=d_q_lsc(1:klon,1:klev)/pdtphys+ &
1396               d_q_eva(1:klon,1:klev)/pdtphys
1397       ENDIF
1398       CALL histwrite_phy(o_tnhusscpbl, zx_tmp_fi3d)
1399       CALL histwrite_phy(o_evu, coefm(:,:,is_ave))
1400       IF(vars_defined) THEN
1401          zx_tmp_fi3d(1:klon,1:klev)=q_seri(1:klon,1:klev)+ &
1402               ql_seri(1:klon,1:klev)
1403       ENDIF
1404       CALL histwrite_phy(o_h2o, zx_tmp_fi3d)
[1813]1405       if (iflag_con >= 3) then
[1898]1406          IF(vars_defined) THEN
[1813]1407             zx_tmp_fi3d(1:klon,1:klev)=-1 * (dnwd(1:klon,1:klev)+ &
1408                  dnwd0(1:klon,1:klev))
[1898]1409          ENDIF
1410          CALL histwrite_phy(o_mcd, zx_tmp_fi3d)
1411          IF(vars_defined) THEN
[1813]1412             zx_tmp_fi3d(1:klon,1:klev)=upwd(1:klon,1:klev) + &
1413                  dnwd(1:klon,1:klev)+ dnwd0(1:klon,1:klev)
[1898]1414          ENDIF
1415          CALL histwrite_phy(o_dmc, zx_tmp_fi3d)
[1813]1416       else if (iflag_con == 2) then
[1898]1417          CALL histwrite_phy(o_mcd,  pmfd)
1418          CALL histwrite_phy(o_dmc,  pmfu + pmfd)
[1813]1419       end if
[1898]1420       CALL histwrite_phy(o_ref_liq, ref_liq)
1421       CALL histwrite_phy(o_ref_ice, ref_ice)
1422       if (RCO2_per.NE.RCO2_act.OR.RCH4_per.NE.RCH4_act.OR. &
1423            RN2O_per.NE.RN2O_act.OR.RCFC11_per.NE.RCFC11_act.OR. &
1424            RCFC12_per.NE.RCFC12_act) THEN
[2366]1425          IF(vars_defined) zx_tmp_fi2d(:) = swupp(:,klevp1)*swradcorr(:)
[1898]1426          CALL histwrite_phy(o_rsut4co2, zx_tmp_fi2d)
[2366]1427          IF(vars_defined) zx_tmp_fi2d(:) = lwupp(:,klevp1)
[1898]1428          CALL histwrite_phy(o_rlut4co2, zx_tmp_fi2d)
[2366]1429          IF(vars_defined) zx_tmp_fi2d(:) = swup0p(:,klevp1)*swradcorr(:)
[1898]1430          CALL histwrite_phy(o_rsutcs4co2, zx_tmp_fi2d)
[2366]1431          IF(vars_defined) zx_tmp_fi2d(:) = lwup0p(:,klevp1)
[1898]1432          CALL histwrite_phy(o_rlutcs4co2, zx_tmp_fi2d)
[2366]1433          DO k=1, klevp1
1434            zx_tmp_fi3d1(:,k)=swupp(:,k)*swradcorr(:)
1435          ENDDO
1436          CALL histwrite_phy(o_rsu4co2, zx_tmp_fi3d1)
1437          DO k=1, klevp1
1438            zx_tmp_fi3d1(:,k)=swup0p(:,k)*swradcorr(:)
1439          ENDDO
1440          CALL histwrite_phy(o_rsucs4co2, zx_tmp_fi3d1)
1441          DO k=1, klevp1
1442            zx_tmp_fi3d1(:,k)=swdnp(:,k)*swradcorr(:)
1443          ENDDO
1444          CALL histwrite_phy(o_rsd4co2, zx_tmp_fi3d1)
1445          DO k=1, klevp1
1446            zx_tmp_fi3d1(:,k)=swdn0p(:,k)*swradcorr(:)
1447          ENDDO
1448          CALL histwrite_phy(o_rsdcs4co2, zx_tmp_fi3d1)
[1898]1449          CALL histwrite_phy(o_rlu4co2, lwupp)
1450          CALL histwrite_phy(o_rlucs4co2, lwup0p)
1451          CALL histwrite_phy(o_rld4co2, lwdnp)
1452          CALL histwrite_phy(o_rldcs4co2, lwdn0p)
1453       ENDIF
[1828]1454!!!!!!!!!!!! Sorties niveaux de pression NMC !!!!!!!!!!!!!!!!!!!!
[2282]1455#ifdef CPP_IOIPSL
1456#ifndef CPP_XIOS
1457  IF (.NOT.ok_all_xml) THEN
1458       ! ATTENTION, LES ANCIENS HISTWRITE ONT ETES CONSERVES EN ATTENDANT MIEUX:
1459       ! Champs interpolles sur des niveaux de pression
1460       missing_val=missing_val_nf90
[1898]1461       DO iff=7, nfiles
[1828]1462
[1898]1463          CALL histwrite_phy(o_tnondef,tnondef(:,:,iff-6),iff)
1464          CALL histwrite_phy(o_ta,twriteSTD(:,:,iff-6),iff)
1465          CALL histwrite_phy(o_zg,phiwriteSTD(:,:,iff-6),iff)
1466          CALL histwrite_phy(o_hus,qwriteSTD(:,:,iff-6),iff)
1467          CALL histwrite_phy(o_hur,rhwriteSTD(:,:,iff-6),iff)
1468          CALL histwrite_phy(o_ua,uwriteSTD(:,:,iff-6),iff)
1469          CALL histwrite_phy(o_va,vwriteSTD(:,:,iff-6),iff)
1470          CALL histwrite_phy(o_wap,wwriteSTD(:,:,iff-6),iff)
1471          IF(vars_defined) THEN
1472             DO k=1, nlevSTD
1473                DO i=1, klon
1474                   IF(tnondef(i,k,iff-6).NE.missing_val) THEN
[1915]1475                      IF(freq_outNMC(iff-6).LT.0) THEN
1476                         freq_moyNMC(iff-6)=(mth_len*un_jour)/freq_calNMC(iff-6)
1477                      ELSE
1478                         freq_moyNMC(iff-6)=freq_outNMC(iff-6)/freq_calNMC(iff-6)
1479                      ENDIF
[1971]1480                      zx_tmp_fi3d_STD(i,k) = (100.*tnondef(i,k,iff-6))/freq_moyNMC(iff-6)
[1898]1481                   ELSE
[1971]1482                      zx_tmp_fi3d_STD(i,k) = missing_val
[1898]1483                   ENDIF
1484                ENDDO
1485             ENDDO
1486          ENDIF
[1971]1487          CALL histwrite_phy(o_psbg,zx_tmp_fi3d_STD,iff)
[1898]1488          IF(vars_defined) THEN
1489             DO k=1, nlevSTD
1490                DO i=1, klon
1491                   IF(O3sumSTD(i,k,iff-6).NE.missing_val) THEN
[1971]1492                      zx_tmp_fi3d_STD(i,k) = O3sumSTD(i,k,iff-6) * 1.e+9
[1898]1493                   ELSE
[1971]1494                      zx_tmp_fi3d_STD(i,k) = missing_val
[1898]1495                   ENDIF
1496                ENDDO
1497             ENDDO !k=1, nlevSTD
1498          ENDIF
[1971]1499          CALL histwrite_phy(o_tro3,zx_tmp_fi3d_STD,iff)
[1898]1500          if (read_climoz == 2) THEN
1501             IF(vars_defined) THEN
1502                DO k=1, nlevSTD
1503                   DO i=1, klon
1504                      IF(O3daysumSTD(i,k,iff-6).NE.missing_val) THEN
[1971]1505                         zx_tmp_fi3d_STD(i,k) = O3daysumSTD(i,k,iff-6) * 1.e+9
[1898]1506                      ELSE
[1971]1507                         zx_tmp_fi3d_STD(i,k) = missing_val
[1898]1508                      ENDIF
1509                   ENDDO
1510                ENDDO !k=1, nlevSTD
1511             ENDIF
[1971]1512             CALL histwrite_phy(o_tro3_daylight,zx_tmp_fi3d_STD,iff)
[1898]1513          endif
1514          CALL histwrite_phy(o_uxv,uvsumSTD(:,:,iff-6),iff)
1515          CALL histwrite_phy(o_vxq,vqsumSTD(:,:,iff-6),iff)
1516          CALL histwrite_phy(o_vxT,vTsumSTD(:,:,iff-6),iff)
1517          CALL histwrite_phy(o_wxq,wqsumSTD(:,:,iff-6),iff)
1518          CALL histwrite_phy(o_vxphi,vphisumSTD(:,:,iff-6),iff)
1519          CALL histwrite_phy(o_wxT,wTsumSTD(:,:,iff-6),iff)
1520          CALL histwrite_phy(o_uxu,u2sumSTD(:,:,iff-6),iff)
1521          CALL histwrite_phy(o_vxv,v2sumSTD(:,:,iff-6),iff)
1522          CALL histwrite_phy(o_TxT,T2sumSTD(:,:,iff-6),iff)
1523       ENDDO !nfiles
[2282]1524  ENDIF
1525#endif
1526#endif
1527#ifdef CPP_XIOS
1528  IF(ok_all_xml) THEN
1529!      DO iff=7, nfiles
1530
1531!         CALL histwrite_phy(o_tnondef,tnondef(:,:,3))
1532          CALL histwrite_phy(o_ta,tlevSTD(:,:))
1533          CALL histwrite_phy(o_zg,philevSTD(:,:))
1534          CALL histwrite_phy(o_hus,qlevSTD(:,:))
1535          CALL histwrite_phy(o_hur,rhlevSTD(:,:))
1536          CALL histwrite_phy(o_ua,ulevSTD(:,:))
1537          CALL histwrite_phy(o_va,vlevSTD(:,:))
1538          CALL histwrite_phy(o_wap,wlevSTD(:,:))
1539!         IF(vars_defined) THEN
1540!            DO k=1, nlevSTD
1541!               DO i=1, klon
1542!                  IF(tnondef(i,k,3).NE.missing_val) THEN
1543!                     IF(freq_outNMC(iff-6).LT.0) THEN
1544!                        freq_moyNMC(iff-6)=(mth_len*un_jour)/freq_calNMC(iff-6)
1545!                     ELSE
1546!                        freq_moyNMC(iff-6)=freq_outNMC(iff-6)/freq_calNMC(iff-6)
1547!                     ENDIF
1548!                     zx_tmp_fi3d_STD(i,k) = (100.*tnondef(i,k,3))/freq_moyNMC(iff-6)
1549!                  ELSE
1550!                     zx_tmp_fi3d_STD(i,k) = missing_val
1551!                  ENDIF
1552!               ENDDO
1553!            ENDDO
1554!         ENDIF
1555!         CALL histwrite_phy(o_psbg,zx_tmp_fi3d_STD)
1556          IF(vars_defined) THEN
1557             DO k=1, nlevSTD
1558                DO i=1, klon
1559                   IF(O3STD(i,k).NE.missing_val) THEN
1560                      zx_tmp_fi3d_STD(i,k) = O3STD(i,k) * 1.e+9
1561                   ELSE
1562                      zx_tmp_fi3d_STD(i,k) = missing_val
1563                   ENDIF
1564                ENDDO
1565             ENDDO !k=1, nlevSTD
1566          ENDIF
1567          CALL histwrite_phy(o_tro3,zx_tmp_fi3d_STD)
1568          if (read_climoz == 2) THEN
1569             IF(vars_defined) THEN
1570                DO k=1, nlevSTD
1571                   DO i=1, klon
1572                      IF(O3daySTD(i,k).NE.missing_val) THEN
1573                         zx_tmp_fi3d_STD(i,k) = O3daySTD(i,k) * 1.e+9
1574                      ELSE
1575                         zx_tmp_fi3d_STD(i,k) = missing_val
1576                      ENDIF
1577                   ENDDO
1578                ENDDO !k=1, nlevSTD
1579             ENDIF
1580             CALL histwrite_phy(o_tro3_daylight,zx_tmp_fi3d_STD)
1581          endif
1582          CALL histwrite_phy(o_uxv,uvSTD(:,:))
1583          CALL histwrite_phy(o_vxq,vqSTD(:,:))
1584          CALL histwrite_phy(o_vxT,vTSTD(:,:))
1585          CALL histwrite_phy(o_wxq,wqSTD(:,:))
1586          CALL histwrite_phy(o_vxphi,vphiSTD(:,:))
1587          CALL histwrite_phy(o_wxT,wTSTD(:,:))
1588          CALL histwrite_phy(o_uxu,u2STD(:,:))
1589          CALL histwrite_phy(o_vxv,v2STD(:,:))
1590          CALL histwrite_phy(o_TxT,T2STD(:,:))
1591!      ENDDO !nfiles
1592  ENDIF
1593#endif
[1828]1594!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
[2114]1595        IF (nqtot.GE.nqo+1) THEN
[2086]1596            DO iq=nqo+1,nqtot
[2180]1597              IF (type_trac == 'lmdz' .OR. type_trac == 'repr') THEN
[2114]1598
[2284]1599!jyg<
1600!!             CALL histwrite_phy(o_trac(iq-nqo), qx(:,:,iq))
1601             CALL histwrite_phy(o_trac(iq-nqo), tr_seri(:,:,iq-nqo))
1602!>jyg
[2086]1603             CALL histwrite_phy(o_dtr_vdf(iq-nqo),d_tr_cl(:,:,iq-nqo))
1604             CALL histwrite_phy(o_dtr_the(iq-nqo),d_tr_th(:,:,iq-nqo))
1605             CALL histwrite_phy(o_dtr_con(iq-nqo),d_tr_cv(:,:,iq-nqo))
1606             CALL histwrite_phy(o_dtr_lessi_impa(iq-nqo),d_tr_lessi_impa(:,:,iq-nqo))
1607             CALL histwrite_phy(o_dtr_lessi_nucl(iq-nqo),d_tr_lessi_nucl(:,:,iq-nqo))
1608             CALL histwrite_phy(o_dtr_insc(iq-nqo),d_tr_insc(:,:,iq-nqo))
1609             CALL histwrite_phy(o_dtr_bcscav(iq-nqo),d_tr_bcscav(:,:,iq-nqo))
1610             CALL histwrite_phy(o_dtr_evapls(iq-nqo),d_tr_evapls(:,:,iq-nqo))
1611             CALL histwrite_phy(o_dtr_ls(iq-nqo),d_tr_ls(:,:,iq-nqo))
1612             CALL histwrite_phy(o_dtr_trsp(iq-nqo),d_tr_trsp(:,:,iq-nqo))
1613             CALL histwrite_phy(o_dtr_sscav(iq-nqo),d_tr_sscav(:,:,iq-nqo))
1614             CALL histwrite_phy(o_dtr_sat(iq-nqo),d_tr_sat(:,:,iq-nqo))
1615             CALL histwrite_phy(o_dtr_uscav(iq-nqo),d_tr_uscav(:,:,iq-nqo))
[1898]1616             zx_tmp_fi2d=0.
1617             IF(vars_defined) THEN
1618                DO k=1,klev
[2284]1619!jyg<
1620!!                   zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+zmasse(:,k)*qx(:,k,iq)
1621                   zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+zmasse(:,k)*tr_seri(:,k,iq-nqo)
1622!>jyg
[1898]1623                ENDDO
1624             ENDIF
[2086]1625             CALL histwrite_phy(o_trac_cum(iq-nqo), zx_tmp_fi2d)
[2180]1626             endif
[1898]1627          ENDDO
1628       ENDIF
[1813]1629
[1898]1630       IF(.NOT.vars_defined) THEN
1631          !$OMP MASTER
[2097]1632#ifndef CPP_IOIPSL_NO_OUTPUT
[1898]1633          DO iff=1,nfiles
1634             IF (clef_files(iff)) THEN
1635                CALL histend(nid_files(iff))
1636                ndex2d = 0
1637                ndex3d = 0
[1821]1638
[1898]1639             ENDIF ! clef_files
1640          ENDDO !  iff
[1852]1641#endif
[1825]1642#ifdef CPP_XIOS
[1898]1643          !On finalise l'initialisation:
1644          CALL wxios_closedef()
[1825]1645#endif
[1852]1646
[1898]1647          !$OMP END MASTER
1648          !$OMP BARRIER
1649          vars_defined = .TRUE.
[1821]1650
[1898]1651       END IF
[1821]1652
1653    END DO
1654
[1798]1655    IF(vars_defined) THEN
[1898]1656       ! On synchronise les fichiers pour IOIPSL
[2097]1657#ifndef CPP_IOIPSL_NO_OUTPUT
[1898]1658       !$OMP MASTER
1659       DO iff=1,nfiles
[1798]1660          IF (ok_sync .AND. clef_files(iff)) THEN
[1898]1661             CALL histsync(nid_files(iff))
[1798]1662          ENDIF
[1898]1663       END DO
1664       !$OMP END MASTER
[1852]1665#endif
[1798]1666    ENDIF
1667
[1898]1668  END SUBROUTINE phys_output_write
[1798]1669
[1898]1670END MODULE phys_output_write_mod
Note: See TracBrowser for help on using the repository browser.