-
Notifications
You must be signed in to change notification settings - Fork 64
/
nebmake.pl
167 lines (151 loc) · 5.77 KB
/
nebmake.pl
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
#!/usr/bin/env perl
#;-*- Perl -*-
# Makes a linear interpolation between to POSCARs with N points
use FindBin qw($Bin);
use lib "$Bin";
use Vasp;
# Get the input parameters
@ARGV >= 3 || die "PLEASE INPUT THE TWO POSCARS AND THE NUMBER OF IMAGES!\n";
$pos1 = $ARGV[0];
$pos2 = $ARGV[1];
$nim = $ARGV[2] + 2;
$nim < 100 || die "THE NUMBER OF IMAGES (INCLUDING END-POINTS) IS LIMITED TO 100 AS IS \n";
# Read in the POSCAR files and make sure that the number of atoms and types are the same
($coo1,$basis1,$lattice1,$natoms1,$totatoms1,$selectiveflag,$selective,$description,$filetype1)
= read_poscar($pos1);
($coo2,$basis2,$lattice2,$natoms2,$totatoms2,$selectiveflag,$selective,$description,$filetype2)
= read_poscar($pos2);
print "filetype1: ",$filetype1,"\n";
print "filetype2: ",$filetype2,"\n";
if($filetype1 ne $filetype2) {
print "TYPE OF FILE 1 IS: ",$filetype1,"\n";
print "TYPE OF FILE 2 IS: ",$filetype2,"\n";
die;
}
if($totatom1 != $totatom2) {
print "TOTAL NUMBER OF ATOMS IN FILE 1 IS: ",$totatoms1,"\n";
print "TOTAL NUMBER OF ATOMS IN FILE 2 IS: ",$totatoms2,"\n";
die;
}
if(@{$natoms1} != @{$natoms2}) {
print "TYPES OF ATOMS IN FILE 1 IS: ",$n=@{$natoms1},"\n";
print "TYPES OF ATOMS IN FILE 2 IS: ",$n=@{$natoms2},"\n";
die;
}
for($i=0; $i<@{$natoms1}; $i++) {
if($natoms1->[$i] != $natoms2->[$i]) {
print "FOR ELEMENT ",$i," ... \n";
print "... ATOMS IN FILE 1 IS: ",$natoms1->[$i],"\n";
print "... ATOMS IN FILE 2 IS: ",$natoms2->[$i],"\n";
die;
}
}
if($lattice1 != $lattice2) {
print "WARNING: LATTICE CONSTANTS ARE NOT THE SAME \n";
print "THE LATTICE CONSTANT IN FILE 1 IS: ",$lattice1,"\n";
print "THE LATTICE CONSTANT IN FILE 2 IS: ",$lattice2,"\n";
print "I HOPE YOU KNOW WHAT YOU ARE DOING\n";
$dyn_cell = 1;
}
for($i=0; $i<3; $i++) {
for($j=0; $j<3; $j++) {
if(($basis1->[$j][$i] != $basis2->[$j][$i])&&($dyn_cell != 1)) {
print "WARNING: BASIS VECTORS ARE NOT THE SAME \n" ;
print "BASIS ELEMENT ",$i," ",$j," ... \n" ;
print "... IS IN FILE 1: ",$basis1->[$j][$i],"\n" ;
print "... IS IN FILE 2: ",$basis2->[$j][$i],"\n" ;
print "I HOPE YOU KNOW WHAT YOU ARE DOING\n";
$dyn_cell = 1;
}
}
}
# Ok, the POSCARs appear to be for the same system.
# Get te header, i.e. the element symbols from the first POSCAR line
#$header = `head -n 1 $pos1`;
#chop($header);
# Calculate basis and lattice step if dyn_cell
if ($dyn_cell==1) {
$latt_step = ($lattice2-$lattice1)/($nim-1);
#$latt_avg = ($lattice2-$lattice1)/(2);
$t_latt = $lattice1;
for($i=0; $i<3; $i++) {
for($j=0; $j<3; $j++) {
$basis_step->[$j][$i] = ($basis2->[$j][$i] - $basis1->[$j][$i])/($nim-1);
$basis_avg->[$j][$i] = ($basis2->[$j][$i] + $basis1->[$j][$i])/(2);
$t_basis->[$j][$i] = $basis1->[$j][$i];
}
}
}
# Calculate the distance between the two images ... dirkar: direct -> cartesian
$diff = pbc_difference($coo2,$coo1,$totatoms1);
#if ($dyn_cell==1) { dirkar($diff,$basis_avg,$latt_avg,$totatoms1); }
#else { dirkar($diff,$basis1,$lattice1,$totatoms1); }
if ($dyn_cell != 1) { dirkar($diff,$basis1,$lattice1,$totatoms1); }
for($i=0; $i<$totatoms1; $i++) {
for($j=0; $j<3; $j++) {
$step->[$i][$j] = ($diff->[$i][$j])/($nim-1);
}
}
# Because zero is the number of the first image
$nim--;
# Put the POSCAR in the initial state folder
mkdir "00";
#write_poscar($coo1,$basis1,$lattice1,$natoms1,$totatoms1,
# $selectiveflag,$selective,$header,"00/POSCAR",$filetype1);
write_poscar($coo1,$basis1,$lattice1,$natoms1,$totatoms1,
$selectiveflag,$selective,$description,"00/POSCAR",$filetype1);
# Put the POSCAR in the final state folder
if($nim < 10) { $dir = "0$nim"; }
else { $dir = "$nim"; }
mkdir $dir;
#write_poscar($coo2,$basis2,$lattice2,$natoms1,$totatoms1,
# $selectiveflag,$selective,$header,"$dir/POSCAR",$filetype1);
write_poscar($coo2,$basis2,$lattice2,$natoms1,$totatoms1,
$selectiveflag,$selective,$description,"$dir/POSCAR",$filetype1);
# Make the rest of the images in the chain
for($i=0; $i<$totatoms1; $i++) {
for($j=0; $j<3; $j++) {
$t->[$i][$j] = $coo1->[$i][$j];
}
}
for($im=1; $im<$nim; $im++) {
#if ($dyn_cell==1) {dirkar($t,$t_basis,$t_latt,$totatoms1);}
#else {dirkar($t,$basis1,$lattice1,$totatoms1)} ;
if ($dyn_cell != 1) { dirkar($t,$basis1,$lattice1,$totatoms1); }
for($i=0; $i<$totatoms1; $i++) {
for($j=0; $j<3; $j++) {
$t->[$i][$j] += $step->[$i][$j];
}
}
if ($dyn_cell==1) {
$t_latt += $latt_step;
#print "lattice ",$t_latt,"\n";
for($i=0; $i<3; $i++) {
for($j=0; $j<3; $j++) {
$t_basis->[$j][$i] += $basis_step->[$j][$i];
}
}
} else { kardir($t,$basis1,$lattice1,$totatoms1); }
if($im < 10) { $dir = "0$im"; }
else { $dir = "$im"; }
mkdir $dir;
if ($dyn_cell==1) {
# write_poscar($t,$t_basis,$t_latt,$natoms1,$totatoms1,
# $selectiveflag,$selective,$header,"$dir/POSCAR",$filetype1);
write_poscar($t,$t_basis,$t_latt,$natoms1,$totatoms1,
$selectiveflag,$selective,$description,"$dir/POSCAR",$filetype1);
} else {
# write_poscar($t,$basis1,$lattice1,$natoms1,$totatoms1,
# $selectiveflag,$selective,$header,"$dir/POSCAR",$filetype1);
write_poscar($t,$basis1,$lattice1,$natoms1,$totatoms1,
$selectiveflag,$selective,$description,"$dir/POSCAR",$filetype1);
}
}
print "\n" ;
print "OK, ALL SETUP HERE\n";
print "FOR LATER ANALYSIS, PUT OUTCARs IN FOLDERS 00 and ";
if($im < 10) {
print "0$nim !!! \n";
} else {
print "$nim !!! \n";
}