Ignore:
Timestamp:
Mar 17, 2026, 1:49:29 PM (3 weeks ago)
Author:
Sebastien Nguyen
Message:

fixed bug where Rland_ice and other Orchidee variables where sent to output when lmdz was in bucket mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/LMDZISOdevSN/libf/phylmd/phys_output_write_mod.F90

    r5927 r6109  
    32243224        CALL histwrite_phy(o_xtpluc(ixt), zx_tmp_fi2d)
    32253225        CALL histwrite_phy(o_xtevap(ixt),   xtevap(ixt,:))
    3226         CALL histwrite_phy(o_Rland_ice(ixt), Rland_ice(ixt,:))
     3226        IF (ok_veget) THEN
     3227          CALL histwrite_phy(o_Rland_ice(ixt), Rland_ice(ixt,:))
     3228        ENDIF
    32273229        CALL histwrite_phy(o_xtovap(ixt),  xt_seri(ixt,:,:))
    32283230        CALL histwrite_phy(o_xtoliq(ixt), xtl_seri(ixt,:,:))
     
    32303232        !! runoff land bucket + soil isotopes ratio + river and costal flows PRSN 2025
    32313233        CALL histwrite_phy(o_xtrunoff_diag(ixt), xtrunoff_diag(ixt,:))
    3232         CALL histwrite_phy(o_xtriverflow(ixt),   xtriverflow(ixt,:))
    3233         CALL histwrite_phy(o_xtcoastalflow(ixt),   xtcoastalflow(ixt,:))
    3234         CALL histwrite_phy(o_Rsol(ixt),   Rsol(ixt,:))
     3234        IF (ok_veget) THEN
     3235          CALL histwrite_phy(o_xtriverflow(ixt),   xtriverflow(ixt,:))
     3236          CALL histwrite_phy(o_xtcoastalflow(ixt),   xtcoastalflow(ixt,:))
     3237          CALL histwrite_phy(o_Rsol(ixt),   Rsol(ixt,:))
     3238        ENDIF
    32353239
    32363240        DO nsrf = 1, nbsrf ! ajout Camille 8 mai 2023
Note: See TracChangeset for help on using the changeset viewer.