-
-
Notifications
You must be signed in to change notification settings - Fork 414
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
Write vtk file directly from vtk/pyvista object #640
Comments
You can build a meshio mesh from the point coordinates and the cell connectivity, e.g.,
It seems that the point coordinates are in |
will this work for cell type 41 |
That's a VTK_CONVEX_POINT_SET, right?
…On Wed, Jan 22, 2020, 5:50 PM awa5114 ***@***.***> wrote:
will this work for cell type 41
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#640?email_source=notifications&email_token=AABMK7H3RDNDCU7GLGVPWQ3Q7B2N7A5CNFSM4KKG5RI2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEJUJMAI#issuecomment-577279489>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABMK7HR5ZKBGOSGAXA3C6LQ7B2N7ANCNFSM4KKG5RIQ>
.
|
correct |
No, there is no support for this in meshio. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am trying to figure out why a mesh generated using
fipy
will not plot usingpyvista
. To do this I would like to write it out into a vtk ASCII file, inspect the file and see whether it renders in Paraview. I could not however find an efficient way of gettingmeshio
to write out the vtk file. Here 's some code which can replicate the mesh:I tried implementing
pyvistas
save_meshio
method but got aKeyError
(pyvista/pyvista-support#108). Is there a more direct way using meshio to write out the file? Perhaps without usingpyvista
alltogether?The text was updated successfully, but these errors were encountered: