Ignore:
Timestamp:
Oct 9, 2012, 3:29:15 PM (12 years ago)
Author:
Laurent Fairhead
Message:

Version testing basée sur la r1575


Testing release based on r1575

Location:
LMDZ5/branches/testing
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/branches/testing

  • LMDZ5/branches/testing/libf/phylmd/phytrac.F90

    r1454 r1664  
    3333  USE traclmdz_mod
    3434  USE tracinca_mod
     35  USE tracreprobus_mod
    3536  USE control_mod
    36 
    3737
    3838
     
    4646  INCLUDE "paramet.h"
    4747  INCLUDE "thermcell.h"
     48  INCLUDE "iniprint.h"
    4849!==========================================================================
    4950!                   -- ARGUMENT DESCRIPTION --
     
    5556  INTEGER,INTENT(IN) :: nstep      ! Appel physique
    5657  INTEGER,INTENT(IN) :: julien     ! Jour julien
    57   REAL,INTENT(IN)    :: gmtime
     58  REAL,INTENT(IN)    :: gmtime     ! Heure courante
    5859  REAL,INTENT(IN)    :: pdtphys    ! Pas d'integration pour la physique (seconde)
    5960  LOGICAL,INTENT(IN) :: debutphy   ! le flag de l'initialisation de la physique
     
    202203!######################################################################
    203204  IF (debutphy) THEN
    204      WRITE(*,*) 'FIRST TIME IN PHYTRAC : pdtphys(sec) = ',pdtphys,'ecrit_tra (sec) = ',ecrit_tra
     205     IF (prt_level >9) WRITE(lunout,*) 'FIRST TIME IN PHYTRAC : pdtphys(sec) = ',pdtphys,'ecrit_tra (sec) = ',ecrit_tra
    205206     ALLOCATE( source(klon,nbtr), stat=ierr)
    206207     IF (ierr /= 0) CALL abort_gcm('phytrac', 'pb in allocation 1',1)
     
    217218        source(:,:)=0.
    218219        CALL tracinca_init(aerosol,lessivage)
     220     CASE('repr')
     221        source(:,:)=0.
    219222     END SELECT
    220223!
     
    222225! ----------------------------
    223226#ifdef CPP_IOIPSL
    224 !     INCLUDE "ini_histrac.h"
     227     INCLUDE "ini_histrac.h"
    225228#endif
    226229  END IF
     
    257260          rfname,                                        &
    258261          tr_seri,  source,   solsym)     
     262
     263  CASE('repr')
     264     !   -- CHIMIE REPROBUS --
     265
     266     CALL tracreprobus(pdtphys, gmtime, debutphy, julien, &
     267          presnivs, xlat, xlon, pphis, pphi, &
     268          t_seri, pplay, paprs, sh , &
     269          tr_seri, solsym)
     270     
    259271  END SELECT
    260272
     
    403415!=============================================================
    404416#ifdef CPP_IOIPSL
    405 !  INCLUDE "write_histrac.h"
     417  INCLUDE "write_histrac.h"
    406418#endif
    407419
Note: See TracChangeset for help on using the changeset viewer.