Ignore:
Timestamp:
Aug 31, 2011, 2:53:29 PM (13 years ago)
Author:
jghattas
Message:

Added interface with chemestry model REPROBUS :

  • Compile LMDZ together with Reprobus code (dependecies in both directions) and cpp key REPROBUS :

./makelmdz_fcm -ext_src my_path_to_reprobus -cpp REPROBUS ...

  • For running, add type_trac=repr in run.def.

/Marion Marchand, JG

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/phytrac.F90

    r1454 r1565  
    3333  USE traclmdz_mod
    3434  USE tracinca_mod
     35  USE tracreprobus_mod
    3536  USE control_mod
    36 
    3737
    3838
     
    5555  INTEGER,INTENT(IN) :: nstep      ! Appel physique
    5656  INTEGER,INTENT(IN) :: julien     ! Jour julien
    57   REAL,INTENT(IN)    :: gmtime
     57  REAL,INTENT(IN)    :: gmtime     ! Heure courante
    5858  REAL,INTENT(IN)    :: pdtphys    ! Pas d'integration pour la physique (seconde)
    5959  LOGICAL,INTENT(IN) :: debutphy   ! le flag de l'initialisation de la physique
     
    217217        source(:,:)=0.
    218218        CALL tracinca_init(aerosol,lessivage)
     219     CASE('repr')
     220        source(:,:)=0.
    219221     END SELECT
    220222!
     
    257259          rfname,                                        &
    258260          tr_seri,  source,   solsym)     
     261
     262  CASE('repr')
     263     !   -- CHIMIE REPROBUS --
     264
     265     CALL tracreprobus(pdtphys, gmtime, debutphy, julien, &
     266          presnivs, xlat, xlon, pphis, pphi, &
     267          t_seri, pplay, paprs, sh , &
     268          tr_seri, solsym)
     269     
    259270  END SELECT
    260271
Note: See TracChangeset for help on using the changeset viewer.