Pyvista 3D Field Lines#
Pyvista offers field-line computation and visualization in 3D. In addition to the field computation, Magpylib offers magnet visualization that seamlessly integrates into a Pyvista plotting scene.
import magpylib as magpy
import pyvista as pv
# Create a magnet with Magpylib
magnet = magpy.magnet.Cylinder(polarization=(0, 0, 1), dimension=(0.010, 0.004))
# Create a 3D grid with Pyvista
grid = pv.ImageData(
dimensions=(41, 41, 41),
spacing=(0.001, 0.001, 0.001),
origin=(-0.02, -0.02, -0.02),
)
# Compute B-field and add as data to grid
grid["B"] = magnet.getB(grid.points) * 1000 # T -> mT
# Compute the field lines
seed = pv.Disc(inner=0.001, outer=0.003, r_res=1, c_res=9)
strl = grid.streamlines_from_source(
seed,
vectors="B",
max_step_length=0.1,
max_time=.02,
integration_direction="both",
)
# Create a Pyvista plotting scene
pl = pv.Plotter()
# Add magnet to scene - streamlines units in (m)
magpy.show(magnet, canvas=pl, units_length="m", backend="pyvista")
# Prepare legend parameters
legend_args = {
"title": "B (mT)",
"title_font_size": 20,
"color": "black",
"position_y": 0.25,
"vertical": True,
}
# Add streamlines and legend to scene
pl.add_mesh(
strl.tube(radius=0.0002),
cmap="bwr",
scalar_bar_args=legend_args,
)
# Prepare and show scene
pl.camera.position = (0.03, 0.03, 0.03)
pl.show()
/tmp/ipykernel_1861/1948243315.py:19: PyVistaDeprecationWarning: ``max_time`` parameter is deprecated. It will be removed in v0.48
strl = grid.streamlines_from_source(
2026-02-10 09:39:33.597 ( 0.513s) [ 75DFC6832C40]vtkXOpenGLRenderWindow.:1458 WARN| bad X server connection. DISPLAY=
/tmp/ipykernel_1861/1948243315.py:51: UserWarning: Failed to use notebook backend:
No module named 'trame'
Falling back to a static output.
pl.show()