Changeset 4596 for LMDZ6/trunk
- Timestamp:
- Jun 30, 2023, 5:03:07 PM (16 months ago)
- Location:
- LMDZ6/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/oasis.F90
r4370 r4596 141 141 CHARACTER (len = 80) :: abort_message 142 142 LOGICAL, SAVE :: cpl_current_omp 143 INTEGER, DIMENSION(klon_mpi) :: ind_cell_glo_mpi 143 144 144 145 !* 1. Initializations … … 175 176 cpl_current = cpl_current_omp 176 177 WRITE(lunout,*) 'Couple ocean currents, cpl_current = ',cpl_current 178 179 !************************************************************************************ 180 ! Gather global index to be used for oasis decomposition 181 !************************************************************************************ 182 CALL gather_omp(ind_cell_glo,ind_cell_glo_mpi) 177 183 178 184 !************************************************************************************ … … 291 297 292 298 DO jf=1, klon_mpi_para_nb(mpi_rank) 293 ig_paral(2+jf) = ind_cell_glo (jf)299 ig_paral(2+jf) = ind_cell_glo_mpi(jf) 294 300 ENDDO 295 301 -
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r4590 r4596 1315 1315 irneb= strIdx(tracers(:)%name, addPhase('H2O', 'r')) 1316 1316 ibs = strIdx(tracers(:)%name, addPhase('H2O', 'b')) 1317 CALL init_etat0_limit_unstruct1318 IF (.NOT. create_etat0_limit) CALL init_limit_read(days_elapsed)1317 ! CALL init_etat0_limit_unstruct 1318 ! IF (.NOT. create_etat0_limit) CALL init_limit_read(days_elapsed) 1319 1319 !CR:nvelles variables convection/poches froides 1320 1320 … … 1339 1339 read_climoz, & 1340 1340 alp_offset) 1341 CALL init_etat0_limit_unstruct 1342 IF (.NOT. create_etat0_limit) CALL init_limit_read(days_elapsed) 1341 1343 CALL phys_state_var_init(read_climoz) 1342 1344 CALL phys_output_var_init
Note: See TracChangeset
for help on using the changeset viewer.