Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement curved output for geometry example #468

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
1 change: 1 addition & 0 deletions doc/author_fussbroich.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
I place my contributions to t8code under the FreeBSD license. Sandro Elsweijer ([email protected])
5 changes: 3 additions & 2 deletions example/geometry/t8_example_geometries.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -961,8 +961,9 @@ t8_analytic_geom (int level, t8_example_geom_type geom_type)
forest = forest_adapt;
}

/* Write to vtk */
t8_forest_write_vtk (forest, vtuname);
/* Write to vtk. We use the extended vtk function to export a curved vtk mesh.
* This is only viable if you link to vtk. */
t8_forest_write_vtk_ext (forest, vtuname, 1, 1, 1, 1, 0, 1, 0, 0, NULL);
/* Output */
t8_global_productionf ("Wrote forest to vtu files %s.*\n", vtuname);
if (geom_type == T8_GEOM_CIRCLE) {
Expand Down