Changeset 4389 for LMDZ6/trunk/libf/dynphy_lonlat/phylmd
- Timestamp:
- Jan 23, 2023, 11:28:51 AM (2 years ago)
- Location:
- LMDZ6/trunk/libf/dynphy_lonlat/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/ce0l.F90
r4361 r4389 23 23 USE netcdf, ONLY: NF90_OPEN, NF90_NOWRITE, NF90_CLOSE, NF90_NOERR, & 24 24 NF90_INQUIRE_DIMENSION, NF90_INQ_DIMID, NF90_INQ_VARID, NF90_GET_VAR 25 USE infotrac, ONLY: type_trac,init_infotrac25 USE infotrac, ONLY: init_infotrac 26 26 USE dimphy, ONLY: klon 27 27 USE test_disvert_m, ONLY: test_disvert -
LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90
r4358 r4389 16 16 USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid) 17 17 USE vertical_layers_mod, ONLY : init_vertical_layers 18 USE infotrac, ONLY: nbtr, type_trac , types_trac18 USE infotrac, ONLY: nbtr, type_trac 19 19 #ifdef CPP_StratAer 20 20 USE infotrac_phy, ONLY: nbtr_bin, nbtr_sulgas, id_OCS_strat, & … … 140 140 141 141 ! Initializations for Reprobus 142 IF ( ANY(types_trac == 'repr')) THEN142 IF (type_trac == 'repr') THEN 143 143 #ifdef REPROBUS 144 144 call Init_chem_rep_phys(klon_omp,nlayer) … … 151 151 152 152 153 IF ( ANY(types_trac == 'repr')) THEN153 IF (type_trac == 'repr') THEN 154 154 #ifdef REPROBUS 155 155 call init_reprobus_para( & … … 166 166 END IF 167 167 168 IF (ANY(type s_trac == 'inca') .OR. ANY(types_trac == 'inco')) THEN168 IF (ANY(type_trac == ['inca','inco'])) THEN 169 169 #ifdef INCA 170 170 CALL init_inca_dim_reg(nbp_lon, nbp_lat - 1, &
Note: See TracChangeset
for help on using the changeset viewer.