Ignore:
Timestamp:
Jan 13, 2025, 11:22:23 AM (24 hours ago)
Author:
jyg
Message:

output the total wet deposit of tracers (convective + large scale)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/phys_output_mod.F90

    r5447 r5473  
    172172    ALLOCATE(o_dtr_evapls(nqtot),o_dtr_ls(nqtot),o_dtr_trsp(nqtot))
    173173    ALLOCATE(o_dtr_sscav(nqtot),o_dtr_sat(nqtot),o_dtr_uscav(nqtot))
    174     ALLOCATE(o_dtr_wet_con(nqtot))
     174    ALLOCATE(o_dtr_wet_cv(nqtot), o_dtr_wet(nqtot))
    175175    ALLOCATE(o_dtr_dry(nqtot),o_dtr_vdf(nqtot))
    176176IF (CPPKEY_STRATAER) THEN
     
    542542
    543543            lnam = 'tracer convective wet deposition'//TRIM(tracers(iq)%longName)
    544             tnam = TRIM(dn)//'wet_con';       o_dtr_wet_con       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
     544            tnam = TRIM(dn)//'wet_cv';       o_dtr_wet_cv       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
     545            lnam = 'tracer total wet deposition'//TRIM(tracers(iq)%longName)
     546            tnam = TRIM(dn)//'wet';       o_dtr_wet       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
    545547            lnam = 'tracer tendency dry deposition'//TRIM(tracers(iq)%longName)
    546548            tnam = 'cum'//TRIM(dn)//'dry';  o_dtr_dry       (itr) = ctrl_out(flag, tnam, lnam, "-", [('',i=1,nfiles)])
Note: See TracChangeset for help on using the changeset viewer.