Changeset 5252 for LMDZ6/trunk/libf/dynphy_lonlat
- Timestamp:
- Oct 22, 2024, 2:09:45 PM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90
r5251 r5252 17 17 USE vertical_layers_mod, ONLY : init_vertical_layers 18 18 USE infotrac, ONLY: nbtr, type_trac 19 #ifdef CPP_StratAer20 19 USE infotrac_phy, ONLY: nbtr_bin, nbtr_sulgas, id_OCS_strat, & 21 20 id_SO2_strat, id_H2SO4_strat, id_BIN01_strat 22 23 #endif 24 #ifdef REPROBUS 25 USE CHEM_REP, ONLY : Init_chem_rep_phys 21 USE lmdz_reprobus_wrappers, ONLY : Init_chem_rep_phys 26 22 #ifdef CPP_PARA 27 23 USE parallel_lmdz, ONLY : mpi_size, mpi_rank … … 29 25 #endif 30 26 USE mod_phys_lmdz_omp_data, ONLY: klon_omp 31 #endif32 27 USE control_mod, ONLY: dayref,anneeref,day_step,nday,offline, iphysiq 33 28 USE inifis_mod, ONLY: inifis … … 46 41 USE ioipsl_getin_p_mod, ONLY: getin_p 47 42 USE slab_heat_transp_mod, ONLY: ini_slab_transp_geom 48 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA 43 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_REPROBUS 49 44 IMPLICIT NONE 50 45 … … 140 135 ! Initializations for Reprobus 141 136 IF (type_trac == 'repr') THEN 142 #ifdef REPROBUS 137 IF (CPPKEY_REPROBUS) THEN 143 138 call Init_chem_rep_phys(klon_omp,nlayer) 144 139 call init_reprobus_para( & 145 140 nbp_lon,nbp_lat,nbp_lev,klon_glo,mpi_size, & 146 141 distrib_phys,communicator) 147 #endif 142 END IF 148 143 ENDIF 149 144 !$OMP END PARALLEL … … 151 146 152 147 IF (type_trac == 'repr') THEN 153 #ifdef REPROBUS 148 IF (CPPKEY_REPROBUS) THEN 154 149 call init_reprobus_para( & 155 150 nbp_lon,nbp_lat,nbp_lev,klon_glo,mpi_size, & 156 151 distrib_phys,communicator) 157 #endif 152 END IF 158 153 ENDIF 159 154
Note: See TracChangeset
for help on using the changeset viewer.