Skip to content
Merged
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
3 changes: 3 additions & 0 deletions pyro/burgers/problems/converge.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""Setup a smooth velocity field (each component is an exponential). This can
be used to test convergence of the solver."""

import numpy

from pyro.util import msg
Expand Down
3 changes: 3 additions & 0 deletions pyro/burgers/problems/test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
"""Create a shock moving diagonally (from lower-left to upper-right)
through the domain."""

from pyro.util import msg

DEFAULT_INPUTS = "inputs.test"
Expand Down
2 changes: 2 additions & 0 deletions pyro/burgers/problems/tophat.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Initialize a circular "tophat" region that will drive a shock."""

from pyro.util import msg

DEFAULT_INPUTS = "inputs.tophat"
Expand Down