Changeset 1565 for LMDZ5/trunk/libf/dyn3dpar
- Timestamp:
- Aug 31, 2011, 2:53:29 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3dpar/infotrac.F90
r1563 r1565 32 32 SUBROUTINE infotrac_init 33 33 USE control_mod 34 34 #ifdef REPROBUS 35 USE CHEM_REP, ONLY : Init_chem_rep_trac 36 #endif 35 37 IMPLICIT NONE 36 38 !======================================================================= … … 94 96 CALL abort_gcm('infotrac_init','Incoherence between type_trac and config_inca',1) 95 97 END IF 98 ELSE IF (type_trac=='repr') THEN 99 WRITE(lunout,*) 'You have choosen to couple with REPROBUS chemestry model : type_trac=', type_trac 96 100 ELSE IF (type_trac == 'lmdz') THEN 97 101 WRITE(lunout,*) 'Tracers are treated in LMDZ only : type_trac=', type_trac … … 115 119 ! 116 120 !----------------------------------------------------------------------- 117 IF (type_trac == 'lmdz' ) THEN121 IF (type_trac == 'lmdz' .OR. type_trac == 'repr') THEN 118 122 OPEN(90,file='traceur.def',form='formatted',status='old', iostat=ierr) 119 123 IF(ierr.EQ.0) THEN … … 147 151 END IF 148 152 153 ! Transfert number of tracers to Reprobus 154 IF (type_trac == 'repr') THEN 155 #ifdef REPROBUS 156 CALL Init_chem_rep_trac(nbtr) 157 #endif 158 END IF 149 159 150 160 ! … … 182 192 ! Get choice of advection schema from file tracer.def or from INCA 183 193 !--------------------------------------------------------------------- 184 IF (type_trac == 'lmdz' ) THEN194 IF (type_trac == 'lmdz' .OR. type_trac == 'repr') THEN 185 195 IF(ierr.EQ.0) THEN 186 196 ! Continue to read tracer.def
Note: See TracChangeset
for help on using the changeset viewer.