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
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.orbital_fn;
76 delete[] ucell.magnet.start_magnetization; // mag set here
77 ucell->atom_label.resize(ucell->ntype);
78 ucell->atom_mass.resize(ucell->ntype);
79 ucell->pseudo_fn.resize(ucell->ntype);
80 ucell->pseudo_type.resize(ucell->ntype);
81
82 ucell.orbital_fn.resize(ucell.ntype);
83 ucell.magnet.start_magnetization = new double[ucell.ntype]; // mag set here
84 ucell.magnet.ux_[0] = 0.0; // ux_ set here
85 ucell.magnet.ux_[1] = 0.0;
86 ucell.magnet.ux_[2] = 0.0;
87 for (int it = 0; it < ucell.ntype; ++it)
88 {
89 ucell.atom_label[it] = this->elements[it];
90 ucell.atom_mass[it] = this->atomic_mass[it];
91 ucell.pseudo_fn[it] = this->pp_files[it];
92 ucell.pseudo_type[it] = this->pp_types[it];
93 ucell.orbital_fn[it] = this->orb_files[it];
94 ucell.magnet.start_magnetization[it] = 0.0; // mag set here
95 }
96 // lattice info
97 ucell.lat0 = this->lat0;
98 ucell.lat0_angstrom = ucell.lat0 * 0.529177;
99 ucell.tpiba = ModuleBase::TWO_PI / ucell.lat0;
100 ucell.tpiba2 = ucell.tpiba * ucell.tpiba;
101 ucell.latvec.e11 = this->latvec[0];
102 ucell.latvec.e12 = this->latvec[1];
103 ucell.latvec.e13 = this->latvec[2];
104 ucell.latvec.e21 = this->latvec[3];
105 ucell.latvec.e22 = this->latvec[4];
106 ucell.latvec.e23 = this->latvec[5];
107 ucell.latvec.e31 = this->latvec[6];
108 ucell.latvec.e32 = this->latvec[7];
109 ucell.latvec.e33 = this->latvec[8];
110 ucell.a1.x = ucell.latvec.e11;
111 ucell.a1.y = ucell.latvec.e12;
112 ucell.a1.z = ucell.latvec.e13;
113 ucell.a2.x = ucell.latvec.e21;
114 ucell.a2.y = ucell.latvec.e22;
115 ucell.a2.z = ucell.latvec.e23;
116 ucell.a3.x = ucell.latvec.e31;
117 ucell.a3.y = ucell.latvec.e32;
118 ucell.a3.z = ucell.latvec.e33;
119 ucell.GT = ucell.latvec.Inverse();
120 ucell.G = ucell.GT.Transpose();
121 ucell.GGT = ucell.G * ucell.GT;
122 ucell.invGGT = ucell.GGT.Inverse();
123 ucell.omega = std::abs(ucell.latvec.Det()) * (ucell.lat0) * (ucell.lat0) * (ucell.lat0);
124 // atomic info
125 ucell.Coordinate = this->coor_type;
126 ucell.atoms = new Atom[ucell.ntype];
127 ucell.set_atom_flag = true;
128 this->atomic_index = 0;
129 for (int it = 0; it < ucell.ntype; ++it)
130 {
131 ucell.atoms[it].label = this->elements[it];
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 ucell.atoms[it].na = this->natom[it];
142 // coordinates and related physical quantities
143 delete[] ucell.atoms[it].tau;
144 delete[] ucell.atoms[it].dis;
145 delete[] ucell.atoms[it].taud;
146 delete[] ucell.atoms[it].vel;
147 delete[] ucell.atoms[it].mag;
148 delete[] ucell.atoms[it].angle1;
149 delete[] ucell.atoms[it].angle2;
150 delete[] ucell.atoms[it].m_loc_;
151 delete[] ucell.atoms[it].mbl;
152 ucell.atoms[it].tau = new ModuleBase::Vector3<double>[ucell.atoms[it].na];
153 ucell.atoms[it].dis = new ModuleBase::Vector3<double>[ucell.atoms[it].na];
154 ucell.atoms[it].taud = new ModuleBase::Vector3<double>[ucell.atoms[it].na];
155 ucell.atoms[it].vel = new ModuleBase::Vector3<double>[ucell.atoms[it].na];
156 ucell.atoms[it].mag = new double[ucell.atoms[it].na];
157 ucell.atoms[it].angle1 = new double[ucell.atoms[it].na];
158 ucell.atoms[it].angle2 = new double[ucell.atoms[it].na];
159 ucell.atoms[it].m_loc_ = new ModuleBase::Vector3<double>[ucell.atoms[it].na];
160 ucell.atoms[it].mbl = new ModuleBase::Vector3<int>[ucell.atoms[it].na];
161 ucell.atoms[it].mass = ucell.atom_mass[it]; // mass set here
162 for (int ia = 0; ia < ucell.atoms[it].na; ++ia)
163 {
164 if (ucell.Coordinate == "Cartesian")
165 {
166 ucell.atoms[it].tau[ia].x = this->coordinates[this->atomic_index * 3 + 0];
167 ucell.atoms[it].tau[ia].y = this->coordinates[this->atomic_index * 3 + 1];
168 ucell.atoms[it].tau[ia].z = this->coordinates[this->atomic_index * 3 + 2];
170 ucell.atoms[it].tau[ia].y,
171 ucell.atoms[it].tau[ia].z,
172 ucell.latvec.e11,
173 ucell.latvec.e12,
174 ucell.latvec.e13,
175 ucell.latvec.e21,
176 ucell.latvec.e22,
177 ucell.latvec.e23,
178 ucell.latvec.e31,
179 ucell.latvec.e32,
180 ucell.latvec.e33,
181 ucell.atoms[it].taud[ia].x,
182 ucell.atoms[it].taud[ia].y,
183 ucell.atoms[it].taud[ia].z);
184 }
185 ucell.atoms[it].dis[ia].set(0, 0, 0);
186 ucell.atoms[it].vel[ia].set(0, 0, 0);
187 ucell.atoms[it].m_loc_[ia].set(0, 0, 0);
188 ucell.atoms[it].angle1[ia] = 0;
189 ucell.atoms[it].angle2[ia] = 0;
190 ucell.atoms[it].mbl[ia] = {1, 1, 1};
191 ++(this->atomic_index);
192 }
193 }
194 ucell.nat = this->natom.sum();
195 return &ucell;
196 }
197};
198
199UcellTestPrepare::UcellTestPrepare(std::string latname_in,
200 int lmaxmax_in,
201 bool init_vel_in,
202 bool selective_dynamics_in,
203 bool relax_new_in,
204 std::string fixed_axes_in,
205 double lat0_in,
206 std::valarray<double> latvec_in,
207 std::vector<std::string> elements_in,
208 std::vector<std::string> pp_files_in,
209 std::vector<std::string> pp_types_in,
210 std::vector<std::string> orb_files_in,
211 std::valarray<int> natom_in,
212 std::vector<double> atomic_mass_in,
213 std::string coor_type_in,
214 std::valarray<double> coordinates_in):
215 latname(latname_in),
216 lmaxmax(lmaxmax_in),
217 init_vel(init_vel_in),
218 selective_dynamics(selective_dynamics_in),
219 relax_new(relax_new_in),
220 fixed_axes(fixed_axes_in),
221 lat0(lat0_in),
222 latvec(latvec_in),
223 elements(elements_in),
224 pp_files(pp_files_in),
225 pp_types(pp_types_in),
226 orb_files(orb_files_in),
227 natom(natom_in),
228 atomic_mass(atomic_mass_in),
229 coor_type(coor_type_in),
230 coordinates(coordinates_in)
231{
232 mbl = {0};
233 velocity = {0};
234}
235
237 latname(utp.latname),
238 lmaxmax(utp.lmaxmax),
239 init_vel(utp.init_vel),
240 selective_dynamics(utp.selective_dynamics),
241 relax_new(utp.relax_new),
243 lat0(utp.lat0),
244 latvec(utp.latvec),
245 elements(utp.elements),
246 pp_files(utp.pp_files),
247 pp_types(utp.pp_types),
248 orb_files(utp.orb_files),
249 natom(utp.natom),
250 atomic_mass(utp.atomic_mass),
251 coor_type(utp.coor_type),
252 coordinates(utp.coordinates),
253 mbl(utp.mbl),
254 velocity(utp.velocity) // velocity assume the existence of mbl in print_stru_file()
255{}
256
257std::map<std::string,UcellTestPrepare> UcellTestLib
258{
259 {"SiO", UcellTestPrepare(
260 "fcc", //latname
261 2, //lmaxmax
262 false, //init_vel
263 false, //selective_dyanmics
264 false, //relax_new
265 "volume", //fixed_axes
266 10.2, //lat0
267 {-0.5,0.0,0.5, //latvec
268 0.0,0.5,0.5,
269 -0.5,0.5,0.0},
270 {"O","Si"}, //elements
271 {"O.upf","Si.upf"}, //upf file
272 {"upf201","upf201"}, //upf types
273 {"O.orb","Si.orb"}, //orb file
274 {1,5}, //number of each elements
275 {16.0,28.0}, //atomic mass
276 "Cartesian", //coordination type
277 {0.0,0.0,0.0, //atomic coordinates
278 0.1,0.0,0.0, //atomic coordinates
279 0.2,0.0,0.0, //atomic coordinates
280 0.3,0.0,0.0, //atomic coordinates
281 0.4,0.0,0.0, //atomic coordinates
282 0.25,0.25,0.25})}
283};
284#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
int nwl
Definition atom_spec.h:30
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< int > l_nchi
Definition atom_spec.h:32
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 ux_[3]
Definition magnetism.h:37
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
3 elements vector
Definition vector3.h:22
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)
UnitCell * SetUcellInfo()
Definition prepare_unitcell.h:69
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
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
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 & ntype
Definition unitcell.h:45
double & tpiba
Definition unitcell.h:30
double & tpiba2
Definition unitcell.h:31
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
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
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
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