@@ -487,23 +487,23 @@ contains
487487 call s_compute_rhs(q_cons_ts(1 )%vf, q_T_sf, q_prim_vf, bc_type, rhs_vf, pb_ts(1 )%sf, rhs_pb, mv_ts(1 )%sf, rhs_mv, t_step, time_avg, s)
488488
489489 if (s == 1 ) then
490- if (run_time_info) then
491- if (igr) then
492- call s_write_run_time_information(q_cons_ts(1 )%vf, t_step)
493- else
494- call s_write_run_time_information(q_prim_vf, t_step)
490+ if (run_time_info) then
491+ if (igr) then
492+ call s_write_run_time_information(q_cons_ts(1 )%vf, t_step)
493+ else
494+ call s_write_run_time_information(q_prim_vf, t_step)
495+ end if
495496 end if
496- end if
497497
498- if (probe_wrt) then
499- call s_time_step_cycling(t_step)
500- end if
498+ if (probe_wrt) then
499+ call s_time_step_cycling(t_step)
500+ end if
501501
502- if (cfl_dt) then
503- if (mytime >= t_stop) return
504- else
505- if (t_step == t_step_stop) return
506- end if
502+ if (cfl_dt) then
503+ if (mytime >= t_stop) return
504+ else
505+ if (t_step == t_step_stop) return
506+ end if
507507 end if
508508
509509 if (bubbles_lagrange .and. .not. adap_dt) call s_update_lagrange_tdv_rk(stage= s)
@@ -519,8 +519,8 @@ contains
519519 end if
520520 q_cons_ts(1 )%vf(i)%sf(j, k, l) = &
521521 (rk_coef(s, 1 )* q_cons_ts(1 )%vf(i)%sf(j, k, l) &
522- + rk_coef(s, 2 )* q_cons_ts(stor)%vf(i)%sf(j, k, l) &
523- + rk_coef(s, 3 )* dt* rhs_vf(i)%sf(j, k, l))/ rk_coef(s, 4 )
522+ + rk_coef(s, 2 )* q_cons_ts(stor)%vf(i)%sf(j, k, l) &
523+ + rk_coef(s, 3 )* dt* rhs_vf(i)%sf(j, k, l))/ rk_coef(s, 4 )
524524 end do
525525 end do
526526 end do
@@ -542,12 +542,12 @@ contains
542542 end if
543543 pb_ts(1 )%sf(j, k, l, q, i) = &
544544 (rk_coef(s, 1 )* pb_ts(1 )%sf(j, k, l, q, i) &
545- + rk_coef(s, 2 )* pb_ts(stor)%sf(j, k, l, q, i) &
546- + rk_coef(s, 3 )* dt* rhs_pb(j, k, l, q, i))/ rk_coef(s, 4 )
545+ + rk_coef(s, 2 )* pb_ts(stor)%sf(j, k, l, q, i) &
546+ + rk_coef(s, 3 )* dt* rhs_pb(j, k, l, q, i))/ rk_coef(s, 4 )
547547 mv_ts(1 )%sf(j, k, l, q, i) = &
548548 (rk_coef(s, 1 )* mv_ts(1 )%sf(j, k, l, q, i) &
549- + rk_coef(s, 2 )* mv_ts(stor)%sf(j, k, l, q, i) &
550- + rk_coef(s, 3 )* dt* rhs_mv(j, k, l, q, i))/ rk_coef(s, 4 )
549+ + rk_coef(s, 2 )* mv_ts(stor)%sf(j, k, l, q, i) &
550+ + rk_coef(s, 3 )* dt* rhs_mv(j, k, l, q, i))/ rk_coef(s, 4 )
551551 end do
552552 end do
553553 end do
0 commit comments