Hey, I've calculated the band structure of SnO2 with the hybrid HSE06 functional and now I want to calculate the effective mass, but I'm not sure how to do it in VASP. Can anyone help me with this?
To calculate the effective mass in VASP after obtaining the band structure with the hybrid HSE06 functional, you'll need to extract the band structure data near the conduction band minimum (CBM) or valence band maximum (VBM) from the EIGENVAL or PROCAR files. Use a dense k-point mesh to ensure accuracy, then fit the band structure around the CBM or VBM to a parabolic function E(k)=ℏ2k22m∗E(k)=2m∗ℏ2k2. The effective mass m∗m∗ is derived from the curvature of this fit, specifically using the second derivative of energy with respect to the wavevector kk. You can perform this fitting and derivative calculation using Python libraries like numpy and scipy, or use specialized tools like sumo or Effmass for a more automated approach.