File tree Expand file tree Collapse file tree
advection_nonuniform/problems Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ """Initialize a Gaussian profile (shifted so the minimum value is 1.0). This
2+ is smooth and the limiters should not kick in too much, so this can be used
3+ for testing convergence."""
4+
15import numpy
26
37from pyro .util import msg
Original file line number Diff line number Diff line change 1+ """A problem setup for the unit testing."""
2+
13DEFAULT_INPUTS = None
24
35PROBLEM_PARAMS = {}
Original file line number Diff line number Diff line change 1+ """Initialize a tophat profile---the value inside a small circular
2+ regions is set to 1.0 and is zero otherwise. This will exercise the
3+ limiters significantly.
4+
5+ """
6+
17from pyro .util import msg
28
39DEFAULT_INPUTS = "inputs.tophat"
Original file line number Diff line number Diff line change 1+ """A circular profile with a rectangular slot cut out of it. This is
2+ meant to be run with the velocity field that causes it to rotate about
3+ the center, to understand how well we preserve symmetry.
4+
5+ """
6+
17import numpy as np
28
39from pyro .util import msg
Original file line number Diff line number Diff line change 1+ """A test setup used for unit testing."""
2+
13DEFAULT_INPUTS = None
24
35PROBLEM_PARAMS = {}
You can’t perform that action at this time.
0 commit comments