MPLegacyEosMaker¶
- class atomate2.vasp.flows.eos.MPLegacyEosMaker(name='MP Legacy GGA EOS Maker', initial_relax_maker=<factory>, eos_relax_maker=<factory>, static_maker=<factory>, linear_strain=(-0.05, 0.05), number_of_frames=6, postprocessor=<factory>, _store_transformation_information=False)[source]¶
Bases:
CommonEosMaker
Generate equation of state data with MP legacy PBE-GGA parameters.
First relax a structure using relax_maker. Then perform a series of deformations on the relaxed structure, and evaluate single-point energies with static_maker.
- Parameters:
name (str) – Name of the flows produced by this maker.
initial_relax_maker (.Maker | None) – Maker to relax the input structure, defaults to None (no initial relaxation).
eos_relax_maker (.Maker) – Maker to relax deformed structures for the EOS fit.
static_maker (.Maker | None) – Maker to generate statics after each relaxation, defaults to None.
strain (tuple[float]) – Percentage linear strain to apply as a deformation, default = -5% to 5%.
number_of_frames (int) – Number of strain calculations to do for EOS fit, default = 6.
postprocessor (.atomate2.common.jobs.EOSPostProcessor) – Optional postprocessing step, defaults to atomate2.common.jobs.PostProcessEosEnergy.
_store_transformation_information (.bool = False) – Whether to store the information about transformations. Unfortunately needed at present to handle issues with emmet and pydantic validation TODO: remove this when clash is fixed