This module contains the displacement result class.
- class ansys.dpf.post.displacement.Displacement(**kwargs)#
Defines the displacement object, which is a vector object.
- has_complex_frequencies()#
Check if the result contains complex frequencies.
- Returns:
True
if the result contains complex frequencies,False
otherwise.- Return type:
- property norm#
Result data for the norm of the vector.
- property vector#
Result data for the vector values.
- property x#
Result data for the X component of the vector.
- property y#
Result data for the Y component of the vector.
- property z#
Result data for the Z component of the vector.
- class ansys.dpf.post.displacement.ComplexDisplacement(**kwargs)#
Defines the complex displacement object, which is a vector object.
- has_complex_frequencies()#
Check if the result contains complex frequencies.
- Returns:
True
if the result contains complex frequencies,False
otherwise.- Return type:
- property norm#
Result data for the norm of the vector.
- property norm_amplitude#
Result data for the amplitude of the norm of the vector.
- property vector#
Result data for the vector values.
- property vector_amplitude#
Result data for the vector amplitude values.
- property x#
Result data for the X component of the vector.
- property x_amplitude#
Result data for the X component amplitude of the vector.
- property y#
Result data for the Y component of the vector.
- property y_amplitude#
Result data for the Y component amplitude of the vector.
- property z#
Result data for the Z component of the vector.
- property z_amplitude#
Result data for the Z component amplitude of the vector.