CHGNetRelaxMaker

class atomate2.forcefields.jobs.CHGNetRelaxMaker(name='MLFF.CHGNet relax', force_field_name='MLFF.CHGNet', relax_cell=True, fix_symmetry=False, symprec=0.01, steps=500, relax_kwargs=<factory>, optimizer_kwargs=<factory>, calculator_kwargs=<factory>, task_document_kwargs=<factory>)[source]

Bases: ForceFieldRelaxMaker

Maker to perform a relaxation using the CHGNet ML force field.

Parameters:
  • force_field_name (str) – The name of the force field.

  • relax_cell (bool = True) – Whether to allow the cell shape/volume to change during relaxation.

  • fix_symmetry (bool = False) – Whether to fix the symmetry during relaxation. Refines the symmetry of the initial structure.

  • symprec (float = 1e-2) – Tolerance for symmetry finding in case of fix_symmetry.

  • steps (int) – Maximum number of ionic steps allowed during relaxation.

  • relax_kwargs (dict) – Keyword arguments that will get passed to Relaxer.relax.

  • optimizer_kwargs (dict) – Keyword arguments that will get passed to Relaxer().

  • calculator_kwargs (dict) – Keyword arguments that will get passed to the ASE calculator.

  • task_document_kwargs (dict) – Additional keyword args passed to ForceFieldTaskDocument().

  • name (str)