forked from abacusmodeling/abacus-develop
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathprint_file.py
224 lines (195 loc) · 5.71 KB
/
print_file.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import json
import utils
import textwrap
def print_file_pw(info,dis):
with open("INPUT","w") as file:
file.write(textwrap.dedent(f"""\
INPUT_PARAMETERS
pseudo_dir {info["input"]["pseudo_dir"]}
wannier_card INPUTw
calculation scf
ntype 1
nspin 1
lmaxmax {len(info["orbital"])-1}
basis_type pw
ks_solver cg
symmetry 0
gamma_only 1
nbands {info["input"]["nbands"]}
ecutwfc {info["input"]["ecut"]}
scf_thr 1.0e-8 // about iteration
scf_nmax 1000
smearing_method gauss
smearing_sigma {info["input"]["smearing_sigma"]}
mixing_type pulay // about charge mixing
mixing_beta 0.4
mixing_ndim 8
printe 1
"""))
with open("INPUTw","w") as file:
file.write(textwrap.dedent(f"""\
WANNIER_PARAMETERS
rcut {info["input"]["rcut"]}
out_spillage 2
spillage_outdir orb_matrix
"""))
with open("INPUTs","w") as file:
file.write(textwrap.dedent(f"""\
INPUT_ORBITAL_INFORMATION
<SPHERICAL_BESSEL>
{int(info["input"]["smooth"])} // smooth or not
0.1 // smearing_sigma
{info["input"]["ecut"]} // energy cutoff for spherical bessel functions(Ry)
{info["input"]["rcut"]} // cutoff of wavefunctions(a.u.)
1.0e-12 // tolerence
</SPHERICAL_BESSEL>
"""))
with open("STRU","w") as file:
file.write("ATOMIC_SPECIES\n")
file.write(f'{info["input"]["element"]} 1 {info["input"]["pseudo"]}\n')
file.write(textwrap.dedent(f"""\
LATTICE_CONSTANT
{utils.lat0}\n
LATTICE_VECTORS
1 0 0
0 1 0
0 0 1\n
ATOMIC_POSITIONS
Cartesian_angstrom
"""))
if info["input"]["element"] in ["Na","Li","K","Ca"]:
file.write(textwrap.dedent(f"""\
{info["input"]["element"]}
0.0
3
0 0 0 0 0 0
0 0 {dis} 0 0 0
0 {dis*0.86603} {dis*0.5} 0 0 0
"""))
else:
file.write(textwrap.dedent(f"""\
{info["input"]["element"]}
0.0
2
0 0 0 0 0 0
0 0 {dis} 0 0 0
"""))
with open("KPT","w") as file:
file.write(textwrap.dedent(f"""\
K_POINTS
0
Gamma
1 1 1 0 0 0
"""))
if utils.sub=="qsub":
with open("sub.sh","w") as file:
core = info["exe"]["qsub"][0]*info["exe"]["qsub"][1]
file.write(textwrap.dedent(f"""\
#!/bin/bash
#PBS -q gold5120
#PBS -l nodes={info["exe"]["qsub"][0]}:ppn={info["exe"]["qsub"][1]}
#PBS -l walltime=12:00:00
#PBS -o job.log
#PBS -e job.err
ulimit -s unlimited
cd $PBS_O_WORKDIR
EXEC={info["exe"]["exe_pw"]}
mpirun -n {core} -env OMP_NUM_THREADS=1 $EXEC
"""))
elif utils.sub=="sbatch":
with open("sub.sh","w") as file:
core = info["exe"]["qsub"][0]*info["exe"]["qsub"][1]
file.write(textwrap.dedent(f"""\
#!/bin/bash
#SBATCH -J {info["input"]["element"]}_{dis}
#SBATCH -p regular
#SBATCH -N {info["exe"]["qsub"][0]}
#SBATCH -o test.out
EXEC={info["exe"]["exe_pw"]}
mpirun -n {core} -env OMP_NUM_THREADS=1 $EXEC
"""))
elif utils.sub=="bsub":
with open("sub.sh","w") as file:
core = info["exe"]["qsub"][0]*info["exe"]["qsub"][1]
file.write(textwrap.dedent(f"""\
#!/bin/sh
#BSUB -q renxg
#BSUB -o job.log -e job.err
#BSUB -n {core}
EXEC={info["exe"]["exe_pw"]}
mpirun -n {core} -env OMP_NUM_THREADS=1 $EXEC
"""))
else:
raise KeyError("utils.sub = ",utils.sub)
def print_file_opt(info,dis):
with open("INPUT","w") as file:
input = {
"file_list": {
"origin": [ f'../{info["input"]["element"]}-{info["input"]["rcut"]}-{distance}/orb_matrix/orb_matrix.0.dat' for distance in dis[info["input"]["element"]] ],
"linear": [[ f'../{info["input"]["element"]}-{info["input"]["rcut"]}-{distance}/orb_matrix/orb_matrix.1.dat' for distance in dis[info["input"]["element"]] ]]
},
"info": {
"Nt_all": [info["input"]["element"]],
"Nu": {info["input"]["element"] : info["orbital"]},
"Rcut": {info["input"]["element"] : info["input"]["rcut"]},
"dr": {info["input"]["element"] : utils.dr},
"Ecut": {info["input"]["element"] : info["input"]["ecut"]},
"lr": utils.lr,
"cal_T": False,
"cal_smooth": info["input"]["smooth"]
},
"weight":
{
"stru": [1] * len(dis[info["input"]["element"]]),
"bands_file": [ f'../{info["input"]["element"]}-{info["input"]["rcut"]}-{distance}/OUT.ABACUS/istate.info' for distance in dis[info["input"]["element"]] ]
},
"C_init_info": {
"init_from_file": False
},
"V_info": {
"same_band": True,
"init_from_file": True
}
}
file.write(json.dumps(input,indent=4))
if utils.sub=="qsub":
with open("sub.sh","w") as file:
file.write(textwrap.dedent(f"""\
#!/bin/bash
#PBS -q gold5120
#PBS -l nodes=1:ppn=1
#PBS -l walltime=1:00:00
#PBS -o job.log
#PBS -e job.err
ulimit -s unlimited
cd $PBS_O_WORKDIR
export OMP_NUM_THREADS=1
EXEC={info["exe"]["exe_orbital"]}
python3 $EXEC
"""))
elif utils.sub=="sbatch":
with open("sub.sh","w") as file:
core = info["exe"]["qsub"][0]*info["exe"]["qsub"][1]
file.write(textwrap.dedent(f"""\
#!/bin/bash
#SBATCH -J {info["input"]["element"]}_opt-orb
#SBATCH -p regular
#SBATCH -N 1
#SBATCH -o test.out
export OMP_NUM_THREADS={core}
EXEC={info["exe"]["exe_orbital"]}
python3 $EXEC
"""))
elif utils.sub=="bsub":
with open("sub.sh","w") as file:
file.write(textwrap.dedent(f"""\
#!/bin/sh
#BSUB -q renxg
#BSUB -o job.log -e job.err
#BSUB -n 1
export OMP_NUM_THREADS=1
EXEC={info["exe"]["exe_orbital"]}
python3 $EXEC
"""))
else:
raise KeyError("utils.sub = ",utils.sub)