2006-09-28 03:51:33 +08:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
2007-01-30 08:22:05 +08:00
|
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
|
|
Steve Plimpton, sjplimp@sandia.gov
|
2006-09-28 03:51:33 +08:00
|
|
|
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
|
|
|
certain rights in this software. This software is distributed under
|
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#include "stdlib.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "create_box.h"
|
|
|
|
#include "atom.h"
|
|
|
|
#include "force.h"
|
|
|
|
#include "domain.h"
|
|
|
|
#include "region.h"
|
2007-03-08 08:54:02 +08:00
|
|
|
#include "region_prism.h"
|
2006-09-28 03:51:33 +08:00
|
|
|
#include "comm.h"
|
|
|
|
#include "update.h"
|
|
|
|
#include "error.h"
|
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
CreateBox::CreateBox(LAMMPS *lmp) : Pointers(lmp) {}
|
|
|
|
|
2006-09-28 03:51:33 +08:00
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void CreateBox::command(int narg, char **arg)
|
|
|
|
{
|
2011-09-24 02:06:55 +08:00
|
|
|
if (narg != 2) error->all(FLERR,"Illegal create_box command");
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-01-30 08:22:05 +08:00
|
|
|
if (domain->box_exist)
|
2011-09-24 02:06:55 +08:00
|
|
|
error->all(FLERR,"Cannot create_box after simulation box is defined");
|
2007-06-23 00:59:17 +08:00
|
|
|
if (domain->dimension == 2 && domain->zperiodic == 0)
|
2011-09-24 02:06:55 +08:00
|
|
|
error->all(FLERR,"Cannot run 2d simulation with nonperiodic Z dimension");
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-03-08 08:54:02 +08:00
|
|
|
domain->box_exist = 1;
|
|
|
|
|
2007-06-20 21:17:59 +08:00
|
|
|
// region check
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-06-20 21:17:59 +08:00
|
|
|
int iregion = domain->find_region(arg[1]);
|
2011-09-24 02:06:55 +08:00
|
|
|
if (iregion == -1) error->all(FLERR,"Create_box region ID does not exist");
|
2010-01-09 06:54:13 +08:00
|
|
|
if (domain->regions[iregion]->bboxflag == 0)
|
2011-09-24 02:06:55 +08:00
|
|
|
error->all(FLERR,"Create_box region does not support a bounding box");
|
2006-09-28 03:51:33 +08:00
|
|
|
|
2007-03-08 08:54:02 +08:00
|
|
|
// if region not prism:
|
|
|
|
// setup orthogonal domain
|
|
|
|
// set simulation domain from region extent
|
|
|
|
// if region is prism:
|
|
|
|
// seutp triclinic domain
|
|
|
|
// set simulation domain params from prism params
|
|
|
|
|
|
|
|
if (strcmp(domain->regions[iregion]->style,"prism") != 0) {
|
2007-06-28 04:46:49 +08:00
|
|
|
domain->triclinic = 0;
|
2007-03-16 07:38:38 +08:00
|
|
|
domain->boxlo[0] = domain->regions[iregion]->extent_xlo;
|
|
|
|
domain->boxhi[0] = domain->regions[iregion]->extent_xhi;
|
|
|
|
domain->boxlo[1] = domain->regions[iregion]->extent_ylo;
|
|
|
|
domain->boxhi[1] = domain->regions[iregion]->extent_yhi;
|
|
|
|
domain->boxlo[2] = domain->regions[iregion]->extent_zlo;
|
|
|
|
domain->boxhi[2] = domain->regions[iregion]->extent_zhi;
|
2007-03-08 08:54:02 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
domain->triclinic = 1;
|
|
|
|
RegPrism *region = (RegPrism *) domain->regions[iregion];
|
2007-03-16 07:38:38 +08:00
|
|
|
domain->boxlo[0] = region->xlo;
|
|
|
|
domain->boxhi[0] = region->xhi;
|
|
|
|
domain->boxlo[1] = region->ylo;
|
|
|
|
domain->boxhi[1] = region->yhi;
|
|
|
|
domain->boxlo[2] = region->zlo;
|
|
|
|
domain->boxhi[2] = region->zhi;
|
2007-03-08 08:54:02 +08:00
|
|
|
domain->xy = region->xy;
|
|
|
|
domain->xz = region->xz;
|
|
|
|
domain->yz = region->yz;
|
2006-09-28 03:51:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// if molecular, zero out topology info
|
|
|
|
|
|
|
|
if (atom->molecular) {
|
|
|
|
atom->bond_per_atom = 0;
|
|
|
|
atom->angle_per_atom = 0;
|
|
|
|
atom->dihedral_per_atom = 0;
|
|
|
|
atom->improper_per_atom = 0;
|
|
|
|
atom->nbonds = 0;
|
|
|
|
atom->nangles = 0;
|
|
|
|
atom->ndihedrals = 0;
|
|
|
|
atom->nimpropers = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set atom and topology type quantities
|
|
|
|
|
|
|
|
atom->ntypes = atoi(arg[0]);
|
|
|
|
atom->nbondtypes = 0;
|
|
|
|
atom->nangletypes = 0;
|
|
|
|
atom->ndihedraltypes = 0;
|
|
|
|
atom->nimpropertypes = 0;
|
|
|
|
|
|
|
|
// problem setup using info from header
|
2007-01-30 08:22:05 +08:00
|
|
|
// no call to atom->grow since create_atoms or fixes will do it
|
2006-09-28 03:51:33 +08:00
|
|
|
|
|
|
|
update->ntimestep = 0;
|
|
|
|
|
|
|
|
atom->allocate_type_arrays();
|
|
|
|
|
2007-03-08 08:54:02 +08:00
|
|
|
domain->print_box("Created ");
|
2006-09-28 03:51:33 +08:00
|
|
|
domain->set_initial_box();
|
|
|
|
domain->set_global_box();
|
|
|
|
comm->set_procs();
|
|
|
|
domain->set_local_box();
|
|
|
|
}
|