We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Objective is to define functions that extract useful information from completed jobs.
def extract_FEFF(path: str) -> dict
where the output dictionary can have keys like "spectra", "corehole energy", etc.
For FEFF it's really easy. Something like this:
def extract_FEFF(path): # NOT QUITE THIS SIMPLE!!! return {"spectra": np.loadtxt(path / "xmu.dat"), "fermi_level": ...}
As an example of extracting VASP spectra:
grep "IMAGINARY DIELECTRIC FUNCTION" OUTCAR -A 40002 > mu.txt
We want to do one of these for each of the codes:
We'll put these in lightshow/postprocess/extract.py (directory should already exist).
lightshow/postprocess/extract.py
The text was updated successfully, but these errors were encountered:
chuntian236
No branches or pull requests
Objective is to define functions that extract useful information from completed jobs.
where the output dictionary can have keys like "spectra", "corehole energy", etc.
For FEFF it's really easy. Something like this:
As an example of extracting VASP spectra:
We want to do one of these for each of the codes:
We'll put these in
lightshow/postprocess/extract.py
(directory should already exist).The text was updated successfully, but these errors were encountered: