Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.7", "3.8"]
Expand Down
38 changes: 31 additions & 7 deletions HTMACat/model/Ads.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, species: list, sites: list, settings={}, spec_ads_stable=None
"NH2": [2],
"NH": [2, 4],
"N": [2, 4],
"O": [2, 4],
"O": [1,2, 3],
"OH": [2, 4],
"NO": [2, 4],
"H2O": [1],
Expand Down Expand Up @@ -136,7 +136,21 @@ def dist_of_nearest_diff_neigh_site(self, slab, site_coords):
imagesites_distances = [np.sqrt(np.sum(np.square(v[:2]-coord_images[0][:2]))) for v in coord_images]
d = np.min(imagesites_distances[1:])
return d


def adjust_fractional_coordinates(self, atoms):
cell = atoms.get_cell()
fractional_coords = atoms.get_scaled_positions()

# 调整x坐标范围
fractional_coords[:, 0] += 0.5
fractional_coords[:, 0] %= 1.0 # 将x坐标重新映射到0到1之间
# 调整y坐标范围
fractional_coords[:, 1] += 0.5
fractional_coords[:, 1] %= 1.0 # 将y坐标重新映射到0到1之间

# 将调整后的分数坐标应用回结构
atoms.set_scaled_positions(fractional_coords)

def Construct_single_adsorption(self, ele=None):
_direction_mode = self.settings['direction']
_rotation_mode = self.settings['rotation']
Expand Down Expand Up @@ -184,11 +198,13 @@ def Construct_single_adsorption(self, ele=None):
direction_mode=_direction_mode,
site_coord = coord_,
z_bias=_z_bias)
if type(tmp) == list:
if isinstance(tmp, list):
for ii, t in enumerate(tmp):
self.adjust_fractional_coordinates(t)
slab_ad += [t]
else:
slab_ad += [tmp]
self.adjust_fractional_coordinates(tmp)
slab_ad.append(tmp)
#if len(bond_atom_ids) > 1:
# slab_ad += [builder._single_adsorption(ads_use, bond=bond_id, site_index=j, direction_mode='decision_boundary', direction_args=bond_atom_ids)]
else:
Expand All @@ -204,11 +220,15 @@ def Construct_single_adsorption(self, ele=None):
direction_mode=_direction_mode,
site_coord = coord_,
z_bias=_z_bias)
if type(tmp) == list:
if isinstance(tmp, list):
for ii, t in enumerate(tmp):
slab_ad += [t]
# 调整分数坐标范围
self.adjust_fractional_coordinates(t)
slab_ad.append(t)
else:
slab_ad += [tmp]
# 调整分数坐标范围
self.adjust_fractional_coordinates(tmp)
slab_ad.append(tmp)
return slab_ad

def Construct_double_adsorption(self):
Expand Down Expand Up @@ -452,17 +472,21 @@ def Construct_coadsorption_11(self, ele=['','']):
bind_surfatoms,
bind_surfatoms_symb,
) = get_binding_adatom(adslab)
print(f"Adsorption {j+1}: {adspecie, bind_type_symb}")
adspecie_tmp, bind_type_symb_tmp = [], []
for k, spe in enumerate(adspecie):
if spe in ads_type.keys():
adspecie_tmp += [spe]
bind_type_symb_tmp += [bind_type_symb[k]]
print(f"Adsorption configuration1 {j+1}: {adspecie_tmp, bind_type_symb_tmp}")
if len(adspecie_tmp) < 2:
# print('Can not identify the config!')
slab_ad_final += [adslab]
elif typ.get(bind_type_symb_tmp[0]) in ads_type.get(adspecie_tmp[0]) and \
typ.get(bind_type_symb_tmp[1]) in ads_type.get(adspecie_tmp[1]):
slab_ad_final += [adslab]
print(len(slab_ad_final))
print(slab_ad_final)
return slab_ad_final

def Construct_coadsorption_12(self):
Expand Down
Loading