Changeset 4770


Ignore:
Timestamp:
Dec 10, 2023, 10:37:08 PM (5 months ago)
Author:
lguez
Message:

Bug fix: correct intent of dx in cvltr_noscav

intent(out) means that the whole array becomes undefined on entry of
the procedure. Here we only define dx(:, :, it) and we want to keep
the values of dx for other tracers.

File:
1 edited

Legend:

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

    r3267 r4770  
    2727
    2828! Sortie
    29   REAL,DIMENSION(klon,klev,nbtr),INTENT(OUT) :: dx ! tendance de traceur  (bas en haut)
     29  REAL,DIMENSION(klon,klev,nbtr),INTENT(inOUT) :: dx ! tendance de traceur  (bas en haut)
    3030
    3131! Variables locales     
Note: See TracChangeset for help on using the changeset viewer.