Skip to content

Commit f3b3851

Browse files
committed
Fix bug in 2nd order TVD RK introduced by merge
1 parent c553b78 commit f3b3851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/simulation/m_time_steppers.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -707,7 +707,7 @@ contains
707707
q_cons_ts(1)%vf(i)%sf(j, k, l) = &
708708
(q_cons_ts(2)%vf(i)%sf(j, k, l) &
709709
+ q_cons_ts(1)%vf(i)%sf(j, k, l) &
710-
+ dt*rhs_vf(i)%sf(j, k, l))/4._wp
710+
+ dt*rhs_vf(i)%sf(j, k, l))/2._wp
711711
end do
712712
end do
713713
end do

0 commit comments

Comments
 (0)