Skip to content

Commit

Permalink
Merge pull request #181 from clawpack/set_fwave
Browse files Browse the repository at this point in the history
Add dictionary of fwave values to static.py.
  • Loading branch information
mandli authored Dec 5, 2024
2 parents 8d62870 + 965dee6 commit c29dcab
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions riemann/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,58 @@
'vc_acoustics_3D' : 2,
'euler_3D' : 3
}

fwave = {
'acoustics_1D' : False,
'acoustics_variable_1D' : False,
'advection_1D' : False,
'advection_color_1D' : False,
'advection_1D_py' : False,
'burgers_1D' : False,
'burgers_1D_py' : False,
'cubic_1D' : False,
'traffic_1D' : False,
'traffic_vc_1D' : False,
'traffic_vc_fwave_1D' : True,
'traffic_vc_tracer_1D' : False,
'euler_with_efix_1D' : False,
'euler_roe_1D' : False,
'euler_hll_1D' : False,
'euler_hllc_1D' : False,
'euler_hlle_1D' : False,
'mhd_roe_1D' : False,
'nonlinear_elasticity_fwave_1D' : True,
'nonlinear_elasticity_1D' : True,
'psystem_fwave_1D' : True,
'reactive_euler_with_efix_1D' : False,
'shallow_roe_with_efix_1D' : False,
'shallow_roe_tracer_1D' : False,
'shallow_roe_1D' : False,
'shallow_hll_1D' : False,
'shallow_hlle_1D' : False,
'shallow_bathymetry_fwave_1D' : True,
'shallow_1D_py' : None, # Includes both f-wave and non-f-wave solvers
'vc_advection_1D' : False,
'layered_shallow_water_1D' : True,
'acoustics_2D' : False,
'acoustics_mapped_2D' : False,
'advection_2D' : False,
'burgers_2D' : False,
'euler_mapgrid_2D' : False,
'euler_5wave_2D' : False,
'euler_4wave_2D' : False,
'euler_hlle_2D' : False,
'euler_hlle_with_walls_2D' : False,
'kpp_2D' : False,
'psystem_2D' : True,
'shallow_hlle_2D' : False,
'shallow_roe_with_efix_2D' : False,
'shallow_bathymetry_fwave_2D' : True,
'sw_aug_2D' : 3,
'shallow_sphere_2D' : False,
'vc_advection_2D' : False,
'vc_acoustics_2D' : False,
'vc_elasticity_2D' : False,
'vc_acoustics_3D' : False,
'euler_3D' : False
}

0 comments on commit c29dcab

Please sign in to comment.