SGrid
Repository source: SGrid
Description¶
Creating a structured grid dataset of a semicylinder. Vectors are created whose magnitude is proportional to radius and oriented in tangential direction.
Info
See Figure 5-19 in Chapter 5 the VTK Textbook.
Question
If you have a question about this example, please use the VTK Discourse Forum
Code¶
SGrid.py
#!/usr/bin/env python3
"""
This example shows how to manually create a structured grid.
The basic idea is to instantiate vtkStructuredGrid, set its dimensions,
and then assign points defining the grid coordinate. The number of
points must equal the number of points implicit in the dimensions
(i.e., dimX*dimY*dimZ). Also, data attributes (either point or cell)
can be added to the dataset.
"""
import math
# noinspection PyUnresolvedReferences
import vtkmodules.vtkInteractionStyle
# noinspection PyUnresolvedReferences
import vtkmodules.vtkRenderingOpenGL2
from vtkmodules.vtkCommonColor import vtkNamedColors
from vtkmodules.vtkCommonCore import (
vtkDoubleArray,
vtkMath,
vtkPoints
)
from vtkmodules.vtkCommonDataModel import vtkStructuredGrid
from vtkmodules.vtkFiltersCore import vtkHedgeHog
from vtkmodules.vtkRenderingCore import (
vtkActor,
vtkPolyDataMapper,
vtkRenderWindow,
vtkRenderWindowInteractor,
vtkRenderer
)
def main():
colors = vtkNamedColors()
r_min = 0.5
r_max = 1.0
dims = (13, 11, 11)
# We also create the points and vectors. The points
# form a hemi-cylinder of data.
vectors = vtkDoubleArray()
vectors.SetNumberOfComponents(3)
vectors.SetNumberOfTuples(dims[0] * dims[1] * dims[2])
points = vtkPoints()
points.Allocate(dims[0] * dims[1] * dims[2])
delta_z = 2.0 / (dims[2] - 1)
delta_rad = (r_max - r_min) / (dims[1] - 1)
x = [0.0] * 3
v = [0.0] * 3
for k in range(0, dims[2]):
x[2] = -1.0 + k * delta_z
k_offset = k * dims[0] * dims[1]
for j in range(0, dims[1]):
radius = r_min + j * delta_rad
j_offset = j * dims[0]
for i in range(0, dims[0]):
theta = i * vtkMath.RadiansFromDegrees(15.0)
x[0] = radius * math.cos(theta)
x[1] = radius * math.sin(theta)
v[0] = -x[1]
v[1] = x[0]
offset = i + j_offset + k_offset
points.InsertPoint(offset, x)
vectors.InsertTuple(offset, v)
# Create the structured grid.
sgrid = vtkStructuredGrid(dimensions=dims, points=points)
sgrid.point_data.SetVectors(vectors)
# We create a simple pipeline to display the data.
hedgehog = vtkHedgeHog(scale_factor=0.1)
sgrid_mapper = vtkPolyDataMapper()
sgrid >> hedgehog >> sgrid_mapper
sgrid_actor = vtkActor(mapper=sgrid_mapper)
sgrid_actor.property.color = colors.GetColor3d('Gold')
# Create the usual rendering stuff.
renderer = vtkRenderer(background=colors.GetColor3d('MidnightBlue'))
ren_win = vtkRenderWindow(size=(640, 480), window_name='SGrid')
ren_win.AddRenderer(renderer)
iren = vtkRenderWindowInteractor()
iren.render_window = ren_win
renderer.AddActor(sgrid_actor)
renderer.ResetCamera()
renderer.active_camera.Elevation(60.0)
renderer.active_camera.Azimuth(30.0)
renderer.active_camera.Dolly(1.0)
# Interact with the data.
ren_win.Render()
iren.Start()
if __name__ == '__main__':
main()