-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterstitial.py
140 lines (117 loc) · 5.55 KB
/
Interstitial.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
from Property import Property
from refine import make_refine
import reproduce
import dpgen.auto_test.lib.vasp as vasp
import dpgen.auto_test.lib.lammps as lammps
from pymatgen.core.structure import Structure
from pymatgen.analysis.defects.generators import InterstitialGenerator
import numpy as np
import os,json
class Interstitial(Property):
def __init__(self,
parameter):
self.parameter = parameter
default_supercell = [1, 1, 1]
self.supercell = parameter.get('supercell', default_supercell)
self.insert_ele = parameter['insert_ele']
self.reprod = parameter.get('reprod-opt', False)
def make_confs(self,
path_to_work,
path_to_equi,
refine=False):
path_to_work = os.path.abspath(path_to_work)
path_to_equi = os.path.abspath(path_to_equi)
task_list = []
cwd = os.getcwd()
print('gen interstitial with supercell ' + str(self.supercell) + ' with element ' + str(self.insert_ele))
equi_contcar = os.path.join(path_to_equi, 'CONTCAR')
if not os.path.exists(equi_contcar):
raise RuntimeError("please do relaxation first")
ss = Structure.from_file(equi_contcar)
# gen defects
dss = []
for ii in self.insert_ele:
vds = InterstitialGenerator(ss, ii)
for jj in vds:
temp = jj.generate_defect_structure(self.supercell)
smallest_distance = list(set(temp.distance_matrix.ravel()))[1]
if 'conf_filters' in self.parameter and 'min_dist' in self.parameter['conf_filters']:
min_dist = self.parameter['conf_filters']['min_dist']
if smallest_distance >= min_dist:
dss.append(temp)
else:
dss.append(temp)
# dss.append(jj.generate_defect_structure(self.supercell))
if refine:
task_list = make_refine(self.parameter['init_from_suffix'],
self.parameter['output_suffix'],
path_to_work,
len(dss))
for ii in task_list:
os.chdir(ii)
np.savetxt('supercell.out', self.supercell, fmt='%d')
os.chdir(cwd)
if self.reprod:
if 'vasp_path' not in self.parameter:
raise RuntimeError("please provide the vasp_path for reproduction")
vasp_path = os.path.abspath(self.parameter['vasp_path'])
task_list = reproduce.make_repro(vasp_path,path_to_work)
os.chdir(cwd)
else:
os.chdir(path_to_work)
if os.path.isfile('POSCAR'):
os.remove('POSCAR')
os.symlink(os.path.relpath(equi_contcar), 'POSCAR')
# task_poscar = os.path.join(output, 'POSCAR')
for ii in range(len(dss)):
output_task = os.path.join(path_to_work, 'task.%06d' % ii)
os.makedirs(output_task, exist_ok=True)
os.chdir(output_task)
for jj in ['INCAR', 'POTCAR', 'POSCAR', 'conf.lmp', 'in.lammps']:
if os.path.exists(jj):
os.remove(jj)
task_list.append(output_task)
dss[ii].to('POSCAR', 'POSCAR')
np.savetxt('supercell.out', self.supercell, fmt='%d')
os.chdir(cwd)
return task_list
def task_type(self):
return self.parameter['type']
def task_param(self):
return self.parameter
def _compute_lower(self,
output_file,
all_tasks,
all_res):
output_file = os.path.abspath(output_file)
res_data = {}
ptr_data = os.path.dirname(output_file) + '\n'
if not self.reprod:
ptr_data += "Insert_ele-Struct: Inter_E(eV) E(eV) equi_E(eV)\n"
for ii in all_tasks:
with open(os.path.join(ii, 'inter.json')) as fp:
idata = json.load(fp)
inter_type = idata['type']
equi_path = os.path.abspath(os.path.join(os.path.dirname(output_file), '../relaxation'))
structure_dir = os.path.basename(ii)
if inter_type == 'vasp':
equi_outcar = os.path.join(equi_path, 'OUTCAR')
equi_natoms, equi_epa, equi_vpa = vasp.get_nev(equi_outcar)
elif inter_type in ['deepmd', 'meam', 'eam_fs', 'eam_alloy']:
equi_log = os.path.join(equi_path, 'log.lammps')
equi_natoms, equi_epa, equi_vpa = lammps.get_nev(equi_log)
else:
raise RuntimeError('interaction type not supported')
natoms = len(all_res[ii]['force']) / 3
epa = all_res[ii]['energy'] / natoms
evac = epa * natoms - equi_epa * natoms
ptr_data += "%s: %7.3f %7.3f %7.3f \n" % (structure_dir, evac, epa * natoms, equi_epa * natoms)
res_data[structure_dir] = [evac, epa * natoms, equi_epa * natoms]
else:
if 'vasp_path' not in self.parameter:
raise RuntimeError("please provide the vasp_path for reproduction")
vasp_path = os.path.abspath(self.parameter['vasp_path'])
res_data, ptr_data = reproduce.post_repro(vasp_path,all_tasks,ptr_data)
with open(output_file, 'w') as fp:
json.dump(res_data, fp, indent=4)
return res_data, ptr_data