Changeset 5117 for LMDZ6/branches/Amaury_dev/libf/dyn3dmem/integrd_loc.f90
- Timestamp:
- Jul 24, 2024, 4:23:34 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/dyn3dmem/integrd_loc.f90
r5116 r5117 9 9 USE lmdz_filtreg_p 10 10 USE write_field_loc 11 USE write_field11 USE lmdz_write_field 12 12 USE integrd_mod 13 13 USE comconst_mod, ONLY: pi … … 15 15 USE comvert_mod, ONLY: ap, bp 16 16 USE temps_mod, ONLY: dt 17 USE strings_mod, ONLY: int2str17 USE lmdz_strings, ONLY: int2str 18 18 19 19 IMPLICIT NONE … … 43 43 ! ---------- 44 44 45 INTEGER, intent(in) :: nq ! number of tracers to handle in this routine45 INTEGER,INTENT(IN) :: nq ! number of tracers to handle in this routine 46 46 47 47 REAL,INTENT(INOUT) :: vcov(ijb_v:ije_v,llm) ! covariant meridional wind … … 90 90 91 91 !$OMP BARRIER 92 if(pole_nord) THEN92 IF (pole_nord) THEN 93 93 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 94 94 DO l = 1,llm … … 101 101 ENDIF 102 102 103 if(pole_sud) THEN103 IF (pole_sud) THEN 104 104 !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) 105 105 DO l = 1,llm … … 195 195 ! !WRITE(*,*) 'integrd 200' 196 196 !$OMP MASTER 197 if(pole_nord) THEN197 IF (pole_nord) THEN 198 198 199 199 DO ij = 1, iim … … 207 207 ENDIF 208 208 209 if(pole_sud) THEN209 IF (pole_sud) THEN 210 210 211 211 DO ij = 1, iim … … 255 255 ijb=ij_begin 256 256 ije=ij_end 257 if(pole_nord) ijb=ij_begin+iip1258 if(pole_sud) ije=ij_end-iip1257 IF (pole_nord) ijb=ij_begin+iip1 258 IF (pole_sud) ije=ij_end-iip1 259 259 260 260 DO ij = ijb,ije … … 265 265 ijb=ij_begin 266 266 ije=ij_end 267 if(pole_sud) ije=ij_end-iip1267 IF (pole_sud) ije=ij_end-iip1 268 268 269 269 DO ij = ijb,ije … … 320 320 ucovm1(ijb:ije,l)=uscr(ijb:ije) 321 321 tetam1(ijb:ije,l)=hscr(ijb:ije) 322 if(pole_sud) ije=ij_end-iip1322 IF (pole_sud) ije=ij_end-iip1 323 323 vcovm1(ijb:ije,l)=vscr(ijb:ije) 324 324 … … 334 334 ije=ij_end 335 335 336 if(planet_type=="earth") THEN336 IF (planet_type=="earth") THEN 337 337 ! Earth-specific treatment of first 2 tracers (water) 338 338 !$OMP BARRIER … … 415 415 !c$OMP END DO NOWAIT 416 416 417 endif ! of if (planet_type.eq."earth")417 ENDIF ! of if (planet_type.EQ."earth") 418 418 419 419 !
Note: See TracChangeset
for help on using the changeset viewer.