download_pump_bracket#
- download_pump_bracket(load: bool = True) UnstructuredGrid | str[source]#
Download the pump bracket example dataset.
Data generated from public SimScale examples at SimScale Project Library - Turbo.
Licensing for this dataset is granted freely and without restriction to reproduce, distribute, and publish according to the SimScale Terms and Conditions.
Examples#
Download Python source code | Download Jupyter notebook
Load the dataset.
>>> import pyvista as pv
>>> from pyvista import examples
>>> dataset = examples.download_pump_bracket()
>>> dataset
UnstructuredGrid (...)
N Cells: 124806
N Points: 250487
X Bounds: -5.000e-01, 5.000e-01
Y Bounds: -4.000e-01, 0.000e+00
Z Bounds: -2.500e-02, 2.500e-02
N Arrays: 10
Plot the displacement of the 4th mode shape as scalars.
>>> cpos = pv.CameraPosition(
... position=(0.744, -0.502, -0.830),
... focal_point=(0.0520, -0.160, 0.0743),
... viewup=(-0.180, -0.958, 0.224),
... )
>>> dataset.plot(
... scalars='disp_3',
... cpos=cpos,
... show_scalar_bar=False,
... ambient=0.2,
... anti_aliasing='fxaa',
... )
See also
- Pump Bracket Dataset
See this dataset in the Dataset Gallery for more info.
- Visualize Modal Analysis of a Pump Bracket
Full example using this dataset.