InputDoc

pydantic model atomate2.aims.schemas.task.InputDoc[source]

Summary of inputs for an FHI-aims calculation.

Parameters:
  • structure (Structure or Molecule) – The input pymatgen Structure or Molecule of the system

  • species_info (.SpeciesSummary) – Summary of the species defaults used for each atom kind

  • xc (str) – Exchange-correlation functional used if not the default

field structure: Structure | Molecule = None

The input structure object

field species_info: SpeciesSummary = None

Summary of the species defaults used for each atom kind

field xc: str = None

Exchange-correlation functional used if not the default

classmethod from_aims_calc_doc(calc_doc)[source]

Create calculation input summary from a calculation document.

Parameters:

calc_doc (.Calculation) – An FHI-aims calculation document.

Returns:

A summary of the input structure and parameters.

Return type:

.InputDoc