Merge branch 'develop' into dielectric-updates
This commit is contained in:
22
src/set.cpp
22
src/set.cpp
@ -780,11 +780,10 @@ void Set::set(int keyword)
|
||||
|
||||
// loop over selected atoms
|
||||
|
||||
AtomVecEllipsoid *avec_ellipsoid =
|
||||
(AtomVecEllipsoid *) atom->style_match("ellipsoid");
|
||||
AtomVecLine *avec_line = (AtomVecLine *) atom->style_match("line");
|
||||
AtomVecTri *avec_tri = (AtomVecTri *) atom->style_match("tri");
|
||||
AtomVecBody *avec_body = (AtomVecBody *) atom->style_match("body");
|
||||
auto avec_ellipsoid = dynamic_cast<AtomVecEllipsoid *>( atom->style_match("ellipsoid"));
|
||||
auto avec_line = dynamic_cast<AtomVecLine *>( atom->style_match("line"));
|
||||
auto avec_tri = dynamic_cast<AtomVecTri *>( atom->style_match("tri"));
|
||||
auto avec_body = dynamic_cast<AtomVecBody *>( atom->style_match("body"));
|
||||
|
||||
int nlocal = atom->nlocal;
|
||||
for (int i = 0; i < nlocal; i++) {
|
||||
@ -1084,17 +1083,16 @@ void Set::setrandom(int keyword)
|
||||
{
|
||||
int i;
|
||||
|
||||
AtomVecEllipsoid *avec_ellipsoid =
|
||||
(AtomVecEllipsoid *) atom->style_match("ellipsoid");
|
||||
AtomVecLine *avec_line = (AtomVecLine *) atom->style_match("line");
|
||||
AtomVecTri *avec_tri = (AtomVecTri *) atom->style_match("tri");
|
||||
AtomVecBody *avec_body = (AtomVecBody *) atom->style_match("body");
|
||||
auto avec_ellipsoid = dynamic_cast<AtomVecEllipsoid *>( atom->style_match("ellipsoid"));
|
||||
auto avec_line = dynamic_cast<AtomVecLine *>( atom->style_match("line"));
|
||||
auto avec_tri = dynamic_cast<AtomVecTri *>( atom->style_match("tri"));
|
||||
auto avec_body = dynamic_cast<AtomVecBody *>( atom->style_match("body"));
|
||||
|
||||
double **x = atom->x;
|
||||
int seed = ivalue;
|
||||
|
||||
RanPark *ranpark = new RanPark(lmp,1);
|
||||
RanMars *ranmars = new RanMars(lmp,seed + comm->me);
|
||||
auto ranpark = new RanPark(lmp,1);
|
||||
auto ranmars = new RanMars(lmp,seed + comm->me);
|
||||
|
||||
// set approx fraction of atom types to newtype
|
||||
|
||||
|
||||
Reference in New Issue
Block a user