You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move SWEs from Trixi.jl to TrixiShallowWater.jl (#96)
* move SWEs from Trixi.jl
* switch to trixi version from separationPR for testing
* switch to Trixi.jl version from PR for testing
* try alternative way to test with PR version
* update ci.yml
* include workaround for test without coverage
* add dgmulti and t8code testing
* add ci workaround to documenter.yml
* fix dostring references
* apply formatter
* update documenter.yml
* update documenter.yml
* fix comments
* add debug statement to documenter.yml
* update documenter.yml
* remove debug statements
* with external references in docs
* rename SWE_WetDry to SWE
* update docstrings
* fix documenter.yml to julia v1.10
* add news.md entry
* fix wavespeed estimates for SWE1D
* adjust test tolerances to the floating-point format
* Update examples/unstructured_2d_dgsem/elixir_shallowwater_ec_float32.jl
Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com>
* Update elixir_shallowwater_perturbation_wet_dry_amr.jl
Mistakenly merged conflict resolution with wrong equation name.
* adjust equation name in new coarsen/refine routines
* run formatter
* Apply suggestions from code review
Co-authored-by: Andrew Winters <andrew.ross.winters@liu.se>
* rename swe files
* uncomment type tests and remove experimental warning
* apply suggestion from code review
* Update src/equations/equations.jl
Co-authored-by: Andrew Winters <andrew.ross.winters@liu.se>
* remove code highlighting for package names
* test against Trixi/main
* allow Trixi.jl v0.12 for docs
* update version
* update docstring reference for FluxHydrostaticReconstruction
---------
Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com>
Co-authored-by: Andrew Winters <andrew.ross.winters@liu.se>
Copy file name to clipboardExpand all lines: docs/src/tutorials/elixir_shallowwater_dam_break_triangular.jl
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,12 @@
13
13
# - Set up a SWE solver for wet/dry transitions
14
14
# - Create custom initial conditions and source terms
15
15
# - Save solution data at gauge points
16
-
# - Visualization with [`Makie.jl`](https://docs.makie.org/dev/)
16
+
# - Visualization with [Makie.jl](https://docs.makie.org/dev/)
17
17
18
18
# ## Load required packages
19
19
# Before we start, we need to load the required packages. Besides TrixiShallowWater.jl, we require
20
-
# [`Trixi.jl`](@extref Trixi.jl) for the spatial discretization and [`OrdinaryDiffEqSSPRK.jl`](https://docs.sciml.ai/OrdinaryDiffEq/stable/) for time integration.
21
-
# In addition to that [`CairoMakie.jl`](https://docs.makie.org/dev/) is used for visualization and [`CSV.jl`](https://csv.juliadata.org/stable/) and [`DataFrames.jl`](https://dataframes.juliadata.org/stable/) will
20
+
# [Trixi.jl](@extref Trixi.jl) for the spatial discretization and [OrdinaryDiffEqSSPRK.jl](https://docs.sciml.ai/OrdinaryDiffEq/stable/) for time integration.
21
+
# In addition to that [CairoMakie.jl](https://docs.makie.org/dev/) is used for visualization and [CSV.jl](https://csv.juliadata.org/stable/) and [DataFrames.jl](https://dataframes.juliadata.org/stable/) will
22
22
# be used to load the experimental data.
23
23
24
24
# Standard packages
@@ -33,16 +33,16 @@ using CSV
33
33
# ## Prepare and run the problem setup
34
34
35
35
# In the first step we will set up the equation system. In this example we want to solve the
36
-
# one-dimensional shallow water equations, so we will use the [`ShallowWaterEquationsWetDry1D`](@ref ShallowWaterEquationsWetDry1D)
36
+
# one-dimensional shallow water equations, so we will use the [`ShallowWaterEquations1D`](@ref)
37
37
# and specify the gravitational acceleration to `gravity = 9.812`. In contrast to the
38
-
# [`Trixi.ShallowWaterEquations1D`](@extref Trixi.ShallowWaterEquations1D) type, this equation type
38
+
# [`ShallowWaterEquations1D`](@ref) type, this equation type
39
39
# contains additional parameters and methods that are needed to handle wetting and drying.
0 commit comments