We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm just now realizing there isn't exactly support for structured grids (points based grids) in OMF.
For example, take discretize's CurvilinearMesh class and preview a 3D rendering of it here
discretize
CurvilinearMesh
import discretize import numpy as np import pyvista as pv sz = [16, 16, 16] curv = discretize.CurvilinearMesh(discretize.utils.exampleLrmGrid(sz, 'rotate')) vec = np.arange(curv.nC) data = {'a': vec, 'b': vec + 1} curv.to_vtk(data).slice_orthogonal().plot(show_edges=True)
@fwkoch: How would one go about serializing this type of structured grid to the OMF format? Are there plans for node-based grids in v2.0?
Relevant to simpeg/discretize#174
The text was updated successfully, but these errors were encountered:
Also, the equivalent VTK data structure I have in mind id vtkStructuredGrid (pyvista.StructuredGrid)
vtkStructuredGrid
pyvista.StructuredGrid
Sorry, something went wrong.
No branches or pull requests
I'm just now realizing there isn't exactly support for structured grids (points based grids) in OMF.
For example, take
discretize
'sCurvilinearMesh
class and preview a 3D rendering of it here@fwkoch: How would one go about serializing this type of structured grid to the OMF format? Are there plans for node-based grids in v2.0?
Relevant to simpeg/discretize#174
The text was updated successfully, but these errors were encountered: