htepc¶
Module to prepare QE input files
Functions
|
|
|
Rename elements in the original list with elements with different spins. |
|
Extract elements with their spin values from the given list. |
|
Function to insert keyword in input file :param input_file: :type input_file: (str) input file. |
|
Obtain k-point mesh from a structure file. |
|
Reorder the keys of a dictionary based on a new list of keywords and return the list of keys. |
|
Function to change QE input file from using smearing to 'tetrahedra' method, mainly for DOS calculation |
Classes
|
class to process QE input files :param filename: :type filename: (str) QE input file |
Class for connecting to Materials Project (MP) via MP API, extracting properties, and preparing input files for Quantum Espresso (QE) calculations. |
|
|
class to extract relax structure from QE output file and update input file :param filename: :type filename: (str) QE output file. |
- htepc.pos_to_kpt(structure_filename, kpoint_density)[source]¶
Obtain k-point mesh from a structure file.
Parameters:¶
- structure_filenamestr
Structure file (e.g., QE scf.in or VASP POSCAR).
- kpoint_densityfloat
K-point density.
Returns:¶
- kmeshlist
K-point mesh according to the k-point density.
- class htepc.MpConnect[source]¶
Class for connecting to Materials Project (MP) via MP API, extracting properties, and preparing input files for Quantum Espresso (QE) calculations.
Parameters:¶
- keystr, optional
MP API KEY. Use your own key. If not provided, it should be available in config.json or ../../config.json file.
Attributes:¶
- proplist
List of available properties.
- mpidstr
Materials ID.
- compstr
Compound name.
- datadict
Dictionary containing materials data.
- prefixstr
Prefix for the compound.
- ecutwfcfloat
Kinetic energy cutoff for wavefunction.
- ecutrhofloat
Kinetic energy cutoff for charge density.
- kptlist
K-point grid.
- structureStructure
Structure object.
- pseudo_dirstr
Path to pseudopotential files.
- outdirstr
Directory for output files.
- evenkpttuple
K-grid with an even number of points in all directions.
- kpshiftlist
K-point grid shifts.
- kptypestr
K-point grid type.
- calcstr
Type of calculation.
- smearfloat
Degauss value for smearing.
- smear_typestr
Type of smearing.
- etot_conv_thrfloat
Total energy convergence threshold.
- forc_conv_thrfloat
Force convergence threshold.
- conv_thrfloat
Convergence threshold.
- dict_elementdict
Dictionary containing kinetic energy cutoffs for different elements.
- comp_listlist
List of elements in the compound.
Example of using MpConnect class: >>> obj = MpConnect() # Initialize MpConnect object >>> obj.setting(‘mp-763’) # Set Materials ID to ‘mp-763’ >>> obj.getkpt() # Get k-points for the structure >>> obj.maxecut_sssp() # Calculate maximum recommended energy cutoff using SSSP >>> obj.setting_qeinput() # Set up Quantum Espresso input files based on the retrieved data
- setting(comp)[source]¶
Initialize the process with a Materials ID.
Parameters:¶
- compstr
Materials ID.
Returns:¶
- compstr
Materials ID.
Notes:¶
This function initializes the process with a Materials ID. It retrieves the data related to the given ID from the Materials Project (MP) database, sets up necessary parameters, and prepares the structure for further calculations.
- get_prop_list()[source]¶
Print the list of properties available when downloading the data.
Returns:¶
- prop_listdict_keys
A list of keys representing the available properties.
Notes:¶
This function retrieves the list of properties available for download from the Materials Project (MP) database for the current Materials ID (mpid). It returns a list of keys that represent the available properties that can be downloaded and accessed for analysis or further processing.
- download(filetype='cif')[source]¶
Download the structure file.
Parameters:¶
- filetypestr, optional
File format for downloading. Default is ‘cif’.
Notes:¶
This function downloads the structure file for the current Materials ID (mpid) from the Materials Project (MP) database. It saves the file in the specified format, with the default format being CIF (‘.cif’). Other supported formats may be specified as needed.
- property(name)[source]¶
Extract a particular property.
Parameters:¶
- namestr
The name of the property available from the list obtained from the get_prop_list() function.
Returns:¶
- value
The value of the specified property.
Notes:¶
This function extracts the value of a specific property identified by its name from the data retrieved for the current Materials ID (mpid). The property name should be one of the properties listed in the output of the get_prop_list() function.
- getkpt(primitive=True)[source]¶
Compute k-points based on k-point density. Parameters: ——————– primitive: logical
Use primitive standard structure
Returns:¶
- kptlist
The k-point grid.
- kptypestr
The type of k-point grid.
- kptshiftlist
The shifts in the k-point grid, returns [0,0,0].
Notes:¶
This function computes the k-point grid based on a specified k-point density, defaulting to 0.05 if unspecified. It returns the k-point grid, type, and shifts.
- getevenkpt()[source]¶
Make the k-point mesh even.
Returns:¶
- evenkpttuple
K-grid with an even number of points in all directions.
Notes:¶
Ensures the generated k-point grid has even points in each dimension by incrementing odd components to the next even number. Returns the resulting even k-point grid as a tuple.
- getecut_sssp(element)[source]¶
Obtain the kinetic energy cutoff for a specific element.
Parameters:¶
- elementstr
The type of element for which the kinetic energy cutoff is required.
Returns:¶
- float
Kinetic energy cutoff for the particular element.
Notes:¶
Gets cutoff values for elements from config.json or defaults from SSSP efficiency set if not found.
- maxecut_sssp()[source]¶
Choose the maximum kinetic energy cutoff among elements in a compound.
Returns:¶
- tuple
A tuple containing the maximum kinetic energy cutoff for waveFunction (ecutwfc) and the maximum kinetic energy cutoff for charge density (ecutrho).
Notes:¶
This function finds the maximum kinetic energy cutoff for compound elements, then returs the cutoffs for waveFunction and density.
- maxecut_sssp_for_subs()[source]¶
Determine the maximum kinetic energy cutoff among elements in a compound during the substitution process.
Returns:¶
- tuple
A tuple containing the maximum kinetic energy cutoff for waveFunction (ecutwfc) and the maximum kinetic energy cutoff for charge density (ecutrho).
Notes:¶
Similar to maxecut_sssp but for substitution process.
- get_properties(property_name)[source]¶
Function to extract multiple properties from MP. :param property_name: :type property_name: list of properties: Default: [‘material_id’]
- Returns:
property_list
- Return type:
list of properties extracted.
- setting_qeinput(calculation='vc-relax', occupations='smearing', restart_mode='from_scratch', pseudo_dir='./', smearing=0.02, smearing_type='gauss', etot_conv_thr=1e-05, forc_conv_thr=0.0001, conv_thr=1e-16, ion_dynamics='bfgs', cell_dynamics='bfgs', magnetic=False, primitive=True)[source]¶
Function to create input file for QE ground-state calculations.
Parameters: - calculation (str): Type of calculation. Default: ‘vc-relax’. Other options are ‘relax’ (ionic only), ‘bands’ for band structure, ‘scf’ for SCF calculations. - occupations (str): Occupation. Default: ‘smearing’. Other options could be ‘tetrahedra’ and so on. - restart_mode (str): How to start the calculations. - pseudo_dir (str): Path to pseudopotential files. Default: ‘./’ (current directory). - smearing (float): Degauss value. Default: 0.02. - smearing_type (str): Type of smearing. Default: ‘gauss’. - etot_conv_thr, forc_conv_thr, conv_thr (float): Convergence parameters of QE calculations. - ion_dynamics, cell_dynamics (str): Algorithm to perform relaxation. Default: ‘bfgs’. - magnetic (logical): Magnetic flag if magnetic input need to be created - primitive (logical): if True, then use primitive structure
Returns: Creates input files in scf-mpid.in format inside scf_dir/.
- htepc.reorder_dictionary(original_dict, new_order)[source]¶
Reorder the keys of a dictionary based on a new list of keywords and return the list of keys.
Parameters: - original_dict (dict): The original dictionary whose keys are to be reordered. - new_order (list): The new list of keywords specifying the desired order of keys.
Returns: - list: The list of keys of the reordered dictionary based on the new order.
Example: >>> original_dict = {‘a’: 1, ‘b’: 2, ‘c’: 3, ‘d’: 4} >>> new_order = [‘c’, ‘a’, ‘d’, ‘b’] >>> reorder_dictionary(original_dict, new_order)
- htepc.extract_elements_with_spin(original_list)[source]¶
Extract elements with their spin values from the given list.
Parameters: - original_list (list): List containing strings representing elements with spin values.
Returns: - dict: A dictionary where keys are elements and values are lists of spin values.
- htepc.convert_species_list(original_list)[source]¶
Rename elements in the original list with elements with different spins.
Parameters: - original_list (list): List containing strings representing elements.
Returns: - list: Updated list where elements are replaced with generic names for different spins.
Example: >>> original_list = [‘Fe,spin=5’, ‘Fe,spin=-5’, ‘pd’, ‘pd’, ‘I,spin=1’, ‘I,spin=-1’] >>> convert_species_list(original_list) [‘Fe1’, ‘Fe2’, ‘pd’, ‘pd’, ‘I1’, ‘I2’]
- class htepc.INPUTscf(filename='scf.in')[source]¶
class to process QE input files :param filename: :type filename: (str) QE input file
- scftocif(output='file.cif')[source]¶
Function to convert QE input file to structure file in .cif format :param output: :type output: (str) name of the output file
- Returns:
file2
- Return type:
output file object
- standardize(mpid, output='standard.in')[source]¶
Function to get symmetrized structure. :param mpid: :type mpid: (str) materials project ID :param output: :type output: (str) output file. Default: ‘standard.in’
- generate_kpath(nqpoint=200, kcut=0, out='kpath.in')[source]¶
Function to generate and write k-point mesh for bandstructure calculation to a file :param nqpoint: :type nqpoint: (int) size of the k-point mesh. Default: 200 :param kcut: :type kcut: (int) cutoff to the high-symmetry path of the Brillouin zone. Default: 0 for full Brillouin zone :param out: :type out: (str) output file. Default: ‘kpath.in’
- Returns:
kpts (numpy array of kpoints in linear axis after processing)
n ((int) size of kpts)
- setting_input(comp, mass, qpoint)[source]¶
Function to setup input :param comp: :type comp: compound name :param mass: :type mass: List of masses of elements :param qpoint: :type qpoint: List of qpoint
- create_elph(output='elph.in', tol=1e-14, sigma=0.005)[source]¶
Function similar to elph.py file inside src/
- create_matdyn(out='matdyn.in', nqpt=60, kcut=0)[source]¶
Function similar to matdyn.py file inside src/
- htepc.scf_to_dos_scf(input_file='scf.in', out='scf-dos.in')[source]¶
Function to change QE input file from using smearing to ‘tetrahedra’ method, mainly for DOS calculation
- Parameters:
input_file ((str) input file for QE scf calculation)
out ((str) output file after modification)
- htepc.insert(input_file='scf.in', output='scf-new.in', keyword=None, where='after', what='')[source]¶
Function to insert keyword in input file :param input_file: :type input_file: (str) input file. Default: ‘scf.in’ :param output: :type output: (str) output file. Default: ‘scf-new.in’ :param keyword: :type keyword: (str) keyword to look after :param where: :type where: (str) where to insert. Default: ‘after’, otherwise ‘before’ :param what: :type what: (str) what to insert. Default: ‘’
- class htepc.OUTPUTscf(filename='scf.out')[source]¶
class to extract relax structure from QE output file and update input file :param filename: :type filename: (str) QE output file. Default: ‘scf.out’
- extract_relax(output='relax.dat')[source]¶
Function to extract cell and positions of crystal structures from scf output file and write to a file :param filename: :type filename: (str) output file. Default: ‘relax.dat’
- update_scf(input_file='scf.in', output='scf-new.in', what='structure')[source]¶
Function to update QE input file and update with new structure :param input_file: :type input_file: (str) QE scf input file to update. Default: ‘scf.in’ :param output: :type output: (str) QE scf output file, updated with new structure. Default: ‘scf-new.in’ :param what: :type what: (str) what to update. Default: ‘structure’. Other, not implemented yet !