Ignore:
Timestamp:
Jul 22, 2024, 9:29:09 PM (4 months ago)
Author:
abarral
Message:

Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/radio_decay.F90

    r5082 r5099  
    1 !
     1
    22! $Id $
    3 !
     3
    44SUBROUTINE radio_decay(radio,rnpb,dtime,tautr,tr,d_tr)
    5 !
     5
    66! Caluclate radioactive decay for all tracers with radio(it)=true
    7 !
     7
    88  USE dimphy
    99  USE infotrac_phy, ONLY : nbtr
     
    1515!        Cas particulier pour le couple radon-plomb : Le radon decroit en plomb
    1616!-----------------------------------------------------------------------
    17 !
     17
    1818! Entrees
    19 !
     19
    2020  LOGICAL,DIMENSION(nbtr),INTENT(IN)        :: radio ! .true. = traceur radioactif 
    2121  LOGICAL,INTENT(IN)                        :: rnpb  ! .true. = decroissance RN = source PB
     
    2323  REAL,DIMENSION(nbtr),INTENT(IN)           :: tautr ! Constante de decroissance radioactive
    2424  REAL,DIMENSION(klon,klev,nbtr),INTENT(IN) :: tr    ! Concentrations traceurs U/kgA
    25 !
     25
    2626! Sortie
    27 !
     27
    2828  REAL,DIMENSION(klon,klev,nbtr),INTENT(OUT) :: d_tr  ! Tendance de decroissance radioactive
    29 !
     29
    3030! Locales
    31 !
     31
    3232  INTEGER  :: i,k,it
    3333
Note: See TracChangeset for help on using the changeset viewer.