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 1D version of GeoClaw solver #182

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions riemann/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
from . import shallow_roe_with_efix_1D
from . import shallow_bathymetry_fwave_1D
from . import shallow_roe_tracer_1D
from . import sw_aug_1D
from . import traffic_1D
from . import traffic_vc_1D
from . import traffic_vc_fwave_1D
Expand Down
1 change: 1 addition & 0 deletions riemann/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ riemann_1D = [
'shallow_roe_with_efix',
'shallow_bathymetry_fwave',
'shallow_roe_tracer',
'sw_aug',
]

riemann_2D = [
Expand Down
2 changes: 2 additions & 0 deletions riemann/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
'shallow_hlle_1D' : 2,
'shallow_bathymetry_fwave_1D' : 2,
'shallow_1D_py' : 2,
'sw_aug_1D' : 2,
'vc_advection_1D' : 1,
'layered_shallow_water_1D' : 4,
'acoustics_2D' : 3,
Expand Down Expand Up @@ -83,6 +84,7 @@
'shallow_hlle_1D' : 2,
'shallow_bathymetry_fwave_1D' : 2,
'shallow_1D_py' : 2,
'sw_aug_1D' : 2,
'vc_advection_1D' : 1,
'layered_shallow_water_1D' : 4,
'acoustics_2D' : 2,
Expand Down
Loading