Skip to content

Commit

Permalink
Merge branch 'manufactured-Svaerd-Kalisch-variable' of https://github…
Browse files Browse the repository at this point in the history
….com/JoshuaLampert/DispersiveShallowWater.jl into manufactured-Svaerd-Kalisch-variable
  • Loading branch information
JoshuaLampert committed Feb 1, 2024
2 parents 9c94fa3 + bb88b6f commit e3e0e39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
with:
version: '1.9'
show-versioninfo: true
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# We could also include the Julia version as in
# name: ${{ matrix.trixi_test }} - ${{ matrix.os }} - Julia ${{ matrix.version }} - ${{ matrix.arch }} - ${{ github.event_name }}
# to be more specific. However, that requires us updating the required CI tests whenever we update Julia.
name: Downgrade ${{ matrix.trixi_test }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Downgrade ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ DocMeta.setdocmeta!(DispersiveShallowWater, :DocTestSetup, :(using DispersiveSha
makedocs(;
modules = [DispersiveShallowWater],
authors = "Joshua Lampert <[email protected]>",
repo = "https://github.com/JoshuaLampert/DispersiveShallowWater.jl/blob/{commit}{path}#{line}",
repo = Remotes.GitHub("JoshuaLampert", "DispersiveShallowWater.jl"),
sitename = "DispersiveShallowWater.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
Expand Down
2 changes: 1 addition & 1 deletion src/equations/svaerd_kalisch_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function initial_condition_manufactured(x, t,
mesh)
eta = exp(t) * cospi(2 * (x - 2 * t))
v = exp(t / 2) * sinpi(2 * (x - t / 2))
D = 5.0 + 2.0 * cospi(2 * x)
D = 5 + 2 * cospi(2 * x)
return SVector(eta, v, D)
end

Expand Down

0 comments on commit e3e0e39

Please sign in to comment.