Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
52a4cc8
remove shallow water equations
patrickersing Apr 29, 2025
f37f813
apply formatter
patrickersing Apr 29, 2025
1ccbab2
Merge branch 'main' into swe_separation
patrickersing May 2, 2025
20ce638
add docstrings to the functions that are shared between subpackages
patrickersing May 5, 2025
69e0b9c
add additional tests for TreeMesh
patrickersing May 5, 2025
17abbdd
move empty exported fluxes from equations.jl to numerical_fluxes.jl
patrickersing May 5, 2025
3e75a31
add news item
patrickersing May 5, 2025
55a2372
add elixir_mhd_onion.jl and corresponding test for UnstructuredMesh2D
patrickersing May 5, 2025
03b129a
Merge branch 'main' into swe_separation
patrickersing May 6, 2025
b2bae73
add unit_test for lake_at_rest_error
patrickersing May 8, 2025
0dfb7c5
remove todo note
patrickersing May 8, 2025
38c6e86
replace swe elixir in benchmarks.jl with euler_quasi_1d
patrickersing May 8, 2025
5e88c60
Merge branch 'main' into swe_separation
patrickersing May 8, 2025
302c8ca
Update NEWS.md
patrickersing May 15, 2025
18f175e
Merge branch 'main' into swe_separation
patrickersing May 15, 2025
fdc9e06
modify docstrings for empty interface functions
patrickersing May 20, 2025
1159cc3
Merge branch 'main' into swe_separation
patrickersing May 20, 2025
888e762
Merge branch 'main' into swe_separation
andrewwinters5000 May 24, 2025
e8c0b37
Merge branch 'main' into swe_separation
patrickersing May 26, 2025
aebde95
Merge branch 'main' into swe_separation
ranocha May 27, 2025
270e8f7
Apply suggestions from code review
patrickersing May 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ Trixi.jl follows the interpretation of
used in the Julia ecosystem. Notable changes will be documented in this file
for human readability.

## Changes when updating to v0.12 from v0.11.x

#### Added

#### Changed

#### Deprecated

#### Removed
- The Shallow-water equation types `ShallowWaterEquations1D`, `ShallowWaterEquations2D`, and `ShallowWaterEquationsQuasi1D` have been removed from `Trixi.jl` and are now available via [`TrixiShallowWater.jl`](https://github.com/trixi-framework/TrixiShallowWater.jl/). This also affects the related functions `hydrostatic_reconstruction_audusse_etal`, `flux_nonconservative_audusse_etal`, and `FluxHydrostaticReconstruction`. ([#2379])

## Changes in the v0.11 lifecycle

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ installation and postprocessing procedures. Its features include:
* Linearized Euler and acoustic perturbation equations
* Hyperbolic diffusion equations for elliptic problems
* Lattice-Boltzmann equations (D2Q9 and D3Q27 schemes)
* Shallow water equations
* Shallow water equations via [TrixiShallowWater.jl](https://github.com/trixi-framework/TrixiShallowWater.jl)
* Several scalar conservation laws (e.g., linear advection, Burgers' equation, LWR traffic flow)
* Multi-physics simulations
* [Self-gravitating gas dynamics](https://github.com/trixi-framework/paper-self-gravitating-gas-dynamics)
Expand Down
2 changes: 1 addition & 1 deletion benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for elixir in [# 1D
joinpath(examples_dir(), "structured_1d_dgsem", "elixir_euler_sedov.jl"),
joinpath(examples_dir(), "tree_1d_dgsem", "elixir_mhd_ec.jl"),
joinpath(examples_dir(), "tree_1d_dgsem", "elixir_navierstokes_convergence_walls_amr.jl"),
joinpath(examples_dir(), "tree_1d_dgsem", "elixir_shallowwater_well_balanced_nonperiodic.jl"),
joinpath(examples_dir(), "tree_1d_dgsem", "elixir_euler_quasi_1d_source_terms_dirichlet.jl"),
# 2D
joinpath(examples_dir(), "tree_2d_dgsem", "elixir_advection_extended.jl"),
joinpath(examples_dir(), "tree_2d_dgsem", "elixir_advection_amr_nonperiodic.jl"),
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ installation and postprocessing procedures. Its features include:
* Linearized Euler and acoustic perturbation equations
* Hyperbolic diffusion equations for elliptic problems
* Lattice-Boltzmann equations (D2Q9 and D3Q27 schemes)
* Shallow water equations
* Shallow water equations via [TrixiShallowWater.jl](https://github.com/trixi-framework/TrixiShallowWater.jl)
* Several scalar conservation laws (e.g., linear advection, Burgers' equation, LWR traffic flow)
* Multi-physics simulations
* [Self-gravitating gas dynamics](https://github.com/trixi-framework/paper-self-gravitating-gas-dynamics)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ different features on different mesh types.
| Weak form | ✅ | ✅ | ✅ | ✅ | ✅ | [`VolumeIntegralWeakForm`](@ref)
| Flux differencing | ✅ | ✅ | ✅ | ✅ | ✅ | [`VolumeIntegralFluxDifferencing`](@ref)
| Shock capturing | ✅ | ✅ | ✅ | ✅ | ❌ | [`VolumeIntegralShockCapturingHG`](@ref)
| Nonconservative equations | ✅ | ✅ | ✅ | ✅ | ✅ | e.g., GLM MHD or shallow water equations
| Nonconservative equations | ✅ | ✅ | ✅ | ✅ | ✅ | e.g., [`IdealGlmMhdEquations2D`](@ref)
| Parabolic terms | ✅ | ❌ | ❌ | ✅ | ✅ | e.g., [`CompressibleNavierStokesDiffusion2D`](@ref)

ᵃ: quad = quadrilateral, hex = hexahedron
Expand Down
48 changes: 0 additions & 48 deletions examples/dgmulti_1d/elixir_shallow_water_quasi_1d.jl

This file was deleted.

45 changes: 0 additions & 45 deletions examples/dgmulti_2d/elixir_shallowwater_source_terms.jl

This file was deleted.

60 changes: 0 additions & 60 deletions examples/p4est_2d_dgsem/elixir_shallowwater_source_terms.jl

This file was deleted.

120 changes: 0 additions & 120 deletions examples/structured_2d_dgsem/elixir_shallowwater_well_balanced.jl

This file was deleted.

60 changes: 0 additions & 60 deletions examples/t8code_2d_dgsem/elixir_shallowwater_source_terms.jl

This file was deleted.

Loading
Loading