Microstructure3DSummary#

class ansys.additive.core.microstructure_3d.Microstructure3DSummary(input: Microstructure3DInput, result: ansys.api.additive.v0.additive_domain_pb2.Microstructure3DResult, user_data_path: str)#

Provides the summary of a 3D microstructure simulation.

Overview#

input

Simulation input.

grain_3d_vtk

Path to the VTK file containing the 3D grain structure data.

xy_average_grain_size

Average grain size (µm) for the XY plane.

xz_average_grain_size

Average grain size (µm) for the XZ plane.

yz_average_grain_size

Average grain size (µm) for the YZ plane.

Import detail#

from ansys.additive.core.microstructure_3d import Microstructure3DSummary

Property detail#

property Microstructure3DSummary.input#

Simulation input.

For more information, see the Microstructure3DInput class.

property Microstructure3DSummary.grain_3d_vtk: str#

Path to the VTK file containing the 3D grain structure data.

The VTK file contains these scalar data sets” GrainNumber, Phi0_(deg), Phi1_(deg), Phi2_(deg), and Temperatures.

property Microstructure3DSummary.xy_average_grain_size: float#

Average grain size (µm) for the XY plane.

property Microstructure3DSummary.xz_average_grain_size: float#

Average grain size (µm) for the XZ plane.

property Microstructure3DSummary.yz_average_grain_size: float#

Average grain size (µm) for the YZ plane.

Method detail#

Microstructure3DSummary.__repr__()#