ABACUS develop
Atomic-orbital Based Ab-initio Computation at UStc
Loading...
Searching...
No Matches
prepare_unitcell.h
Go to the documentation of this file.
1#ifndef PREPARE_UNITCELL_H
2#define PREPARE_UNITCELL_H
3#include<map>
4#include<string>
6
8{
9public:
11 UcellTestPrepare(std::string latname_in,
12 int lmaxmax_in,
13 bool init_vel_in,
14 bool selective_dynamics_in,
15 bool relax_new_in,
16 std::string fixed_axes_in,
17 double lat0_in,
18 std::valarray<double> latvec_in,
19 std::vector<std::string> elements_in,
20 std::vector<std::string> pp_files_in,
21 std::vector<std::string> pp_types_in,
22 std::vector<std::string> orb_files_in,
23 std::valarray<int> natom_in,
24 std::vector<double> atomic_mass_in,
25 std::string coor_type_in,
26 std::valarray<double> coordinates_in);
27 UcellTestPrepare(std::string latname_in,
28 int lmaxmax_in,
29 bool init_vel_in,
30 bool selective_dynamics_in,
31 bool relax_new_in,
32 std::string fixed_axes_in,
33 double lat0_in,
34 std::valarray<double> latvec_in,
35 std::vector<std::string> elements_in,
36 std::vector<std::string> pp_files_in,
37 std::vector<std::string> pp_types_in,
38 std::vector<std::string> orb_files_in,
39 std::valarray<int> natom_in,
40 std::vector<double> atomic_mass_in,
41 std::string coor_type_in,
42 std::valarray<double> coordinates_in,
43 std::valarray<double> mbl_in,
44 std::valarray<double> velocity_in);
46
47 std::string latname;
48 int lmaxmax;
49 bool init_vel;
51 bool relax_new;
52 std::string fixed_axes;
53 double lat0;
54 std::valarray<double> latvec;
55 std::vector<std::string> elements;
56 std::vector<std::string> pp_files;
57 std::vector<std::string> pp_types;
58 std::vector<std::string> orb_files;
59 std::valarray<int> natom;
60 std::vector<double> atomic_mass;
61 std::string coor_type;
62 std::valarray<double> coordinates;
63 std::valarray<double> mbl;
64 std::valarray<double> velocity;
65 // ntype
66 int ntype;
67 int atomic_index;
68
69 UnitCell* SetUcellInfo(const std::vector<int>& nw, int& nlocal)
70 {
71 //basic info
72 this->ntype = this->elements.size();
73 static UnitCell ucell;
74 ucell.setup(this->latname, this->ntype, this->lmaxmax, this->init_vel, this->fixed_axes);
75 delete[] ucell.magnet.start_mag; // mag set here
76 ucell.atom_label.resize(ucell.ntype);
77 ucell.atom_mass.resize(ucell.ntype);
78 ucell.pseudo_fn.resize(ucell.ntype);
79 ucell.pseudo_type.resize(ucell.ntype);
80
81 ucell.orbital_fn.resize(ucell.ntype);
82 ucell.magnet.start_mag = new double[ucell.ntype]; // mag set here
83 ucell.magnet.ux_[0] = 0.0; // ux_ set here
84 ucell.magnet.ux_[1] = 0.0;
85 ucell.magnet.ux_[2] = 0.0;
86 for (int it = 0; it < ucell.ntype; ++it)
87 {
88 ucell.atom_label[it] = this->elements[it];
89 ucell.atom_mass[it] = this->atomic_mass[it];
90 ucell.pseudo_fn[it] = this->pp_files[it];
91 ucell.pseudo_type[it] = this->pp_types[it];
92 ucell.orbital_fn[it] = this->orb_files[it];
93 ucell.magnet.start_mag[it] = 0.0; // mag set here
94 }
95 // lattice info
96 ucell.lat0 = this->lat0;
97 ucell.lat0_angstrom = ucell.lat0 * 0.529177;
98 ucell.tpiba = ModuleBase::TWO_PI / ucell.lat0;
99 ucell.tpiba2 = ucell.tpiba * ucell.tpiba;
100 ucell.latvec.e11 = this->latvec[0];
101 ucell.latvec.e12 = this->latvec[1];
102 ucell.latvec.e13 = this->latvec[2];
103 ucell.latvec.e21 = this->latvec[3];
104 ucell.latvec.e22 = this->latvec[4];
105 ucell.latvec.e23 = this->latvec[5];
106 ucell.latvec.e31 = this->latvec[6];
107 ucell.latvec.e32 = this->latvec[7];
108 ucell.latvec.e33 = this->latvec[8];
109 ucell.a1.x = ucell.latvec.e11;
110 ucell.a1.y = ucell.latvec.e12;
111 ucell.a1.z = ucell.latvec.e13;
112 ucell.a2.x = ucell.latvec.e21;
113 ucell.a2.y = ucell.latvec.e22;
114 ucell.a2.z = ucell.latvec.e23;
115 ucell.a3.x = ucell.latvec.e31;
116 ucell.a3.y = ucell.latvec.e32;
117 ucell.a3.z = ucell.latvec.e33;
118 ucell.GT = ucell.latvec.Inverse();
119 ucell.G = ucell.GT.Transpose();
120 ucell.GGT = ucell.G * ucell.GT;
121 ucell.invGGT = ucell.GGT.Inverse();
122 ucell.omega = std::abs(ucell.latvec.Det()) * (ucell.lat0) * (ucell.lat0) * (ucell.lat0);
123 // atomic info
124 ucell.Coordinate = this->coor_type;
125 ucell.atoms = new Atom[ucell.ntype];
126 ucell.set_atom_flag = true;
127 this->atomic_index = 0;
128 for (int it = 0; it < ucell.ntype; ++it)
129 {
130 ucell.atoms[it].label = this->elements[it];
131 /*
132 ucell.atoms[it].nw = 0;
133 ucell.atoms[it].nwl = 2;
134 delete[] ucell.atoms[it].l_nchi;
135 ucell.atoms[it].l_nchi = new int[ ucell.atoms[it].nwl+1];
136 for(int L=0; L<ucell.atoms[it].nwl+1; L++)
137 {
138 ucell.atoms[it].l_nchi[L] = 1;
139 ucell.atoms[it].nw += (2*L + 1) * ucell.atoms[it].l_nchi[L];
140 }
141 */
142 ucell.atoms[it].na = this->natom[it];
143 // coordinates and related physical quantities
144 ucell.atoms[it].tau.resize(ucell.atoms[it].na);
145 ucell.atoms[it].dis.resize(ucell.atoms[it].na);
146 ucell.atoms[it].taud.resize(ucell.atoms[it].na);
147 ucell.atoms[it].vel.resize(ucell.atoms[it].na);
148 ucell.atoms[it].mag.resize(ucell.atoms[it].na);
149 ucell.atoms[it].angle1.resize(ucell.atoms[it].na);
150 ucell.atoms[it].angle2.resize(ucell.atoms[it].na);
151 ucell.atoms[it].m_loc_.resize(ucell.atoms[it].na);
152 ucell.atoms[it].mbl.resize(ucell.atoms[it].na);
153 ucell.atoms[it].mass = ucell.atom_mass[it]; // mass set here
154 for (int ia = 0; ia < ucell.atoms[it].na; ++ia)
155 {
156 if (ucell.Coordinate == "Direct")
157 {
158 ucell.atoms[it].taud[ia].x = this->coordinates[this->atomic_index * 3 + 0];
159 ucell.atoms[it].taud[ia].y = this->coordinates[this->atomic_index * 3 + 1];
160 ucell.atoms[it].taud[ia].z = this->coordinates[this->atomic_index * 3 + 2];
161 ucell.atoms[it].tau[ia] = ucell.atoms[it].taud[ia] * ucell.latvec;
162 }
163 else if (ucell.Coordinate == "Cartesian")
164 {
165 ucell.atoms[it].tau[ia].x = this->coordinates[this->atomic_index * 3 + 0];
166 ucell.atoms[it].tau[ia].y = this->coordinates[this->atomic_index * 3 + 1];
167 ucell.atoms[it].tau[ia].z = this->coordinates[this->atomic_index * 3 + 2];
169 ucell.atoms[it].tau[ia].y,
170 ucell.atoms[it].tau[ia].z,
171 ucell.latvec.e11,
172 ucell.latvec.e12,
173 ucell.latvec.e13,
174 ucell.latvec.e21,
175 ucell.latvec.e22,
176 ucell.latvec.e23,
177 ucell.latvec.e31,
178 ucell.latvec.e32,
179 ucell.latvec.e33,
180 ucell.atoms[it].taud[ia].x,
181 ucell.atoms[it].taud[ia].y,
182 ucell.atoms[it].taud[ia].z);
183 }
184 ucell.atoms[it].dis[ia].set(0, 0, 0);
185 if (this->init_vel)
186 {
187 ucell.atoms[it].vel[ia].x = this->velocity[this->atomic_index * 3 + 0];
188 ucell.atoms[it].vel[ia].y = this->velocity[this->atomic_index * 3 + 1];
189 ucell.atoms[it].vel[ia].z = this->velocity[this->atomic_index * 3 + 2];
190 }
191 else
192 {
193 ucell.atoms[it].vel[ia].set(0, 0, 0);
194 }
195 ucell.atoms[it].m_loc_[ia].set(0, 0, 0);
196 ucell.atoms[it].angle1[ia] = 0;
197 ucell.atoms[it].angle2[ia] = 0;
198 if (this->selective_dynamics)
199 {
200 ucell.atoms[it].mbl[ia].x = this->mbl[this->atomic_index * 3 + 0];
201 ucell.atoms[it].mbl[ia].y = this->mbl[this->atomic_index * 3 + 1];
202 ucell.atoms[it].mbl[ia].z = this->mbl[this->atomic_index * 3 + 2];
203 }
204 else
205 {
206 ucell.atoms[it].mbl[ia] = {1, 1, 1};
207 }
208 ++(this->atomic_index);
209 }
210 }
211 ucell.nat = this->natom.sum();
212 // set_nw
213 assert(nw.size() == ucell.ntype);
214 for (int it = 0; it < ucell.ntype; ++it)
215 {
216 ucell.atoms[it].nw = nw[it];
217 }
218 // cal_nloc
219 nlocal = 0;
220 for (int it = 0; it < ucell.ntype; ++it)
221 {
222 nlocal += ucell.atoms[it].na * ucell.atoms[it].nw;
223 }
224 // cal_namax
225 int namax = 0;
226 for (int it = 0; it < ucell.ntype; ++it)
227 {
228 namax = std::max(namax, ucell.atoms[it].na);
229 }
230 ucell.namax = namax;
231 // cal_index
232 assert(nlocal > 0);
233 delete[] ucell.iwt2iat;
234 delete[] ucell.iwt2iw;
235 delete[] ucell.iat2it;
236 delete[] ucell.iat2ia;
237 ucell.iwt2iat = new int[nlocal];
238 ucell.iwt2iw = new int[nlocal];
239 ucell.iat2it = new int[ucell.nat];
240 ucell.iat2ia = new int[ucell.nat]; // set_iat2itia
241 ucell.itia2iat.create(ucell.ntype, ucell.namax);
242 ucell.set_iat2iwt(1);
243 int iat = 0;
244 int iwt = 0;
245 for (int it = 0; it < ucell.ntype; it++)
246 {
247 for (int ia = 0; ia < ucell.atoms[it].na; ia++)
248 {
249 ucell.iat2it[iat] = it;
250 ucell.iat2ia[iat] = ia;
251 ucell.itia2iat(it, ia) = iat;
252 for (int iw = 0; iw < ucell.atoms[it].nw; iw++)
253 {
254 ucell.iwt2iat[iwt] = iat;
255 ucell.iwt2iw[iwt] = iw;
256 ++iwt;
257 }
258 ++iat;
259 }
260 }
261 return &ucell;
262 }
263};
264
265UcellTestPrepare::UcellTestPrepare(std::string latname_in,
266 int lmaxmax_in,
267 bool init_vel_in,
268 bool selective_dynamics_in,
269 bool relax_new_in,
270 std::string fixed_axes_in,
271 double lat0_in,
272 std::valarray<double> latvec_in,
273 std::vector<std::string> elements_in,
274 std::vector<std::string> pp_files_in,
275 std::vector<std::string> pp_types_in,
276 std::vector<std::string> orb_files_in,
277 std::valarray<int> natom_in,
278 std::vector<double> atomic_mass_in,
279 std::string coor_type_in,
280 std::valarray<double> coordinates_in):
281 latname(latname_in),
282 lmaxmax(lmaxmax_in),
283 init_vel(init_vel_in),
284 selective_dynamics(selective_dynamics_in),
285 relax_new(relax_new_in),
286 fixed_axes(fixed_axes_in),
287 lat0(lat0_in),
288 latvec(latvec_in),
289 elements(elements_in),
290 pp_files(pp_files_in),
291 pp_types(pp_types_in),
292 orb_files(orb_files_in),
293 natom(natom_in),
294 atomic_mass(atomic_mass_in),
295 coor_type(coor_type_in),
296 coordinates(coordinates_in)
297{
298 mbl = std::valarray<double>(0.0, coordinates_in.size());
299 velocity = std::valarray<double>(0.0, coordinates_in.size());
300}
301
302UcellTestPrepare::UcellTestPrepare(std::string latname_in,
303 int lmaxmax_in,
304 bool init_vel_in,
305 bool selective_dynamics_in,
306 bool relax_new_in,
307 std::string fixed_axes_in,
308 double lat0_in,
309 std::valarray<double> latvec_in,
310 std::vector<std::string> elements_in,
311 std::vector<std::string> pp_files_in,
312 std::vector<std::string> pp_types_in,
313 std::vector<std::string> orb_files_in,
314 std::valarray<int> natom_in,
315 std::vector<double> atomic_mass_in,
316 std::string coor_type_in,
317 std::valarray<double> coordinates_in,
318 std::valarray<double> mbl_in,
319 std::valarray<double> velocity_in):
320 latname(latname_in),
321 lmaxmax(lmaxmax_in),
322 init_vel(init_vel_in),
323 selective_dynamics(selective_dynamics_in),
324 relax_new(relax_new_in),
325 fixed_axes(fixed_axes_in),
326 lat0(lat0_in),
327 latvec(latvec_in),
328 elements(elements_in),
329 pp_files(pp_files_in),
330 pp_types(pp_types_in),
331 orb_files(orb_files_in),
332 natom(natom_in),
333 atomic_mass(atomic_mass_in),
334 coor_type(coor_type_in),
335 coordinates(coordinates_in),
336 mbl(mbl_in),
337 velocity(velocity_in) // velocity assume the existence of mbl in print_stru_file()
338{}
339
341 latname(utp.latname),
342 lmaxmax(utp.lmaxmax),
343 init_vel(utp.init_vel),
344 selective_dynamics(utp.selective_dynamics),
345 relax_new(utp.relax_new),
347 lat0(utp.lat0),
348 latvec(utp.latvec),
349 elements(utp.elements),
350 pp_files(utp.pp_files),
351 pp_types(utp.pp_types),
352 orb_files(utp.orb_files),
353 natom(utp.natom),
354 atomic_mass(utp.atomic_mass),
355 coor_type(utp.coor_type),
356 coordinates(utp.coordinates),
357 mbl(utp.mbl),
358 velocity(utp.velocity) // velocity assume the existence of mbl in print_stru_file()
359{}
360
361std::map<std::string,UcellTestPrepare> UcellTestLib
362{
363 {"Si", UcellTestPrepare(
364 "fcc", //latname
365 2, //lmaxmax
366 true, //init_vel
367 true, //selective_dyanmics
368 true, //relax_new
369 "volume", //fixed_axes
370 10.2, //lat0
371 {-0.5,0.0,0.5, //latvec
372 0.0,0.5,0.5,
373 -0.5,0.5,0.0},
374 {"Si"}, //elements
375 {"Si.upf"}, //upf file
376 {"upf201"}, //upf types
377 {"Si.orb"}, //orb file
378 {2}, //number of each elements
379 {28.0}, //atomic mass
380 "Cartesian", //coordination type
381 {0.0,0.0,0.0, //atomic coordinates
382 0.25,0.25,0.25})}
383};
384#endif
Definition atom_spec.h:7
std::vector< ModuleBase::Vector3< double > > m_loc_
Definition atom_spec.h:48
int na
Definition atom_spec.h:28
std::vector< double > angle2
Definition atom_spec.h:47
int nw
Definition atom_spec.h:23
std::vector< ModuleBase::Vector3< double > > vel
Definition atom_spec.h:39
double mass
Definition atom_spec.h:14
std::string label
Definition atom_spec.h:35
std::vector< ModuleBase::Vector3< double > > dis
Definition atom_spec.h:37
std::vector< ModuleBase::Vector3< double > > taud
Definition atom_spec.h:38
std::vector< double > mag
Definition atom_spec.h:45
std::vector< ModuleBase::Vector3< double > > tau
Definition atom_spec.h:36
std::vector< ModuleBase::Vector3< int > > mbl
Definition atom_spec.h:15
std::vector< double > angle1
Definition atom_spec.h:46
double * start_mag
Definition magnetism.h:16
double ux_[3]
Definition magnetism.h:37
void create(const int d1, const int d2)
Create integer arrays.
Definition intarray.cpp:137
static void Cartesian_to_Direct(const double &cx, const double &cy, const double &cz, const double &R11, const double &R12, const double &R13, const double &R21, const double &R22, const double &R23, const double &R31, const double &R32, const double &R33, double &dx, double &dy, double &dz)
Change Cartesian coordinate (cx,cy,cz) to direct coordinate (dx,dy,dz), (cx,cy,cz) = (dx,...
Definition mathzone.h:126
double e13
Definition matrix3.h:26
Matrix3 Inverse(void) const
Inverse a 3x3 matrix.
Definition matrix3.cpp:44
double e31
Definition matrix3.h:26
double e11
element e_ij: i_row, j_column
Definition matrix3.h:26
double e33
Definition matrix3.h:26
double e32
Definition matrix3.h:26
double e21
Definition matrix3.h:26
double e12
Definition matrix3.h:26
double Det(void) const
Calculate the determinant of a 3x3 matrix.
Definition matrix3.cpp:29
double e23
Definition matrix3.h:26
double e22
Definition matrix3.h:26
Matrix3 Transpose(void) const
Transpose a 3x3 matrix.
Definition matrix3.cpp:39
T x
Definition vector3.h:24
T y
Definition vector3.h:25
T z
Definition vector3.h:26
Definition prepare_unitcell.h:8
std::valarray< double > mbl
Definition prepare_unitcell.h:63
std::vector< std::string > elements
Definition prepare_unitcell.h:55
UcellTestPrepare()=default
UcellTestPrepare(std::string latname_in, int lmaxmax_in, bool init_vel_in, bool selective_dynamics_in, bool relax_new_in, std::string fixed_axes_in, double lat0_in, std::valarray< double > latvec_in, std::vector< std::string > elements_in, std::vector< std::string > pp_files_in, std::vector< std::string > pp_types_in, std::vector< std::string > orb_files_in, std::valarray< int > natom_in, std::vector< double > atomic_mass_in, std::string coor_type_in, std::valarray< double > coordinates_in)
std::vector< std::string > pp_files
Definition prepare_unitcell.h:56
bool relax_new
Definition prepare_unitcell.h:51
std::valarray< double > velocity
Definition prepare_unitcell.h:64
std::valarray< double > coordinates
Definition prepare_unitcell.h:62
std::valarray< double > latvec
Definition prepare_unitcell.h:54
int atomic_index
Definition prepare_unitcell.h:67
std::vector< std::string > orb_files
Definition prepare_unitcell.h:58
UcellTestPrepare(const UcellTestPrepare &utp)
double lat0
Definition prepare_unitcell.h:53
int ntype
Definition prepare_unitcell.h:66
std::vector< double > atomic_mass
Definition prepare_unitcell.h:60
std::valarray< int > natom
Definition prepare_unitcell.h:59
UnitCell * SetUcellInfo(const std::vector< int > &nw, int &nlocal)
Definition prepare_unitcell.h:69
std::string coor_type
Definition prepare_unitcell.h:61
int lmaxmax
Definition prepare_unitcell.h:48
bool selective_dynamics
Definition prepare_unitcell.h:50
std::string fixed_axes
Definition prepare_unitcell.h:52
std::string latname
Definition prepare_unitcell.h:47
bool init_vel
Definition prepare_unitcell.h:49
UcellTestPrepare(std::string latname_in, int lmaxmax_in, bool init_vel_in, bool selective_dynamics_in, bool relax_new_in, std::string fixed_axes_in, double lat0_in, std::valarray< double > latvec_in, std::vector< std::string > elements_in, std::vector< std::string > pp_files_in, std::vector< std::string > pp_types_in, std::vector< std::string > orb_files_in, std::valarray< int > natom_in, std::vector< double > atomic_mass_in, std::string coor_type_in, std::valarray< double > coordinates_in, std::valarray< double > mbl_in, std::valarray< double > velocity_in)
std::vector< std::string > pp_types
Definition prepare_unitcell.h:57
Definition unitcell.h:16
int *& iat2it
Definition unitcell.h:47
Atom * atoms
Definition unitcell.h:18
ModuleBase::Matrix3 & GT
Definition unitcell.h:40
double & lat0
Definition unitcell.h:28
std::vector< std::string > orbital_fn
Definition unitcell.h:206
ModuleBase::Matrix3 & latvec
Definition unitcell.h:35
Magnetism magnet
Definition unitcell.h:21
int *& iwt2iw
Definition unitcell.h:50
int & ntype
Definition unitcell.h:45
double & tpiba
Definition unitcell.h:30
double & tpiba2
Definition unitcell.h:31
void set_iat2iwt(const int &npol_in)
Definition mock_unitcell.cpp:11
ModuleBase::IntArray & itia2iat
Definition unitcell.h:51
int & nat
Definition unitcell.h:46
double & omega
Definition unitcell.h:32
ModuleBase::Matrix3 & GGT
Definition unitcell.h:41
ModuleBase::Vector3< double > & a2
Definition unitcell.h:36
ModuleBase::Vector3< double > & a3
Definition unitcell.h:36
bool set_atom_flag
Definition unitcell.h:20
std::vector< std::string > atom_label
Definition unitcell.h:202
std::string & Coordinate
Definition unitcell.h:26
int *& iat2ia
Definition unitcell.h:48
std::vector< std::string > pseudo_fn
Definition unitcell.h:203
ModuleBase::Matrix3 & invGGT
Definition unitcell.h:42
ModuleBase::Vector3< double > & a1
Definition unitcell.h:36
ModuleBase::Matrix3 & G
Definition unitcell.h:39
void setup(const std::string &latname_in, const int &ntype_in, const int &lmaxmax_in, const bool &init_vel_in, const std::string &fixed_axes_in)
Definition mock_unitcell.cpp:31
int *& iwt2iat
Definition unitcell.h:49
std::vector< std::string > pseudo_type
Definition unitcell.h:204
double & lat0_angstrom
Definition unitcell.h:29
std::vector< double > atom_mass
Definition unitcell.h:201
int & namax
Definition unitcell.h:52
std::string fixed_axes
Definition for_testing_input_conv.h:105
void init_vel(const UnitCell &unit_in, const int &my_rank, const bool &restart, double &temperature, double *allmass, int &frozen_freedom, ModuleBase::Vector3< int > *ionmbl, ModuleBase::Vector3< double > *vel)
initialize the atomic velocities
Definition md_func.cpp:186
const double TWO_PI
Definition constants.h:21
std::map< std::string, UcellTestPrepare > UcellTestLib
Definition prepare_unitcell.h:306