Skip to content
Snippets Groups Projects
Commit cd482a01 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add vis option to box test

parent 240510e9
No related branches found
No related tags found
No related merge requests found
......@@ -382,9 +382,23 @@ def test_rect_mesh(do_plot=False):
pt.show()
def test_box_mesh():
def test_box_mesh(ctx_getter, visualize=False):
from meshmode.mesh.generation import generate_box_mesh
generate_box_mesh(3*(np.linspace(0, 1, 5),))
mesh = generate_box_mesh(3*(np.linspace(0, 1, 5),))
if visualize:
from meshmode.discretization import Discretization
from meshmode.discretization.poly_element import \
PolynomialWarpAndBlendGroupFactory
cl_ctx = ctx_getter()
queue = cl.CommandQueue(cl_ctx)
discr = Discretization(cl_ctx, mesh,
PolynomialWarpAndBlendGroupFactory(1))
from meshmode.discretization.visualization import make_visualizer
vis = make_visualizer(queue, discr, 1)
vis.write_vtk_file("box.vtu", [])
def test_as_python():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment