Changeset 3095 for LMDZ6/trunk/libf
- Timestamp:
- Dec 1, 2017, 5:07:32 PM (7 years ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/phys_output_ctrlout_mod.F90
r3082 r3095 330 330 'ndayrain', 'Number of dayrain(liq+sol)', '-', & 331 331 (/ "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)", "inst(X)" /)) 332 TYPE(ctrl_out), SAVE :: o_rain_fall = ctrl_out((/ 1, 1, 1, 10, 5, 10, 11, 11, 11, 11/), & 333 'rain_fall', 'Precip Totale liq', 'kg/(s*m2)', (/ ('', i=1, 10) /)) 332 334 TYPE(ctrl_out), SAVE :: o_precip = ctrl_out((/ 1, 1, 1, 10, 5, 10, 11, 11, 11, 11/), & 333 335 'precip', 'Precip Totale liq+sol', 'kg/(s*m2)', (/ ('', i=1, 10) /)) … … 477 479 TYPE(ctrl_out), SAVE :: o_fqfonte = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11, 11/), & 478 480 'fqfonte', 'Land ice melt', 'kg/m2/s', (/ ('', i=1, 10) /)) 481 TYPE(ctrl_out), SAVE :: o_mrroli = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11, 11/), & 482 'mrroli', 'Runoff flux over land ice', 'kg/m2/s', (/ ('', i=1, 10) /)) 479 483 TYPE(ctrl_out), SAVE :: o_runofflic = ctrl_out((/ 1, 10, 10, 10, 10, 10, 11, 11, 11, 11/), & 480 484 'runofflic', 'Land ice melt to ocean', 'kg/m2/s', (/ ('', i=1, 10) /)) -
LMDZ6/trunk/libf/phylmd/phys_output_write_mod.F90
r3082 r3095 40 40 o_wind10m, o_wind10max, o_gusts, o_sicf, & 41 41 o_psol, o_mass, o_qsurf, o_qsol, & 42 o_precip, o_ ndayrain, o_plul, o_pluc, o_plun, &42 o_precip, o_rain_fall, o_ndayrain, o_plul, o_pluc, o_plun, & 43 43 o_snow, o_msnow, o_fsnow, o_evap, o_ep,o_epmax_diag, & ! epmax_cape 44 44 o_tops, o_tops0, o_topl, o_topl0, & … … 54 54 o_bils_ec,o_bils_ech, o_bils_tke, o_bils_kinetic, & 55 55 o_bils_latent, o_bils_enthalp, o_sens, & 56 o_fder, o_ffonte, o_fqcalving, o_fqfonte, o_ runofflic, &56 o_fder, o_ffonte, o_fqcalving, o_fqfonte, o_mrroli, o_runofflic, & 57 57 o_taux, o_tauy, o_snowsrf, o_qsnow, & 58 58 o_snowhgt, o_toice, o_sissnow, o_runoff, & … … 668 668 669 669 CALL histwrite_phy(o_precip, zx_tmp_fi2d) 670 CALL histwrite_phy(o_rain_fall, rain_fall) 670 671 CALL histwrite_phy(o_ndayrain, nday_rain) 671 672 … … 799 800 CALL histwrite_phy(o_fqcalving, zxfqcalving) 800 801 CALL histwrite_phy(o_fqfonte, zxfqfonte) 802 IF (vars_defined) THEN 803 zx_tmp_fi2d(1:klon)=(zxfqfonte(1:klon)+rain_fall(1:klon))*pctsrf(1:klon,is_lic) 804 ENDIF 805 CALL histwrite_phy(o_mrroli, zx_tmp_fi2d) 801 806 CALL histwrite_phy(o_runofflic, zxrunofflic) 802 807 IF (vars_defined) THEN
Note: See TracChangeset
for help on using the changeset viewer.