matflow.param_classes.orientations.UnitCellAlignment#
- class matflow.param_classes.orientations.UnitCellAlignment(x=None, y=None, z=None)#
Bases:
ParameterValue
A description of the alignment of a unit cell.
- Parameters:
x (str | LatticeDirection) – The direction of the X component.
y (str | LatticeDirection) – The direction of the Y component.
z (str | LatticeDirection) – The direction of the Z component.
Methods
Write a list (from an element group) of parameter values to an HDF5 group.
Write this parameter value to an HDF5 group.
Generate a unit cell alignment from Damask's default convention for hexagonal symmetry.
Generate a unit cell alignment from MTEX's default convention for hexagonal symmetry.
Prepare this parameter value for serialisation as JSON.
Extract a parameter value from an HDF5 group.
Extract a parameter value from JSON data.
Serialise this parameter value as a dictionary.
Attributes
The direction of the X component.
The direction of the Y component.
The direction of the Z component.
- classmethod dump_element_group_to_HDF5_group(objs, group)#
Write a list (from an element group) of parameter values to an HDF5 group.
- Parameters:
objs (list[ParameterValue]) –
group (Group) –
- dump_to_HDF5_group(group)#
Write this parameter value to an HDF5 group.
- Parameters:
group (Group) –
- classmethod from_hex_convention_DAMASK()#
Generate a unit cell alignment from Damask’s default convention for hexagonal symmetry.
- Return type:
- classmethod from_hex_convention_MTEX()#
Generate a unit cell alignment from MTEX’s default convention for hexagonal symmetry.
Tested using this command in MTEX: crystalSymmetry(“hexagonal”).alignment
- Return type:
- prepare_JSON_dump()#
Prepare this parameter value for serialisation as JSON.
- classmethod save_from_HDF5_group(group, param_id, workflow)#
Extract a parameter value from an HDF5 group.
- classmethod save_from_JSON(data, param_id, workflow)#
Extract a parameter value from JSON data.
- x: LatticeDirection | None = None#
The direction of the X component.
- y: LatticeDirection | None = None#
The direction of the Y component.
- z: LatticeDirection | None = None#
The direction of the Z component.