Peano
smooth-convergence Namespace Reference

Variables

string initial_conditions
 
string boundary_conditions
 
 parser
 
 min_depth
 
 end_time
 
 time_step_size
 
 degrees_of_freedom
 
 args = parser.parse_args()
 
list size = [0.2, 0.2, 0.2]
 
float max_h = 1.1 * min(size) / (3.0**args.min_depth)
 
float min_h = max_h * 3.0 ** (-args.amr_levels)
 
 riemann_solver
 
 flux
 
 max_eigenvalue
 
 limiter
 
 project
 
float time_in_between_plots = 0.0
 
 dimensions
 
 offset
 
 min_end_time
 
 max_end_time
 
 first_plot_time_stamp
 
 periodic_BC
 
 mode
 
 make
 
 True
 
 make_clean_first
 
 throw_away_data_after_build
 

Variable Documentation

◆ args

smooth-convergence.args = parser.parse_args()

Definition at line 42 of file smooth-convergence.py.

◆ boundary_conditions

smooth-convergence.boundary_conditions
Initial value:
1 = """
2  // Outflow boundary conditions
3  Qoutside[Shortcuts::rho] = Qinside[Shortcuts::rho];
4  Qoutside[Shortcuts::rhoU + 0] = Qinside[Shortcuts::rhoU + 0];
5  Qoutside[Shortcuts::rhoU + 1] = Qinside[Shortcuts::rhoU + 1];
6 #if DIMENSIONS == 3
7  Qoutside[Shortcuts::rhoU + 2] = Qinside[Shortcuts::rhoU + 2];
8 #endif
9  Qoutside[Shortcuts::rhoE] = Qinside[Shortcuts::rhoE];
10 """

Definition at line 22 of file smooth-convergence.py.

◆ degrees_of_freedom

smooth-convergence.degrees_of_freedom

Definition at line 40 of file smooth-convergence.py.

◆ dimensions

smooth-convergence.dimensions

Definition at line 83 of file smooth-convergence.py.

◆ end_time

smooth-convergence.end_time

Definition at line 38 of file smooth-convergence.py.

◆ first_plot_time_stamp

smooth-convergence.first_plot_time_stamp

Definition at line 88 of file smooth-convergence.py.

◆ flux

smooth-convergence.flux

Definition at line 61 of file smooth-convergence.py.

◆ initial_conditions

smooth-convergence.initial_conditions
Initial value:
1 = """
2  Q[Shortcuts::rho] = 1.0 + 0.2 * std::cos(2.0 * tarch::la::PI * x[0]);
3  Q[Shortcuts::rhoU + 0] = 1.0;
4  Q[Shortcuts::rhoU + 1] = 0.0;
5 #if DIMENSIONS == 3
6  Q[Shortcuts::rhoU + 2] = 0.0;
7 #endif
8  Q[Shortcuts::rhoE] = PRESSURE / (GAMMA - 1) + 0.5 / Q[Shortcuts::rho] * (Q[Shortcuts::rhoU] * Q[Shortcuts::rhoU]);
9 """

Definition at line 12 of file smooth-convergence.py.

◆ limiter

smooth-convergence.limiter

Definition at line 63 of file smooth-convergence.py.

◆ make

smooth-convergence.make

Definition at line 108 of file smooth-convergence.py.

◆ make_clean_first

smooth-convergence.make_clean_first

Definition at line 108 of file smooth-convergence.py.

◆ max_eigenvalue

smooth-convergence.max_eigenvalue

Definition at line 62 of file smooth-convergence.py.

◆ max_end_time

smooth-convergence.max_end_time

Definition at line 87 of file smooth-convergence.py.

◆ max_h

float smooth-convergence.max_h = 1.1 * min(size) / (3.0**args.min_depth)

Definition at line 45 of file smooth-convergence.py.

◆ min_depth

smooth-convergence.min_depth

Definition at line 37 of file smooth-convergence.py.

◆ min_end_time

smooth-convergence.min_end_time

Definition at line 86 of file smooth-convergence.py.

◆ min_h

float smooth-convergence.min_h = max_h * 3.0 ** (-args.amr_levels)

Definition at line 46 of file smooth-convergence.py.

◆ mode

smooth-convergence.mode

Definition at line 101 of file smooth-convergence.py.

◆ offset

smooth-convergence.offset

Definition at line 85 of file smooth-convergence.py.

◆ parser

smooth-convergence.parser
Initial value:
1 = exahype2.ArgumentParser(
2  "ExaHyPE 2 Euler Smooth Convergence Argument Parser"
3 )

Definition at line 33 of file smooth-convergence.py.

◆ periodic_BC

smooth-convergence.periodic_BC

Definition at line 90 of file smooth-convergence.py.

◆ project

smooth-convergence.project
Initial value:
1 = exahype2.Project(
2  namespace=["applications", "exahype2", "euler"],
3  project_name="SmoothConvergence",
4  directory=".",
5  executable="Euler",
6 )

Definition at line 68 of file smooth-convergence.py.

◆ riemann_solver

smooth-convergence.riemann_solver
Initial value:
1 = exahype2.solvers.fv.musclhancock.GlobalFixedTimeStep(
2  name="MUSCLHancockSolver",
3  patch_size=args.degrees_of_freedom,
4  unknowns={"rho": 1, "rhoU": args.dimensions, "rhoE": 1},
5  auxiliary_variables=0,
6  min_volume_h=min_h,
7  max_volume_h=max_h,
8  normalised_time_step_size=args.time_step_size,
9 )

Definition at line 48 of file smooth-convergence.py.

◆ size

smooth-convergence.size = [0.2, 0.2, 0.2]

Definition at line 44 of file smooth-convergence.py.

◆ throw_away_data_after_build

smooth-convergence.throw_away_data_after_build

Definition at line 108 of file smooth-convergence.py.

◆ time_in_between_plots

smooth-convergence.time_in_between_plots = 0.0

Definition at line 77 of file smooth-convergence.py.

◆ time_step_size

smooth-convergence.time_step_size

Definition at line 39 of file smooth-convergence.py.

◆ True

smooth-convergence.True

Definition at line 108 of file smooth-convergence.py.