matflow.param_classes.seeds.MicrostructureSeeds#
- class matflow.param_classes.seeds.MicrostructureSeeds(position, box_size, phase_label, orientations=None, random_seed=None)#
Bases:
ParameterValue
The seeds for crystalline microstructure.
Methods
Write a list (from an element group) of parameter values to an HDF5 group.
Write this parameter value to an HDF5 group.
For custom initialisation via YAML or JSON.
Load a microstructure definition from a text file.
Generate a random microstructure.
Prepare this parameter value for serialisation as JSON.
Extract a parameter value from an HDF5 group.
Extract a parameter value from JSON data.
Plot the microstructure.
Serialise this parameter value as a dictionary.
Attributes
The number of seeds.
Orientation data.
Seed for the random number generator, if used.
The positions of the seeds.
The size of box containing the seeds.
Label for the phase.
- Parameters:
- box_size: NDArray#
The size of box containing the seeds.
- 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_JSON_like(position, orientations=None, **kwargs)#
For custom initialisation via YAML or JSON.
- classmethod from_file(path, box_size, phase_label, *, number=None, start_index=0, delimiter=' ')#
Load a microstructure definition from a text file.
- Parameters:
path (str) – Path to the file to load from.
box_size (ndarray[Any, dtype[_ScalarType_co]]) – The size of box containing the microstructure.
phase_label (str) – Label for the microstructure.
number (int | None) – Number of seeds to read from the file.
start_index (int) – The line number of the file that the seeds start at. Allows skipping headers.
delimiter (str) – The delimiter separating values in the file. Defaults to space, but commas and tabs are also sensible (and correspond to CSV and TSV files respectively).
- Return type:
- classmethod from_random(num_seeds, box_size, phase_label, *, random_seed=None, orientations=None)#
Generate a random microstructure.
- Parameters:
num_seeds (int) – The number of seeds for the microstructure.
box_size (ndarray[Any, dtype[_ScalarType_co]]) – The size of box containing the microstructure.
phase_label (str) – Label for the microstructure.
random_seed (int | None) – Seed for the random number generator.
orientations (Orientations | dict[str, Any] | None) – Orientation information. If omitted, random.
- Return type:
- orientations: Orientations | None = None#
Orientation data.
- position: NDArray#
The positions of the seeds.
- 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.
- show()#
Plot the microstructure.
Note
Requires matplotlib to be installed and configured.
- Return type:
None