本文整理汇总了C++中Molecule::Shift方法的典型用法代码示例。如果您正苦于以下问题:C++ Molecule::Shift方法的具体用法?C++ Molecule::Shift怎么用?C++ Molecule::Shift使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Molecule
的用法示例。
在下文中一共展示了Molecule::Shift方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: UnitCellToSlab
// Makes a repeating slab out of a single unit cell by creating copies and shifting
Mol_ptr_vec UnitCellToSlab (GridParams& params) {
std::vector<Molecule *> mols;
Molecule * uc = params.unitCell;
VecR yshift, xshift, zshift;
yshift.Zero();
for (int i = 0; i < params.y; i++) {
zshift.Zero();
for (int j = 0; j < params.x; j++) {
xshift.Zero();
if (!(j % 2))
xshift += params.x_shift * 0.5;
for (int k = 0; k < params.z; k++) {
// make a copy of the unitcell
Molecule * copy = new Molecule();
copy->Name(params.name);
// make copies of all the atoms in the unitcell
for (Atom_it atom_i = uc->begin(); atom_i != uc->end(); atom_i++) {
//for (int atom = 0; atom < uc->size(); atom++) {
Atom * pa = new Atom (*(*atom_i));
copy->AddAtom(pa);
}
// shift the new copy to the next lattice point
copy->Shift(yshift + xshift + zshift);
mols.push_back(copy);
xshift += params.x_shift;
}
zshift += params.z_shift;
}
yshift += params.y_shift;
}
return mols;
}
示例2: UnitCellToSlab
// Makes a repeating slab out of a single unit cell by creating copies and shifting
Mol_ptr_vec UnitCellToSlab (Molecule * uc, VecR& x_shift,VecR& y_shift, VecR& z_shift) {
std::vector<Molecule *> mols;
VecR yshift, xshift, zshift;
for (int i = 0; i < 1; i++) {
zshift.Zero();
yshift.Zero();
for (int j = 0; j < 6; j++) {
xshift.Zero();
for (int k = 0; k < 6; k++) {
// make a copy of the unitcell
Molecule * copy = new Molecule();
copy->Name("qtz");
// make copies of all the atoms in the unitcell
for (int atom = 0; atom < uc->size(); atom++) {
Atom * pa = new Atom (*uc->Atoms(atom));
copy->AddAtom(pa);
}
// shift the new copy to the next lattice point
copy->Shift(yshift + xshift + zshift);
mols.push_back(copy);
xshift += x_shift;
}
yshift += y_shift;
}
zshift += z_shift;
}
return mols;
}