dicstrainresults.py

class StrainResults(window_x, window_y, def_grad, eps, filenames)[source]

Bases: object

Data container for Strain analysis results.

This dataclass stores the strain window coordinates, deformation gradient and strain values.

Variables:
  • window_x (np.ndarray) – The x-coordinates of the strain window centre.

  • window_y (np.ndarray) – The y-coordinates of the strain window centre.

  • def_grad (np.ndarray) – The 2D deformation gradient.

  • eps (np.ndarray) – The 2D strain tensor.

  • filenames (list[str]) – name of Strain result files that have been found

window_x
window_y
def_grad
eps
filenames
__init__(window_x, window_y, def_grad, eps, filenames)