diff --git a/doc/atom_style.html b/doc/atom_style.html index 355f42c6a1..85690fb039 100644 --- a/doc/atom_style.html +++ b/doc/atom_style.html @@ -75,14 +75,22 @@ styles discussed below. They assign mass on a per-atom basis. particles.

For the sphere style, the particles are spheres and each stores a -per-particle diameter and mass. For the ellipsoid style, the -particles are ellipsoids and each stores a per-particle shape vector -with the 3 diamters of the ellipsoid. For the electron style, the -particles representing electrons are 3d Gaussians with a specified -position and bandwidth or uncertainty in position, which is -represented by the eradius = electron size. For the peri style, the -particles are spherical and each stores a per-particle mass and -volume. +per-particle diameter and mass. If the diameter > 0.0, the particle +is a finite-size sphere. If the diameter = 0.0, it is a point +particle. +

+

For the ellipsoid style, the particles are ellipsoids and each +stores a flag which indicates whether it is a finite-size ellipsoid or +a point particle. If it is an ellipsoid, it also stores a shape +vector with the 3 diamters of the ellipsoid and a quaternion 4-vector +with its orientation. +

+

For the electron style, the particles representing electrons are 3d +Gaussians with a specified position and bandwidth or uncertainty in +position, which is represented by the eradius = electron size. +

+

For the peri style, the particles are spherical and each stores a +per-particle mass and volume.


diff --git a/doc/create_atoms.html b/doc/create_atoms.html index e8a7df4ba6..30ae86cb05 100644 --- a/doc/create_atoms.html +++ b/doc/create_atoms.html @@ -148,7 +148,7 @@ to change these values. -

Note that this means the sphere and ellipsoid atom styles set the -diameter/shape and density to 1.0 and thus calculates a mass for the -particle, which is PI/6 * diameter^3 = 0.5236. The peri style sets -the volume and density to 1.0 and thus also set the mass for the -particle to 1.0. +

Note that the sphere atom style sets the default particle diameter +to 1.0 as well as the density. This means the mass for the particle +is not 1.0, but is PI/6 * diameter^3 = 0.5236. +

+

Note that the ellipsoid atom style sets the default particle shape +to (0.0 0.0 0.0) and the density to 1.0 which means it is a point +particle, not an ellipsoid, and has a mass of 1.0. +

+

Note that the peri style sets the default volume and density to 1.0 +and thus also set the mass for the particle to 1.0. +

+

The set command can be used to override many of these +default settings.

Restrictions:

diff --git a/doc/dump.html b/doc/dump.html index 0b155e3514..418f4996b5 100644 --- a/doc/dump.html +++ b/doc/dump.html @@ -51,9 +51,7 @@ vx, vy, vz, fx, fy, fz, q, mux, muy, muz, mu, radius, omegax, omegay, omegaz, - angmomx, angmomy, angmomz, - shapex,shapey, shapez, - quatw, quati, quatj, quatk, tqx, tqy, tqz, + angmomx, angmomy, angmomz, tqx, tqy, tqz, spin, eradius, ervel, erforce, c_ID, c_ID[N], f_ID, f_ID[N], v_name @@ -73,8 +71,6 @@ radius = radius of spherical particle omegax,omegay,omegaz = angular velocity of extended particle angmomx,angmomy,angmomz = angular momentum of extended particle - shapex,shapey,shapez = 3 diameters of ellipsoidal particle - quatw,quati,quatj,quatk = quaternion components for aspherical particles tqx,tqy,tqz = torque on extended particles spin = electron spin eradius = electron radius @@ -426,15 +422,6 @@ quantity. extended aspherical particles that have an angular momentum. Only the ellipsoid atom style defines this quantity.

-

The shapex, shapey, and shapez attributes are specific to -extended ellipsoidal particles that have a finite size and shape, such -those defined with an atom style of ellipsoidal. -

-

The quatw, quati, quatj, quatk attributes are for aspherical -particles defined with an atom style of ellipsoid. They are the -components of the quaternion that defines the orientation of the -particle. -

The tqx, tqy, tqz attributes are for extended spherical or aspherical particles that can sustain a rotational torque due to interactions with other particles. diff --git a/doc/dump_image.html b/doc/dump_image.html index 82826a4fd6..a700b3e8e0 100644 --- a/doc/dump_image.html +++ b/doc/dump_image.html @@ -11,6 +11,9 @@

dump image command

+

NOTE: The dump image command has not yet been released as part of +LAMMPS. +

Syntax:

dump ID group-ID image N file keyword value ... 
diff --git a/doc/dump_image.txt b/doc/dump_image.txt
index 324ba2d7a7..80153f265b 100644
--- a/doc/dump_image.txt
+++ b/doc/dump_image.txt
@@ -8,6 +8,9 @@
 
 dump image command :h3
 
+NOTE: The dump image command has not yet been released as part of
+LAMMPS.
+
 [Syntax:]
 
 dump ID group-ID image N file keyword value ... :pre
diff --git a/doc/dump_modify.html b/doc/dump_modify.html
index aad55efb16..c4a2f9c46b 100644
--- a/doc/dump_modify.html
+++ b/doc/dump_modify.html
@@ -11,6 +11,9 @@
 
 

dump_modify command

+

NOTE: This options relevant for the dump image command have not yet +been released as part of LAMMPS. +

Syntax:

dump_modify dump-ID keyword values ... 
@@ -99,8 +102,6 @@ dump_modify xtcdump precision 10000
 dump_modify 1 every 1000
 dump_modify 1 every v_myVar 
 
-

NOTE: add some image examples -

Description:

Modify the parameters of a previously defined dump command. Not all diff --git a/doc/dump_modify.txt b/doc/dump_modify.txt index 081a252ec6..715775d416 100644 --- a/doc/dump_modify.txt +++ b/doc/dump_modify.txt @@ -8,6 +8,9 @@ dump_modify command :h3 +NOTE: This options relevant for the dump image command have not yet +been released as part of LAMMPS. + [Syntax:] dump_modify dump-ID keyword values ... :pre @@ -92,8 +95,6 @@ dump_modify xtcdump precision 10000 dump_modify 1 every 1000 dump_modify 1 every v_myVar :pre -NOTE: add some image examples - [Description:] Modify the parameters of a previously defined dump command. Not all diff --git a/doc/fix_store_state.html b/doc/fix_store_state.html index 0d1ad87faf..210a552d28 100644 --- a/doc/fix_store_state.html +++ b/doc/fix_store_state.html @@ -28,8 +28,7 @@ vx, vy, vz, fx, fy, fz, q, mux, muy, muz, radius, omegax, omegay, omegaz, - angmomx, angmomy, angmomz, - quatw, quati, quatj, quatk, tqx, tqy, tqz + angmomx, angmomy, angmomz, tqx, tqy, tqz c_ID, c_ID[N], f_ID, f_ID[N], v_name

      id = atom ID
@@ -47,7 +46,6 @@
       radius = radius of extended spherical particle
       omegax,omegay,omegaz = angular velocity of extended particle
       angmomx,angmomy,angmomz = angular momentum of extended particle
-      quatw,quati,quatj,quatk = quaternion components for aspherical particles
       tqx,tqy,tqz = torque on extended particles
       c_ID = per-atom vector calculated by a compute with ID
       c_ID[I] = Ith column of per-atom array calculated by a compute with ID
diff --git a/doc/read_data.html b/doc/read_data.html
index 136b3b0398..af3d2c5700 100644
--- a/doc/read_data.html
+++ b/doc/read_data.html
@@ -79,6 +79,7 @@ is different than the default.
 
  • dihedral types = # of dihedral types in system
  • improper types = # of improper types in system
  • extra bond per atom = leave space for this many new bonds per atom +
  • ellipsoids = # of ellipsoids in system
  • xlo xhi = simulation box boundaries in x dimension
  • ylo yhi = simulation box boundaries in y dimension
  • zlo zhi = simulation box boundaries in z dimension @@ -155,11 +156,16 @@ added to the system when a simulation runs, e.g. by using the setting is only used with atom_style +ellipsoid and specifies how many of the atoms are +finite-size ellipsoids; the remainder are point particles. See the +discussion of ellipseflag and the Ellipsoids section below. +


    These are the section keywords for the body of the file.

    -