Skip to content

Commit

Permalink
Merge pull request #315 from cnrrobertson/ETDRK4-cleanup-fix
Browse files Browse the repository at this point in the history
Remove extra substep in ETDRK4
  • Loading branch information
navidcy authored May 25, 2022
2 parents c6c041c + d55a402 commit 387c387
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Gregory L. Wagner <[email protected]>", "Navid C. Constantinou <
description = "Tools for building fast, hackable, pseudospectral partial differential equation solvers on periodic domains."
documentation = "https://fourierflows.github.io/FourierFlowsDocumentation/stable/"
repository = "https://github.com/FourierFlows/FourierFlows.jl"
version = "0.9.0"
version = "0.9.1"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Expand Down
1 change: 0 additions & 1 deletion src/timesteppers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,6 @@ function ETDRK4substeps!(sol, clock, ts, eq, vars, params, grid)
# Substep 1
eq.calcN!(ts.N₁, sol, clock.t, clock, vars, params, grid)
ETDRK4substep12!(ts.sol₁, ts.exp½Ldt, sol, ts.ζ, ts.N₁)
@. ts.sol₁ = ts.exp½Ldt * sol + ts.ζ * ts.N₁

# Substep 2
t2 = clock.t + clock.dt/2
Expand Down

2 comments on commit 387c387

@navidcy
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/60999

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.1 -m "<description of version>" 387c38750e00da131dd2cbddad3f2444b54cf095
git push origin v0.9.1

Please sign in to comment.