Changeset 2057 for LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90
- Timestamp:
- Jun 16, 2014, 4:33:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phys_output_write_mod.F90
r2051 r2057 24 24 ! defined and initialised in phys_output_mod.F90 25 25 26 USE dimphy, only: klon, klev, klevp1 26 USE dimphy, only: klon, klev, klevp1, nslay 27 27 USE control_mod, only: day_step, iphysiq 28 28 USE phys_output_ctrlout_mod, only: o_phis, o_aire, is_ter, is_lic, is_oce, & … … 77 77 o_ale_bl_trig, o_alp_bl_det, & 78 78 o_alp_bl_fluct_m, o_alp_bl_fluct_tke, & 79 o_alp_bl_conv, o_alp_bl_stat, o_slab_bils, & 79 o_alp_bl_conv, o_alp_bl_stat, & 80 o_slab_qflux, o_tslab, o_slab_bils, & 80 81 o_weakinv, o_dthmin, o_cldtau, & 81 82 o_cldemi, o_pr_con_l, o_pr_con_i, & … … 219 220 bils_ec,bils_ech, bils_tke, bils_kinetic, bils_latent, bils_enthalp, & 220 221 itau_con, nfiles, clef_files, nid_files, zvstr_gwd_rando 222 USE ocean_slab_mod, only: tslab, slab_bils 221 223 USE indice_sol_mod, only: nbsrf 222 224 USE infotrac, only: nqtot … … 726 728 ENDIF !(iflag_clos_bl>=1) 727 729 !!! fin nrlmd le 10/04/2012 730 ! Output of slab ocean variables 728 731 IF (type_ocean=='slab ') THEN 729 CALL histwrite_phy(o_slab_bils, slab_wfbils) 732 CALL histwrite_phy(o_slab_qflux, slab_wfbils) 733 CALL histwrite_phy(o_slab_bils, slab_bils) 734 IF (nslay.EQ.1) THEN 735 zx_tmp_fi2d(:)=tslab(:,1) 736 CALL histwrite_phy(o_tslab, zx_tmp_fi2d) 737 ELSE 738 CALL histwrite_phy(o_tslab, tslab) 739 END IF 730 740 ENDIF !type_ocean == force/slab 731 741 CALL histwrite_phy(o_weakinv, weak_inversion)
Note: See TracChangeset
for help on using the changeset viewer.