Ignore:
Timestamp:
Mar 23, 2021, 4:14:07 PM (3 years ago)
Author:
lmdz-users
Message:

Modifications from Thibaut to create an ESM with interactive CO2 + INCA aerosols

File:
1 edited

Legend:

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

    r3857 r3865  
    453453    REAL,DIMENSION(klon)      :: zrho, zt
    454454
     455    INTEGER :: nqup
     456
    455457    ! On calcul le nouveau tau:
    456458    itau_w = itau_phy + itap
     
    24362438         ENDIF !--type_trac co2i
    24372439
     2440         IF (type_trac == 'inco') THEN
     2441           nqup = nqo+1
     2442           DO iq=nqo+1, nqup
     2443             !--3D fields
     2444             CALL histwrite_phy(o_trac(iq-nqo), tr_seri(:,:,iq-nqo))
     2445             CALL histwrite_phy(o_dtr_vdf(iq-nqo),d_tr_cl(:,:,iq-nqo))
     2446             CALL histwrite_phy(o_dtr_the(iq-nqo),d_tr_th(:,:,iq-nqo))
     2447             CALL histwrite_phy(o_dtr_con(iq-nqo),d_tr_cv(:,:,iq-nqo))
     2448             !--2D fields
     2449             !--CO2 burden
     2450             zx_tmp_fi2d=0.
     2451             IF (vars_defined) THEN
     2452                DO k=1,klev
     2453                   zx_tmp_fi2d(:)=zx_tmp_fi2d(:)+zmasse(:,k)*tr_seri(:,k,iq-nqo)
     2454                ENDDO
     2455             ENDIF
     2456             CALL histwrite_phy(o_trac_cum(iq-nqo), zx_tmp_fi2d)
     2457           ENDDO !--iq
     2458           !--CO2 net fluxes
     2459           CALL histwrite_phy(o_flx_co2_land,  fco2_land)
     2460           CALL histwrite_phy(o_flx_co2_ocean, fco2_ocean)
     2461           CALL histwrite_phy(o_flx_co2_ocean_cor, fco2_ocean_cor)
     2462           CALL histwrite_phy(o_flx_co2_land_cor, fco2_land_cor)
     2463           CALL histwrite_phy(o_flx_co2_ff,    fco2_ff)
     2464           CALL histwrite_phy(o_flx_co2_bb,    fco2_bb)
     2465         ENDIF !--type_trac inco
     2466
    24382467       ENDIF   !(iflag_phytrac==1)
    24392468
Note: See TracChangeset for help on using the changeset viewer.