Visualize model#

This guide uses a model of a race car’s front wing.

>>> import tempfile
>>> import pathlib
>>> import ansys.acp.core as pyacp
>>> from ansys.acp.core import example_helpers
>>> acp = pyacp.launch_acp()
>>> tempdir = tempfile.TemporaryDirectory()
>>> input_file = example_helpers.get_example_file(
...     example_helpers.ExampleKeys.RACE_CAR_NOSE_ACPH5, pathlib.Path(tempdir.name)
... )
>>> path = acp.upload_file(input_file)
>>> model = acp.import_model(path=path)
>>> input_file_geometry = example_helpers.get_example_file(
...     example_helpers.ExampleKeys.RACE_CAR_NOSE_STEP, pathlib.Path(tempdir.name)
... )
>>> path_geometry = acp.upload_file(input_file_geometry)
>>> model.create_cad_geometry(name="nose_geometry", external_path=path_geometry)
>>> model.update()

Show the mesh#

Access the mesh data using the Model.mesh attribute. This attribute, an instance of the MeshData class, can be converted to a PyVista mesh using the MeshData.to_pyvista() method.

>>> model.mesh.to_pyvista().plot()
../../_images/visualize_model-2_00_00.png

Showing the directions#

Show the directions (such as normals, fiber directions, and orientations) of the model by using the get_directions_plotter() helper function. This function takes the model, the components to visualize, and some optional parameters.

The following example shows the orientation and fiber direction of a modeling ply.

>>> modeling_ply = model.modeling_groups['nose'].modeling_plies['mp.nose.4']
>>> elemental_data = modeling_ply.elemental_data
>>> directions_plotter = pyacp.get_directions_plotter(
...     model=model,
...     components=[
...         elemental_data.orientation,
...         elemental_data.fiber_direction
...     ],
...     length_factor=10.,
...     culling_factor=10,
... )
>>> directions_plotter.show()
../../_images/visualize_model-3_00_00.png

The color scheme used in this plot for the various components matches the ACP GUI.

Showing the mesh data#

Access the mesh data related to a specific ACP object using the elemental_data and nodal_data attributes. These attributes represent either scalar or vector data.

Scalar data#

You can convert scalar data to a PyVista mesh using the get_pyvista_mesh method. This method requires the base model mesh.

For example, you can plot the total thickness of the model using this code:

>>> thickness_data = model.elemental_data.thickness
>>> pyvista_mesh = thickness_data.get_pyvista_mesh(mesh=model.mesh)
>>> pyvista_mesh.plot()
../../_images/visualize_model-4_00_00.png

Vector data#

Visualize vector data using the get_directions_plotter() function shown in the preceding section Showing the directions. If you need more fine-grained control over the visualization, you can use the method shown in this section instead.

Vector data can be converted to PyVista glyphs using the get_pyvista_glyphs method. This method requires the base model mesh.

You can also choose a scaling factor to change the size of the vector glyphs and a culling factor to reduce the number of glyphs plotted.

>>> production_ply = model.modeling_groups['nose'].modeling_plies['mp.nose.6'].production_plies['ProductionPly.20']
>>> ply_offset = production_ply.nodal_data.ply_offset
>>> ply_offset.get_pyvista_glyphs(mesh=model.mesh, scaling_factor=6., culling_factor=5).plot()
../../_images/visualize_model-5_00_00.png

The base mesh is not shown when plotting vector data using PyVista glyphs. To visualize the mesh, you can combine the mesh and glyphs together using a PyVista plotter.

>>> import pyvista
>>> plotter = pyvista.Plotter()
>>> _ = plotter.add_mesh(model.mesh.to_pyvista(), color="white", opacity=0.5)
>>> _ = plotter.add_mesh(
...     ply_offset.get_pyvista_glyphs(mesh=model.mesh, scaling_factor=6., culling_factor=5),
...     color="blue"
... )
>>> plotter.show()
../../_images/visualize_model-6_00_00.png

Showing geometries#

You can view CAD geometries using their visualization_mesh attribute. This attribute contains a tessellated (triangular) mesh that represents the geometry.

For plotting, the tessellated mesh has a .to_pyvista method that returns a PyVista PolyData object. To see its triangular nature, plot the mesh with the show_edges option set to True.

>>> cad_geometry = model.cad_geometries['nose_geometry']
>>> tessellated_mesh = cad_geometry.visualization_mesh
>>> tessellated_mesh.to_pyvista().plot(show_edges=True)
../../_images/visualize_model-7_00_00.png