Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flexibility to nonconservative BCs #2200

Merged
merged 44 commits into from
Feb 7, 2025
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
e2e2c20
adding flexibility to noncons BCs
MarcoArtiano Dec 10, 2024
1e925fc
minor fix
MarcoArtiano Dec 10, 2024
31f1e0a
Dirichlet BC for noncons
MarcoArtiano Dec 10, 2024
eb1ccdd
formatting
MarcoArtiano Dec 10, 2024
e4bc181
Noncons Dirichlet BC
MarcoArtiano Dec 10, 2024
8c5d2fc
test_type.jl fix
MarcoArtiano Dec 10, 2024
c2b44ae
dg multi fix
MarcoArtiano Dec 10, 2024
b60eaf1
moving 0.5 factor internally
MarcoArtiano Jan 7, 2025
d7dce5e
Merge branch 'main' into noncons
MarcoArtiano Jan 8, 2025
840fa9e
Update src/solvers/dgsem_p4est/dg_2d.jl
MarcoArtiano Jan 8, 2025
2baa52a
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 8, 2025
cd2186b
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 8, 2025
7a326fe
Update src/equations/equations.jl
MarcoArtiano Jan 8, 2025
f9b19c3
Update examples/dgmulti_2d/elixir_mhd_reflective_wall.jl
MarcoArtiano Jan 8, 2025
c35cff9
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 8, 2025
26a756a
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 8, 2025
307197d
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 8, 2025
8a1a3d5
Update src/equations/equations.jl
MarcoArtiano Jan 8, 2025
5068717
Update src/equations/equations.jl
MarcoArtiano Jan 8, 2025
06b881e
Update src/equations/equations.jl
MarcoArtiano Jan 8, 2025
4d112a4
Update src/equations/shallow_water_1d.jl
MarcoArtiano Jan 8, 2025
ecaf306
Update src/equations/shallow_water_1d.jl
MarcoArtiano Jan 8, 2025
1bd0184
Update src/equations/shallow_water_1d.jl
MarcoArtiano Jan 8, 2025
51505aa
minor fixes
MarcoArtiano Jan 8, 2025
d26925e
fix test type stability
MarcoArtiano Jan 8, 2025
9b4e384
fix test type stability
MarcoArtiano Jan 9, 2025
8332bbe
Update src/equations/shallow_water_1d.jl
MarcoArtiano Jan 24, 2025
53d8a14
Update src/equations/shallow_water_2d.jl
MarcoArtiano Jan 24, 2025
a9e3823
Update src/basic_types.jl
MarcoArtiano Feb 3, 2025
f27b8cf
Update src/basic_types.jl
MarcoArtiano Feb 3, 2025
05bff32
Update src/solvers/dgsem_p4est/dg_2d.jl
MarcoArtiano Feb 3, 2025
7f4ff1a
Update src/solvers/dgsem_unstructured/dg_2d.jl
MarcoArtiano Feb 3, 2025
8e5af14
Update src/solvers/dgsem_unstructured/dg_2d.jl
MarcoArtiano Feb 3, 2025
bf24011
Update src/basic_types.jl
MarcoArtiano Feb 3, 2025
cf31fe9
Merge branch 'main' of github.com:MarcoArtiano/Trixi.jl into noncons
MarcoArtiano Feb 3, 2025
6f80ffa
Merge branch 'noncons' of github.com:MarcoArtiano/Trixi.jl into noncons
MarcoArtiano Feb 3, 2025
dfe1116
formatting
MarcoArtiano Feb 3, 2025
d24578e
Update src/basic_types.jl
MarcoArtiano Feb 4, 2025
8a29ddc
Merge branch 'main' into noncons
ranocha Feb 7, 2025
0e09a32
Update test/test_type.jl
MarcoArtiano Feb 7, 2025
fe7803b
Update test/test_type.jl
MarcoArtiano Feb 7, 2025
d3225fc
Update src/equations/equations.jl
MarcoArtiano Feb 7, 2025
b538a1c
Update src/equations/equations.jl
MarcoArtiano Feb 7, 2025
c85aba7
add docs
MarcoArtiano Feb 7, 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
Prev Previous commit
Next Next commit
Update src/equations/shallow_water_2d.jl
Co-authored-by: Daniel Doehring <doehringd2@gmail.com>
  • Loading branch information
MarcoArtiano and DanielDoehring authored Jan 8, 2025
commit c35cff975142477d49bcbf5e8958924fbdea8b64
2 changes: 1 addition & 1 deletion src/equations/shallow_water_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ Should be used together with [`TreeMesh`](@ref).
equations)
end

return flux, noncons
return flux, noncons_flux
end

# Calculate 1D flux for a single point
Expand Down