Source code for pytaser.das_generator

"""
Created on Thu Aug  3 16:42:36 2023.

@author: lucasverga
"""

import warnings

import numpy as np
from pymatgen.io.vasp.inputs import UnknownPotcarWarning

from pytaser.internal_abs_generator import Internal_Abs
from pytaser.tas import Das

warnings.filterwarnings("ignore", category=RuntimeWarning)


[docs] class DASGenerator: """ Class to generate a DAS spectrum (decomposed and cumulative) from a bandstructure and dos object. Args: new_system: Internal_Abs object from internal_abs_generator for the new system reference_system: Internal_Abs object from internal_abs_generator for the reference system Attributes: new_system: Internal_Abs object from internal_abs_generator for the new system reference_system: Internal_Abs object from internal_abs_generator for the reference system """ def __init__( self, new_system, reference_system, ): """ Args: new_system: Internal_Abs object from internal_abs_generator for the new system reference_system: Internal_Abs object from internal_abs_generator for the reference system. """ self.new_system = new_system self.reference_system = reference_system
[docs] @classmethod def from_vasp_outputs( cls, vasprun_file_new_system, vasprun_file_ref, waveder_file_new_system=None, waveder_file_ref=None, ): """ Create a DASGenerator object from VASP output files. The user should provide the vasprun files for the new system and the reference system, followed by the waveder files for the new system and the reference system. Args: vasprun_file_new_system: The vasprun.xml file for the new system. vasprun_file_ref: The vasprun.xml file for the reference system. waveder_file_new_system: The WAVEDER file for the new system. waveder_file_ref: The WAVEDER file for the reference system. Returns: A DASGenerator object containing the Internal_Abs object for the new system and reference system. """ warnings.filterwarnings("ignore", category=UnknownPotcarWarning) warnings.filterwarnings("ignore", message="No POTCAR file with matching TITEL fields") new_system = Internal_Abs.internal_from_vasp(vasprun_file_new_system, waveder_file_new_system) reference_system = Internal_Abs.internal_from_vasp(vasprun_file_ref, waveder_file_ref) return cls(new_system, reference_system)
[docs] @classmethod def from_mpid( cls, mpid, mpid_ref, bg=None, bg_ref=None, api_key=None, mpr=None, mpr_ref=None, ): """ Import the desired bandstructure and dos objects from the legacy Materials Project database. Args: mpid: The Materials Project ID of the new system. mpid_ref: The Materials Project ID of the reference system. bg: The experimental bandgap (eV) of the new system. If None, the band gap of the MP calculation will be used. bg_ref: The experimental bandgap (eV) of the reference system. If None, the band gap of the MP calculation will be used. api_key: The user's Materials Project API key. mpr: An MPRester object for the new system if already generated by user. mpr_ref: An MPRester object for the reference system if already generated by user. Returns: A DASGenerator object containing the Internal_Abs object for the new system and reference system. """ new_system = Internal_Abs.internal_from_mpid(mpid, bg=None, api_key=None, mpr=None) reference_system = Internal_Abs.internal_from_mpid(mpid_ref, bg_ref, api_key=None, mpr_ref=None) return cls(new_system, reference_system)
[docs] def generate_das( self, temp, energy_min=0, energy_max=5, gaussian_width=0.1, cshift=None, step=0.01, new_sys_occs=None, ref_occs=None, processes=None, ): """Generates DAS spectra (new system - reference system) based on inputted occupancies, and a specified energy mesh. If the DASGenerator has not been generated from VASP outputs (and thus does not have a dfc attribute), then the output DAS is generated using the change in joint density of states (JDOS) from both systems, with no consideration of oscillator strengths. Otherwise, the output DAS is generated considering all contributions to the predicted DAS spectrum. Args: temp: Temperature (K) of material we wish to investigate (affects the FD distribution) energy_min: Minimum band transition energy to consider for energy mesh (eV) energy_max: Maximum band transition energy to consider for energy mesh (eV) gaussian_width: Width of gaussian curve cshift: Complex shift in the Kramers-Kronig transformation of the dielectric function (see https://www.vasp.at/wiki/index.php/CSHIFT). If not set, uses the value of CSHIFT from the underlying VASP WAVEDER calculation. (only relevant if the DASGenerator has been generated from VASP outputs) step: Interval between energy points in the energy mesh. new_sys_occs: Optional input parameter for occupancies of the new system, otherwise automatically calculated based on input temperature (temp) ref_occs: Optional input parameter for occupancies of the reference system, otherwise automatically calculated based on input temperature (temp) processes: Number of processes to use for multiprocessing. If not set, defaults to one less than the number of CPUs available. Returns: DAS class containing the following inputs; - das_total: overall deltaT DAS spectrum for new system - reference system. - jdos_new_sys_total: overall JDOS for the new system. - jdos_new_sys_if: JDOS for the new system across the energy mesh for a specific band transition i (initial) -> f (final) [dict] - jdos_ref_total: overall JDOS for the reference system. - jdos_ref_if: JDOS for the reference system across the energy mesh for a specific band transition i (initial) -> f (final) [dict] - energy_mesh_ev: Energy mesh of spectra in eV, with an interval of 'step'. - bandgap: Bandgap of the system, in eV, rounded to 2 decimal points - temp: Temperature of the system, in K - alpha_ref: Absorption coefficient of the reference system, in cm^-1 (only calculated if the DASGenerator has been generated from VASP outputs) - alpha_new_sys: Absorption coefficient of the new system, in cm^-1 (only calculated if the DASGenerator has been generated from VASP outputs - weighted_jdos_diff_if: JDOS difference (from reference to new system) across the energy mesh for a specific band transition i (initial) -> f (final), weighted by the oscillator strength of the transition [dict] - weighted_jdos_new_sys_if: JDOS of new system across the energy mesh for a specific band transition i (initial) -> f (final), weighted by the oscillator strength of the transition [dict] """ bandgap_ref = round(self.reference_system.bs.get_band_gap()["energy"], 2) bandgap_new_sys = round(self.new_system.bs.get_band_gap()["energy"], 2) energy_mesh_ev = np.arange(energy_min, energy_max, step) ( jdos_ref_total, jdos_ref_if, alpha_ref, weighted_jdos_ref_if, ) = Internal_Abs.generate_abs( self.reference_system, temp, energy_min, energy_max, gaussian_width, cshift, step, ref_occs, processes, ) ( jdos_new_sys_total, jdos_new_sys_if, alpha_new_sys, weighted_jdos_new_sys_if, ) = Internal_Abs.generate_abs( self.new_system, temp, energy_min, energy_max, gaussian_width, cshift, step, new_sys_occs, processes, ) das_total = jdos_new_sys_total - jdos_ref_total # need to interpolate alpha arrays onto JDOS energy mesh: if self.reference_system.dfc and self.new_system.dfc is not None: das_total = alpha_new_sys - alpha_ref return Das( das_total, jdos_new_sys_total, jdos_new_sys_if, jdos_ref_total, jdos_ref_if, energy_mesh_ev, bandgap_new_sys, bandgap_ref, temp, alpha_new_sys if self.new_system.dfc is not None else None, alpha_ref if self.reference_system.dfc is not None else None, weighted_jdos_new_sys_if if self.new_system.dfc is not None else None, weighted_jdos_ref_if if self.reference_system.dfc is not None else None, )