2006-09-22 00:22:34 +08:00
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
:link(lws,http://lammps.sandia.gov)
:link(ld,Manual.html)
:link(lc,Section_commands.html#comm)
:line
create_box command :h3
[Syntax:]
2013-12-17 23:12:58 +08:00
create_box N region-ID keyword value ... :pre
N = # of atom types to use in this simulation :ulb,l
region-ID = ID of region to use as simulation domain :l
zero or more keyword/value pairs may be appended :l
keyword = {bond types} or {angle types} or {dihedral types} or {improper types} or {extra bond per atom} or {extra angle per atom} or {extra dihedral per atom} or {extra improper per atom} :l
{bond types} value = # of bond types
{angle types} value = # of angle types
{dihedral types} value = # of dihedral types
{improper types} value = # of improper types
{extra bond per atom} value = # of bonds per atom
{extra angle per atom} value = # of angles per atom
{extra dihedral per atom} value = # of dihedrals per atom
{extra improper per atom} value = # of impropers per atom :pre
:ule
2006-09-22 00:22:34 +08:00
[Examples:]
2013-12-17 23:12:58 +08:00
create_box 2 mybox
create_box 2 mybox "bond types" 2 "extra bond per atom" 1 :pre
2006-09-22 00:22:34 +08:00
[Description:]
2007-03-08 09:01:08 +08:00
This command creates a simulation box based on the specified region.
Thus a "region"_region.html command must first be used to define a
geometric domain.
2006-09-22 00:22:34 +08:00
The argument N is the number of atom types that will be used in the
simulation.
2007-03-08 09:01:08 +08:00
If the region is not of style {prism}, then LAMMPS encloses the region
2010-10-15 07:23:43 +08:00
(block, sphere, etc) with an axis-aligned orthogonal bounding box
which becomes the simulation domain.
2007-03-08 09:01:08 +08:00
If the region is of style {prism}, LAMMPS creates a non-orthogonal
simulation domain shaped as a parallelepiped with triclinic symmetry.
2010-10-15 07:23:43 +08:00
As defined by the "region prism"_region.html command, the
parallelepiped has its "origin" at (xlo,ylo,zlo) and is defined by 3
edge vectors starting from the origin given by A = (xhi-xlo,0,0); B =
(xy,yhi-ylo,0); C = (xz,yz,zhi-zlo). {Xy,xz,yz} can be 0.0 or
positive or negative values and are called "tilt factors" because they
are the amount of displacement applied to faces of an originally
orthogonal box to transform it into the parallelipiped.
A {prism} region used with the create_box command must have tilt
factors (xy,xz,yz) that do not skew the box more than half the
distance of the parallel box length. For example, if xlo = 2 and xhi
= 12, then the x box length is 10 and the xy tilt factor must be
between -5 and 5. Similarly, both xz and yz must be between
-(xhi-xlo)/2 and +(yhi-ylo)/2. Note that this is not a limitation,
since if the maximum tilt factor is 5 (as in this example), then
configurations with tilt = ..., -15, -5, 5, 15, 25, ... are all
geometrically equivalent.
2011-12-14 04:43:36 +08:00
See "Section_howto 12"_Section_howto.html#howto_12 of the doc pages
for a geometric description of triclinic boxes, as defined by LAMMPS,
and how to transform these parameters to and from other commonly used
2010-10-15 07:31:42 +08:00
triclinic representations.
2007-03-08 09:01:08 +08:00
When a prism region is used, the simulation domain must be periodic in
2007-04-02 22:26:01 +08:00
any dimensions with a non-zero tilt factor, as defined by the
"boundary"_boundary.html command. I.e. if the xy tilt factor is
non-zero, then both the x and y dimensions must be periodic.
Similarly, x and z must be periodic if xz is non-zero and y and z must
2010-10-15 07:23:43 +08:00
be periodic if yz is non-zero. Also note that if your simulation will
tilt the box, e.g. via the "fix deform"_fix_deform.html command, the
simulation box must be defined as triclinic, even if the tilt factors
are initially 0.0.
2007-03-08 09:01:08 +08:00
2010-10-06 00:12:36 +08:00
IMPORTANT NOTE: If the system is non-periodic (in a dimension), then
you should not make the lo/hi box dimensions (as defined in your
"region"_region.html command) radically smaller/larger than the extent
of the atoms you eventually plan to create, e.g. via the
"create_atoms"_create_atoms.html command. For example, if your atoms
extend from 0 to 50, you should not specify the box bounds as -10000
and 10000. This is because LAMMPS uses the specified box size to
layout the 3d grid of processors. A huge (mostly empty) box will be
sub-optimal for performance when using "fixed" boundary conditions
(see the "boundary"_boundary.html command). When using "shrink-wrap"
boundary conditions (see the "boundary"_boundary.html command), a huge
(mostly empty) box may cause a parallel simulation to lose atoms the
first time that LAMMPS shrink-wraps the box around the atoms.
2013-12-17 23:12:58 +08:00
:line
The optional keywords can be used to create a system that allows for
bond (angle, dihedral, improper) interactions to be added later,
similar to the way they would be specified in a data file. Note that
if these keywords are not used, then the create_box command creates an
atomic (non-molecular) simulation that does not allow bonds between
pairs of atoms to be defined or a "bond potential"_bond_style.html to
be specified.
As an example, see the examples/deposit/in.deposit.mol script, which
deposits molecules onto a substrate. Initially there are no molecules
in the system, but they are added later by the "fix
deposit"_fix_deposit.html command. The create_box command is used in
the script with the "bond types" and "extra bond per atom" keywords to
2013-12-17 23:14:03 +08:00
allow this.
2013-12-17 23:12:58 +08:00
The keywords that can be specified are listed above. Note that each
is a multi-word keyword which must be specified as a single argument.
This means the keyword must be enclosed in quotes, as in the example
above.
:line
2006-09-22 00:22:34 +08:00
[Restrictions:]
An "atom_style"_atom_style.html and "region"_region.html must have
been previously defined to use this command.
[Related commands:]
2013-12-17 23:12:58 +08:00
"read_data"_read_data.html, "create_atoms"_create_atoms.html,
"region"_region.html
2006-09-22 00:22:34 +08:00
[Default:] none