Skip to content

Commit

Permalink
Fix extrapolation.
Browse files Browse the repository at this point in the history
Co-authored-by: gianlupo <[email protected]>
  • Loading branch information
p-costa and gianlupo authored Nov 5, 2024
1 parent e883b94 commit 6442d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.f90
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ program cans
if(myid == 0) print*, 'Time step #', istep, 'Time = ', time
do irk=1,3
tm_coeff(:) = rkcoeff(:,irk)
dtrk = sum(tm_coeff(:))*dt
dtrk = sum(rkcoeff(:,1:irk))*dt
dtrki = dtrk**(-1)
dt_r = dtrk/dto
!
Expand Down

0 comments on commit 6442d7f

Please sign in to comment.