def test_charge_gen(self): struc = PymatgenTest.get_structure("VO2") # assemble set of defects to get charges for vac_gen = VacancyGenerator(struc) vacs = list(vac_gen) full_subs = [] for sub_elt in ["V", "O", "S"]: sub_gen = SubstitutionGenerator(struc, sub_elt) full_subs.extend(list(sub_gen)) int_gen = VoronoiInterstitialGenerator(struc, "H") inters = list(int_gen) defect_list = list(set().union(vacs, full_subs, inters)) # test simple charges true_charges = { "Vac_O_mult4": 2, "Int_H_Voronoi1_mult8": 0, "Int_H_Voronoi2_mult8": 0, "Vac_V_mult2": -4, "Sub_S_on_V_mult2": 0, "Int_H_Voronoi3_mult4": 0, "Int_H_Voronoi4_mult4": 0, "Sub_O_on_V_mult2": -2, "Sub_S_on_O_mult4": 0, "Sub_V_on_O_mult4": 1, } for defect in defect_list: scg = SimpleChargeGenerator(defect) charged_defects_list = list(scg) def_name = charged_defects_list[0].name charge = charged_defects_list[0].charge self.assertEqual(len(charged_defects_list), 1) self.assertEqual(true_charges[def_name], charge)
def __init__(self, structure, max_min_oxi=None, substitutions=None, oxi_states=None, cellmax=128, antisites_flag=True, include_interstitials=False, interstitial_elements=None, intersites=None, standardized=False, struct_type='semiconductor'): """ Args: structure (Structure): the bulk structure. max_min_oxi (dict): The minimal and maximum oxidation state of each element as a dict. For instance {"O":(-2,0)}. If not given, the oxi-states of pymatgen are considered. substitutions (dict): The allowed substitutions of elements as a dict. If not given, intrinsic defects are computed. If given, intrinsic (e.g., anti-sites) and extrinsic are considered explicitly specified. Example: {"Co":["Zn","Mn"]} means Co sites can be substituted by Mn or Zn. oxi_states (dict): The oxidation state of the elements in the compound e.g. {"Fe":2,"O":-2}. If not given, the oxidation state of each site is computed with bond valence sum. WARNING: Bond-valence method can fail for mixed-valence compounds. cellmax (int): Maximum number of atoms allowed in the supercell. antisites_flag (bool): If False, don't generate antisites. include_interstitials (bool): If true, do generate interstitial defect configurations (default: False). interstitial_elements ([str]): List of strings containing symbols of the elements that are to be considered for interstitial sites. The default (None) triggers self-interstitial generation, given that include_interstitials is True. intersites ([PeriodicSite]): A list of PeriodicSites in the bulk structure on which we put interstitials. Note that you still have to set flag include_interstitials to True in order to make use of this manual way of providing interstitial sites. If this is used, then no additional interstitials are generated beyond the list that is provided in intersites. standardized (bool): If True, use the primitive standard structure as unit cell for generating the defect configurations (default is False). The primitive standard structure is obtained from the SpacegroupAnalyzer class with a symprec of 0.01. struct_type (string): Options are 'semiconductor' and 'insulator'. If semiconductor is selected, charge states based on database of semiconductors is used to assign defect charges. For insulators, defect charges are conservatively assigned. """ max_min_oxi = max_min_oxi if max_min_oxi is not None else {} substitutions = substitutions if substitutions is not None else {} oxi_states = oxi_states if oxi_states is not None else {} interstitial_elements = interstitial_elements if interstitial_elements is not None else [] intersites = intersites if intersites is not None else [] self.defects = [] self.cellmax = cellmax self.substitutions = {} self.struct_type = struct_type for key, val in substitutions.items(): self.substitutions[key] = val spa = SpacegroupAnalyzer(structure, symprec=1e-2) prim_struct = spa.get_primitive_standard_structure() if standardized: self.struct = prim_struct else: self.struct = structure struct_species = self.struct.types_of_specie if self.struct_type == 'semiconductor': self.defect_charger = DefectChargerSemiconductor( self.struct, min_max_oxi=max_min_oxi) elif self.struct_type == 'insulator': self.defect_charger = DefectChargerInsulator(self.struct) elif self.struct_type == 'manual': self.defect_charger = DefectChargerUserCustom( self.struct, oxi_states=oxi_states) elif self.struct_type == 'ionic': self.defect_charger = DefectChargerIonic(self.struct) else: raise NotImplementedError if include_interstitials and interstitial_elements: for elem_str in interstitial_elements: if not Element.is_valid_symbol(elem_str): raise ValueError("invalid interstitial element" " \"{}\"".format(elem_str)) sc_scale = get_optimized_sc_scale(self.struct, cellmax) self.defects = {} sc = self.struct.copy() sc.make_supercell(sc_scale) self.defects['bulk'] = { 'name': 'bulk', 'supercell': { 'size': sc_scale, 'structure': sc } } # If interstitials are provided as a list of PeriodicSites, # make sure that the lattice has not changed. if include_interstitials and intersites: for intersite in intersites: #list of PeriodicSite objects if intersite.lattice != self.struct.lattice: raise RuntimeError( "Discrepancy between lattices" " underlying the input interstitials and" " the bulk structure; possibly because of" " standardizing the input structure.") vacancies = [] as_defs = [] sub_defs = [] VG = VacancyGenerator(self.struct) print("Setting up defects...") for i, vac in enumerate(VG): vac_site = vac.site vac_symbol = vac.site.specie.symbol vac_sc = vac.generate_defect_structure(sc_scale) #create a trivial defect structure to find where supercell transformation moves the lattice struct_for_defect_site = Structure( vac.bulk_structure.copy().lattice, [vac.site.specie], [vac.site.frac_coords], to_unit_cell=True, coords_are_cartesian=False) struct_for_defect_site.make_supercell(sc_scale) vac_sc_site = struct_for_defect_site[0] charges_vac = self.defect_charger.get_charges( 'vacancy', vac_symbol) for c in SimpleChargeGenerator(vac): vacancies.append({ 'name': "vac_{}_{}".format(i + 1, vac_symbol), 'unique_site': vac_site, 'bulk_supercell_site': vac_sc_site, 'defect_type': 'vacancy', 'site_specie': vac_symbol, 'site_multiplicity': vac.multiplicity, 'supercell': { 'size': sc_scale, 'structure': vac_sc }, 'charges': charges_vac, 'Possible_KV_Charge': c.charge }) if antisites_flag: for as_specie in set(struct_species): SG = SubstitutionGenerator(self.struct, as_specie) for i, sub in enumerate(SG): as_symbol = as_specie.symbol as_sc = sub.generate_defect_structure(sc_scale) # create a trivial defect structure to find where supercell transformation moves the defect struct_for_defect_site = Structure( sub.bulk_structure.copy().lattice, [sub.site.specie], [sub.site.frac_coords], to_unit_cell=True, coords_are_cartesian=False) struct_for_defect_site.make_supercell(sc_scale) as_sc_site = struct_for_defect_site[0] #get bulk_site (non sc) poss_deflist = sorted( sub.bulk_structure.get_sites_in_sphere( sub.site.coords, 0.01, include_index=True), key=lambda x: x[1]) if not len(poss_deflist): raise ValueError( "Could not find substitution site inside bulk structure for {}?" .format(sub.name)) defindex = poss_deflist[0][2] as_site = sub.bulk_structure[defindex] vac_symbol = as_site.specie charges_as = self.defect_charger.get_charges( 'antisite', vac_symbol, as_symbol) for c in SimpleChargeGenerator(sub): as_defs.append({ 'name': "as_{}_{}_on_{}".format(i + 1, as_symbol, vac_symbol), 'unique_site': as_site, 'bulk_supercell_site': as_sc_site, 'defect_type': 'antisite', 'site_specie': vac_symbol, 'substituting_specie': as_symbol, 'site_multiplicity': sub.multiplicity, 'supercell': { 'size': sc_scale, 'structure': as_sc }, 'charges': charges_as, 'Possible_KV_Charge': c.charge }) for vac_symbol, subspecie_list in self.substitutions.items(): for subspecie_symbol in subspecie_list: SG = SubstitutionGenerator(self.struct, subspecie_symbol) for i, sub in enumerate(SG): sub_symbol = sub.site.specie.symbol #get bulk_site (non sc) poss_deflist = sorted( sub.bulk_structure.get_sites_in_sphere( sub.site.coords, 0.1, include_index=True), key=lambda x: x[1]) if not len(poss_deflist): raise ValueError( "Could not find substitution site inside bulk structure for {}?" .format(sub.name)) defindex = poss_deflist[0][2] sub_site = self.struct[defindex] this_vac_symbol = sub_site.specie.symbol if (sub_symbol != subspecie_symbol) or (this_vac_symbol != vac_symbol): continue else: sub_sc = sub.generate_defect_structure(sc_scale) # create a trivial defect structure to find where supercell transformation moves the defect struct_for_defect_site = Structure( sub.bulk_structure.copy().lattice, [sub.site.specie], [sub.site.frac_coords], to_unit_cell=True, coords_are_cartesian=False) struct_for_defect_site.make_supercell(sc_scale) sub_sc_site = struct_for_defect_site[0] charges_sub = self.defect_charger.get_charges( 'substitution', vac_symbol, subspecie_symbol) for c in SimpleChargeGenerator(sub): sub_defs.append({ 'name': "sub_{}_{}_on_{}".format( i + 1, subspecie_symbol, vac_symbol), 'unique_site': sub_site, 'bulk_supercell_site': sub_sc_site, 'defect_type': 'substitution', 'site_specie': vac_symbol, 'substitution_specie': subspecie_symbol, 'site_multiplicity': sub.multiplicity, 'supercell': { 'size': sc_scale, 'structure': sub_sc }, 'charges': charges_sub, 'Possible_KV_Charge': c.charge }) self.defects['vacancies'] = vacancies self.defects['substitutions'] = sub_defs self.defects['substitutions'] += as_defs if include_interstitials: interstitials = [] if interstitial_elements: inter_elems = interstitial_elements else: inter_elems = [elem.symbol for elem in \ self.struct.composition.elements] if len(inter_elems) == 0: raise RuntimeError("empty element list for interstitials") if intersites: #manual specification of interstitials for i, intersite in enumerate(intersites): for elt in inter_elems: name = "inter_{}_{}".format(i + 1, elt) if intersite.lattice != self.struct.lattice: err_msg = "Lattice matching error occurs between provided interstitial and the bulk structure." if standardized: err_msg += "\nLikely because the standardized flag was used. Turn this flag off or reset " \ "your interstitial PeriodicSite to match the standardized form of the bulk structure." raise ValueError(err_msg) else: intersite_object = Interstitial( self.struct, intersite) # create a trivial defect structure to find where supercell transformation moves the defect site struct_for_defect_site = Structure( intersite_object.bulk_structure.copy().lattice, [intersite_object.site.specie], [intersite_object.site.frac_coords], to_unit_cell=True, coords_are_cartesian=False) struct_for_defect_site.make_supercell(sc_scale) site_sc = struct_for_defect_site[0] sc_with_inter = intersite_object.generate_defect_structure( sc_scale) charges_inter = self.defect_charger.get_charges( 'interstitial', elt) for c in SimpleChargeGenerator(intersite_object): interstitials.append({ 'name': name, 'unique_site': intersite_object.site, 'bulk_supercell_site': site_sc, 'defect_type': 'interstitial', 'site_specie': intersite_object.site.specie.symbol, 'site_multiplicity': intersite_object.multiplicity, 'supercell': { 'size': sc_scale, 'structure': sc_with_inter }, 'charges': charges_inter, 'Possible_KV_Charge': c.charge }) else: print( "Searching for Voronoi interstitial sites (this can take awhile)..." ) for elt in inter_elems: #TODO: Add ability to use other interstitial finding methods in pymatgen IG = VoronoiInterstitialGenerator(self.struct, elt) for i, intersite_object in enumerate(IG): # I don't like all the extra shit in the name, so I'm removing "Voronoi" and "multXX" name = re.sub( '_mult.*', '', re.sub('Voronoi', '', intersite_object.name)) # create a trivial defect structure to find where supercell transformation moves the defect site struct_for_defect_site = Structure( intersite_object.bulk_structure.copy().lattice, [intersite_object.site.specie], [intersite_object.site.frac_coords], to_unit_cell=True, coords_are_cartesian=False) struct_for_defect_site.make_supercell(sc_scale) site_sc = struct_for_defect_site[0] sc_with_inter = intersite_object.generate_defect_structure( sc_scale) charges_inter = self.defect_charger.get_charges( 'interstitial', elt) for c in SimpleChargeGenerator(intersite_object): interstitials.append({ 'name': name, 'unique_site': intersite_object.site, 'bulk_supercell_site': site_sc, 'defect_type': 'interstitial', 'site_specie': intersite_object.site.specie.symbol, 'site_multiplicity': intersite_object.multiplicity, 'supercell': { 'size': sc_scale, 'structure': sc_with_inter }, 'charges': charges_inter, 'Possible_KV_Charge': c.charge }) self.defects['interstitials'] = interstitials print("\nNumber of jobs created:") tottmp = 0 for j in self.defects.keys(): if j == 'bulk': print(" bulk = 1") tottmp += 1 else: print(" {}:".format(j)) for lis in self.defects[j]: print(" {} = {} with site multiplicity {}".format( lis['name'], len(lis['charges']), lis['site_multiplicity'])) tottmp += len(lis['charges']) print("Total (non dielectric) jobs created = {}\n".format(tottmp))