- Timestamp:
- Sep 9, 2022, 4:33:13 PM (2 years ago)
- Location:
- LMDZ6/trunk/libf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90
r4140 r4241 140 140 141 141 ! Initializations for Reprobus 142 IF ( type_trac == 'repr') THEN142 IF (ANY(types_trac == 'repr')) THEN 143 143 #ifdef REPROBUS 144 144 call Init_chem_rep_phys(klon_omp,nlayer) … … 151 151 152 152 153 IF ( type_trac == 'repr') THEN153 IF (ANY(types_trac == 'repr')) THEN 154 154 #ifdef REPROBUS 155 155 call init_reprobus_para( & … … 166 166 END IF 167 167 168 IF ( type_trac == 'inca' .OR. type_trac == 'inco') THEN168 IF (ANY(types_trac == 'inca') .OR. ANY(types_trac == 'inco')) THEN 169 169 #ifdef INCA 170 170 CALL init_inca_dim_reg(nbp_lon, nbp_lat - 1, & -
LMDZ6/trunk/libf/phylmd/rrtm/lwu.F90
r3666 r4241 76 76 #ifdef REPROBUS 77 77 USE chem_rep, ONLY: rch42d, rn2o2d, rcfc112d, rcfc122d, ok_rtime2d 78 USE infotrac_phy, ONLY : type _trac78 USE infotrac_phy, ONLY : types_trac 79 79 #endif 80 80 … … 321 321 PABCU(JL,18,IC)=PABCU(JL,18,ICP1)+ ZUAER(JL,5) *ZDUC(JL,IC)*ZDIFF 322 322 #ifdef REPROBUS 323 IF ( type_trac=='repr'.and. ok_rtime2d) THEN323 IF (ANY(types_trac=='repr').and. ok_rtime2d) THEN 324 324 !- CH4 325 325 PABCU(JL,19,IC)=PABCU(JL,19,ICP1)&
Note: See TracChangeset
for help on using the changeset viewer.