RelaxDynamic
Calculation class
- class RelaxDynamic(model: str | Path | IOBase | DataModelDict | None = None, name: str | None = None, database=None, params: str | Path | IOBase | dict = None, **kwargs: any)
Bases:
Calculation
Class for managing dynamic relaxations
- calc_inputs() dict
Builds calculation inputs from the class’s attributes
- load_model(model: str | DataModelDict, name: str | None = None)
Loads record contents from a given model.
- load_parameters(params: dict | str | IOBase, key: str | None = None)
Reads in and sets calculation parameters.
- master_prepare_inputs(branch: str = 'main', **kwargs: any) dict
Utility method that build input parameters for prepare according to the workflows used by the NIST Interatomic Potentials Repository. In other words, transforms inputs from master_prepare into inputs for prepare.
- Parameters:
branch (str, optional) – Indicates the workflow branch to prepare calculations for. Default value is ‘main’.
**kwargs (any) – Any parameter modifications to make to the standard workflow prepare scripts.
- Returns:
params – The full set of prepare parameters based on the workflow branch
- Return type:
- metadata() dict
Generates a dict of simple metadata values associated with the record. Useful for quickly comparing records and for building pandas.DataFrames for multiple records of the same style.
- property multikeys: list
Calculation key sets that can have multiple values during prepare.
- Type:
- process_results(results_dict: dict)
Processes calculation results and saves them to the object’s results attributes.
- Parameters:
results_dict (dict) – The dictionary returned by the calc() method.
- set_values(name: str | None = None, **kwargs: any)
Set calculation values directly. Any terms not given will be set or reset to the calculation’s default values.
- Parameters:
name (str, optional) – The name to assign to the calculation. By default, this is set as the calculation’s key.
pressure_xx (float, optional) – The target Pxx pressure component for the relaxation.
pressure_yy (float, optional) – The target Pyy pressure component for the relaxation.
pressure_zz (float, optional) – The target Pzz pressure component for the relaxation.
pressure_xy (float, optional) – The target Pxy pressure component for the relaxation.
pressure_xz (float, optional) – The target Pxz pressure component for the relaxation.
pressure_yz (float, optional) – The target Pyz pressure component for the relaxation.
temperature (float, optional) – The target temperature for the relaxation.
integrator (str, optional) – The integration scheme to use.
thermosteps (int, optional) – Indicates how often the thermo data is output.
dumpsteps (int, optional) – Indicates how often the atomic configuration is output to a LAMMPS dump file.
restartsteps (int, optional) – Indicates how often the atomic configuration is output to a LAMMPS restart file.
runsteps (int, optional) – The total number of integration steps.
equilsteps (int, optional) – The number of integration steps ignored to allow the system to get closer to equilibrium.
randomseed (int, optional) – A random number generator seed to use for constructing the initial atomic velocities.
**kwargs (any, optional) – Any keyword parameters supported by the set_values() methods of the parent Calculation class and the subset classes.