Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
meshmode
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
meshmode
Commits
cd482a01
Commit
cd482a01
authored
9 years ago
by
Andreas Klöckner
Browse files
Options
Downloads
Patches
Plain Diff
Add vis option to box test
parent
240510e9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_meshmode.py
+16
-2
16 additions, 2 deletions
test/test_meshmode.py
with
16 additions
and
2 deletions
test/test_meshmode.py
+
16
−
2
View file @
cd482a01
...
...
@@ -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
():
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment