@@ -157,8 +157,8 @@ contains
157157 write (3 , ' (A)' ) ' ' ; write (3 , ' (A)' ) ' '
158158
159159 ! Generating table header for the stability criteria to be outputted
160- write (3 , ' (13X,A8 ,13X,A10,13X,A10,13X,A10,)' , advance= " no" ) &
161- trim (' Time-steps ' ), trim (' dt' ), trim (' Time' ), trim (' ICFL Max' )
160+ write (3 , ' (13X,A9 ,13X,A10,13X,A10,13X,A10,)' , advance= " no" ) &
161+ trim (' Time-step ' ), trim (' dt' ), trim (' Time' ), trim (' ICFL Max' )
162162
163163 if (viscous) then
164164 write (3 , ' (13X,A10,13X,A16)' , advance= " no" ) &
@@ -309,7 +309,7 @@ contains
309309
310310 ! Determining local stability criteria extrema at current time- step
311311
312- #ifdef _CRAYFTN
312+ ! #ifdef _CRAYFTN
313313 $:GPU_UPDATE(host= ' [icfl_sf]' )
314314 icfl_max_loc = maxval (icfl_sf)
315315
@@ -323,23 +323,23 @@ contains
323323 $:GPU_UPDATE(host= ' [ccfl_sf]' )
324324 ccfl_max_loc = maxval (ccfl_sf)
325325 end if
326- #else
327- #:call GPU_PARALLEL(copyout= ' [icfl_max_loc]' , copyin= ' [icfl_sf]' )
328- icfl_max_loc = maxval (icfl_sf)
329- #:endcall GPU_PARALLEL
330- if (viscous) then
331- #:call GPU_PARALLEL(copyout= ' [vcfl_max_loc, Rc_min_loc]' , copyin= ' [vcfl_sf,Rc_sf]' )
332- vcfl_max_loc = maxval (vcfl_sf)
333- Rc_min_loc = minval (Rc_sf)
334- #:endcall GPU_PARALLEL
335- end if
336-
337- if (surface_tension) then
338- #:call GPU_PARALLEL(copyout= ' [ccfl_max_loc]' , copyin= ' [ccfl_sf]' )
339- ccfl_max_loc = maxval (ccfl_sf)
340- #:endcall GPU_PARALLEL
341- end if
342- #endif
326+ ! #else
327+ ! #:call GPU_PARALLEL(copyout= ' [icfl_max_loc]' , copyin= ' [icfl_sf]' )
328+ ! icfl_max_loc = maxval (icfl_sf)
329+ ! #:endcall GPU_PARALLEL
330+ ! if (viscous) then
331+ ! #:call GPU_PARALLEL(copyout= ' [vcfl_max_loc, Rc_min_loc]' , copyin= ' [vcfl_sf,Rc_sf]' )
332+ ! vcfl_max_loc = maxval (vcfl_sf)
333+ ! Rc_min_loc = minval (Rc_sf)
334+ ! #:endcall GPU_PARALLEL
335+ ! end if
336+
337+ ! if (surface_tension) then
338+ ! #:call GPU_PARALLEL(copyout= ' [ccfl_max_loc]' , copyin= ' [ccfl_sf]' )
339+ ! ccfl_max_loc = maxval (ccfl_sf)
340+ ! #:endcall GPU_PARALLEL
341+ ! end if
342+ ! #endif
343343
344344 ! Determining global stability criteria extrema at current time- step
345345 if (num_procs > 1 ) then
@@ -372,8 +372,8 @@ contains
372372
373373 ! Outputting global stability criteria extrema at current time- step
374374 if (proc_rank == 0 ) then
375- write (3 , ' (13X,I8 ,13X,F10.6,13X,F10.6,13X,F10.6)' , advance= " no" ) &
376- t_step, dt, t_step * dt , icfl_max_glb
375+ write (3 , ' (13X,I9 ,13X,F10.6,13X,F10.6,13X,F10.6)' , advance= " no" ) &
376+ t_step, dt, mytime , icfl_max_glb
377377
378378 if (viscous) then
379379 write (3 , ' (13X,F10.6,13X,ES16.6)' , advance= " no" ) &
0 commit comments