postqe is a Python package for post-processing calculations from Quantum ESPRESSO, developed by the Quantum ESPRESSO Foundation. It provides functions to analyze and visualize results including charge density, potentials, electronic stru…
postqe is a Python package for post-processing calculations from Quantum ESPRESSO, developed by the Quantum ESPRESSO Foundation. It provides functions to analyze and visualize results including charge density, potentials, electronic structure, and equation of state fitting.
Reference papers are not yet linked for this code.
postqe is a Python package for post-processing calculations from Quantum ESPRESSO, developed by the Quantum ESPRESSO Foundation. It provides functions to analyze and visualize results including charge density, potentials, electronic structure, and equation of state fitting.
Scientific domain: Quantum ESPRESSO post-processing, electronic structure visualization Target user community: Quantum ESPRESSO users requiring Python-based analysis
postqe processes Quantum ESPRESSO output to analyze:
Input formats:
Output data types:
pip install postqe
from postqe import get_charge, plot_charge_1d
# Read charge density
charge = get_charge("charge-density.dat")
# Plot 1D section
plot_charge_1d(charge, [0,0,0], [1,0,0])
# EOS fitting
from postqe import fit_eos
volumes, energies = [...], [...]
params = fit_eos(volumes, energies, eos='birch-murnaghan')
Primary sources:
Confidence: VERIFIED - Official QEF tool
Verification status: ✅ VERIFIED