Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisZYJ committed Jun 29, 2024
1 parent 96223ea commit 2320a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulation/m_monopole.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ contains
do q = 1, num_mono

the_time = t_step*dt
if ((the_time >= delay(q)) .or. (.not. f_is_default(delay(q)))) then
if ((the_time >= delay(q)) .or. f_is_default(delay(q))) then
!$acc loop seq
do ii = 1, num_fluids
myalpha_rho(ii) = q_cons_vf(ii)%sf(j, k, l)
Expand Down

0 comments on commit 2320a1f

Please sign in to comment.