Peano
Loading...
Searching...
No Matches
smooth-convergence Namespace Reference

Variables

str initial_conditions
 
str boundary_conditions
 
 parser = exahype2.ArgumentParser("ExaHyPE 2 - Finite Volumes Testing Script")
 
 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)
 
 fv_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 36 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 18 of file smooth-convergence.py.

◆ degrees_of_freedom

smooth-convergence.degrees_of_freedom

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

◆ dimensions

smooth-convergence.dimensions

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

◆ end_time

smooth-convergence.end_time

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

◆ first_plot_time_stamp

smooth-convergence.first_plot_time_stamp

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

◆ flux

smooth-convergence.flux

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

◆ fv_solver

smooth-convergence.fv_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 42 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 8 of file smooth-convergence.py.

◆ limiter

smooth-convergence.limiter

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

◆ make

smooth-convergence.make

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

◆ make_clean_first

smooth-convergence.make_clean_first

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

◆ max_eigenvalue

smooth-convergence.max_eigenvalue

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

◆ max_end_time

smooth-convergence.max_end_time

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

◆ max_h

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

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

◆ min_depth

smooth-convergence.min_depth

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

◆ min_end_time

smooth-convergence.min_end_time

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

◆ min_h

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

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

◆ mode

smooth-convergence.mode

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

◆ offset

smooth-convergence.offset

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

◆ parser

smooth-convergence.parser = exahype2.ArgumentParser("ExaHyPE 2 - Finite Volumes Testing Script")

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

◆ periodic_BC

smooth-convergence.periodic_BC

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

◆ project

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

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

◆ size

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

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

◆ throw_away_data_after_build

smooth-convergence.throw_away_data_after_build

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

◆ time_in_between_plots

smooth-convergence.time_in_between_plots = 0.0

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

◆ time_step_size

smooth-convergence.time_step_size

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

◆ True

smooth-convergence.True

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