PMG_OBJ
- emmet.archival.vasp.PMG_OBJ = {'AECCAR0': <class 'pymatgen.io.vasp.outputs.Chgcar'>, 'AECCAR1': <class 'pymatgen.io.vasp.outputs.Chgcar'>, 'AECCAR2': <class 'pymatgen.io.vasp.outputs.Chgcar'>, 'CHGCAR': <class 'pymatgen.io.vasp.outputs.Chgcar'>, 'ELFCAR': <class 'pymatgen.io.vasp.outputs.Elfcar'>, 'INCAR': <class 'pymatgen.io.vasp.inputs.Incar'>, 'KPOINTS': <class 'pymatgen.io.vasp.inputs.Kpoints'>, 'KPOINTS_OPT': <class 'pymatgen.io.vasp.inputs.Kpoints'>, 'LOCPOT': <class 'pymatgen.io.vasp.outputs.Locpot'>, 'POSCAR': <class 'pymatgen.io.vasp.inputs.Poscar'>, 'POT': <class 'pymatgen.io.vasp.outputs.Chgcar'>, 'POTCAR': <class 'pymatgen.io.validation.common.PotcarSummaryStats'>}
dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s
(key, value) pairs
- dict(iterable) -> new dictionary initialized as if via:
d = {} for k, v in iterable:
d[k] = v
- dict(**kwargs) -> new dictionary initialized with the name=value pairs
in the keyword argument list. For example: dict(one=1, two=2)