LAMMPS WWW Site - LAMMPS Documentation - LAMMPS Commands

dump image command

Syntax:

dump ID group-ID image N file keyword value ... 

Examples:

dump myDump all image 100 dump.*.jpg 

Description:

Dump an image (picture) of the atom configuration every N timesteps as either a JPG or PPM file. A series of such images can easily be converted into an animated movie of your simulation; see further details below. Other dump styles store snapshots of atom quantities in various formats, as discussed on the dump doc page.

Only atoms in the specified group are rendered in the image. The dump_modify region and thresh commands can also alter what atoms are included in the image.

The filename suffix determines whether a JPG or PPM file is created. If the suffix is ".jpg" or ".jpeg", then a JPG file is created, else a PPM file is created. To write out JPG files, you must build LAMMPS with a JPEG library. See this section of the manual for instructions on how to do this.

IMPORTANT NOTE: Because periodic boundary conditions are enforced only on timesteps when neighbor lists are rebuilt, the coordinates of an atom image may be slightly outside the simulation box.


Dumps are performed on timesteps that are a multiple of N (including timestep 0) and on the last timestep of a minimization if the minimization converges. Note that this means a dump will not be performed on the initial timestep after the dump command is invoked, if the current timestep is not a multiple of N. This behavior can be changed via the dump_modify first command, which can be useful if the dump command is invoked after a minimization ended on an arbitrary timestep. N can be changed between runs by using the dump_modify every command (not allowed for dcd style).

Dump image filenames must contain a wildcard character "*". If a "*" character appears in the filename, then one file per snapshot is written and the "*" character is replaced with the timestep value. For example, tmp.dump.*.jpg becomes tmp.dump.0.jpg, tmp.dump.10000.jpg, tmp.dump.20000.jpg, etc. Note that the dump_modify pad command can be used to insure all timestep numbers are the same length (e.g. 00010), which can make it easier to convert a series of images into a movie in the correct ordering.


The kewords listed above control how the image is rendered. As listed below, all of the keywords have defaults, most of which you will likely not need to change. The dump modify also has options specific to the dump image style, particularly for assigning colors to atoms, bonds, and other image features.


The atom keyword determines the color and size of atoms rendered in the image. If none is specified for the color value (with any diam value), then no atoms are drawn.

The color value can be type or element or an atom-attribute.

If type is specified for the color value, then the color of each atom is determined by its atom type. By default the mapping of types to colors is as follows:

and repeats itself for types > 6. This mapping can be changed by the dump_modify acolor command.

If element is specified for the color value, then the color of each atom is determined by which element it is, which in turn is specified by the element-to-type mapping specified by the "dump_modify element" command. By default every atom type is C (carbon). Every element has a color associated with it, which is the same as used by the AtomEye visualization package.

An atom-attribute can also be used for the color value. Any attribute listed on the dump custom doc page can be used, e.g. vx, fy, q, spin, etc. This includes per-atom quantities calculated by a compute, fix, or variable. For example, if "vx" is used as the per-atom attribute, then the color of the atom will depend on the x-component of its velocity.

The association of a per-atom value with a specific color is determined by a "color map", which can be specified via the dump_modify command. The basic idea is that the atom-attribute will be within a range of values, and every value within the range is mapped to a specific color. Depending on how the color map is defined, that mapping can take place via interpolation so that a value of -3.2 is halfway between "red" and "blue", or discretely so that the value of -3.2 is "orange".

The diam value can be a numeric value D or type or element or radius or shape or an atom-attribute.

If a numeric value D is specified, then all atoms will be drawn with that diameter, e.g. 1.5, which is in distance units in whatever units you are using, e.g. Angstroms.

If type is specified for the diam value then the color of each atom is determined by its atom type. By default all types have diameter 1.0. This mapping can be changed by the dump_modify adiam command.

If element is specified for the diam value, then the diamater of each atom is determined by which element it is, which in turn is specified by the element-to-type mapping specified by the "dump_modify element" command. By default every atom type is C (carbon). Every element has a diamtere associated with it, which is the same as used by the AtomEye visualization package.

If radius or shape is specified for the diam value then those the atom style you are using must define those attributes. The radius or shape of the individual atom is then used to draw it. Currently, only spherical shapes are allowed. Support for ellipsoids will be added later.

An atom-attribute can also be used for the diam value. Any attribute listed on the dump custom doc page can be used, e.g. vx, fy, q, spin, etc. This includes per-atom quantities calculated by a compute, fix, or variable. For example, if "vx" is used as the per-atom attribute, then the diameter of the atom will depend on the x-component of its velocity, which will assumed to be >= 0.0, else the atom will not be drawn.


The bond keyword determines the color and thickness or diameter of bonds rendered in the image. If none is specified for the color value (with any diam value), then no bonds are drawn.

If atom is specified for the color value, then the each bond is drawn in 2 halves, with the color of each half being the color of the atom at that end of the bond.

If type is specified for the color value, then the color of each bond is determined by its bond type. By default the mapping of types to colors is as follows:

and repeats itself for types > 6. This mapping can be changed by the dump_modify bcolor command.

The diam value can be a numeric value D or type.

If a numeric value D is specified, then all bond will be drawn with that diameter, e.g. 1.0, which is in distance units in whatever units you are using, e.g. Angstroms.

If type is specified for the diam value then the color of each bond is determined by its bond type. By default all types have diameter 0.5. This mapping can be changed by the dump_modify bdiam command.


The size keyword determines the width and height of the created image files, in numbers of pixels in each direction.


The view, center, up, zoom, and persp settings determine how 3d simulation space is mapped to the 2d plane of the image. Basically they control how the simulation box appears in the image.

All of the view, center, up, zoom, and persp settings can be specified as numeric values, whose meaning is explained below. But any of them can also be specified as an equal-style variable, by using v_name as the setting, where "name" is the variable name. In this case the variable will be evaluated on the timestep each image is created to create a new setting. If the equal-style variable is time-dependent, this is a means of changing the way the simulation box appears from image to image, effectively doing a pan or fly-by view of your simulation.

The view keyword determines the viewpoint from which the simulation box is viewed. The theta setting is the vertical angle from the +z axis, and must be an angle from 0 to 180 degrees. The phi setting is an azimuthal angle around the z axis and can be positive or negative.

The center keyword determines the point in simulation space that will be at the center of the image. Cx, Cy, and Cz are speficied as fractions of the box dimensions, so that (0.5,0.5,0.5) is the center of the simulation box. These values do not have to be between 0.0 and 1.0, if you want the simulation box to be offset from the center of the image. Note, however, that if you choose odd values for Cx, Cy, or Cz you may get a blank image. Internally, Cx, Cy, and Cz are converted into a point in simulation space. If flag is set to "s" for static, then this conversion is done once, at the time the dump command is issued. If flag is set to "d" for dynamic then the conversion is performed every time a new image is created. If the box size or shape is changing, this will adjust the center point in simulation space.

The up keyword determines what direction in simulation space will be "up" in the image. Internally it is stored as a vector that is in the plane perpendicular to the view vector implied by the theta and pni settings, and which is in the plane defined by the view vector and user-specified up vector. Thus this internal vector is computed from the user-specified up vector as

up_internal = view cross (up cross view) 

This means the only restriction on the specified up vector is that it cannot be parallel to the view vector, implied by the theta and phi settings.

The zoom keyword scales the size of the simulation box as it appears in the image. The default factor setting of 1 should display an image mostly filled by the atoms in the simulation box. A factor > 1 will make the simulation box larger; a factor < 1 will make it smaller.

The persp keyword how much depth perspective is present in the image. Depth persepctive makes lines that are parallel in simulation space appear non-parallel in the image. A factor setting of 0.0 means that parallel lines will meet at infininty (1.0/factor), which is an orthographic rendering with no persepctive. A factor setting between 0.0 and 1.0 will introduce more perspective. A factor > 1 will create a highly skewed image with a large amount of perspective.

The dynamic keyword determines the color and thickness of bonds rendered in the image.


The box keyword determines how the simulation box boundaries are rendered as thin cylinders in the image. If no is set, then the box boundaries are not drawn and the diam setting is ignored. If yes is set, the 12 edges of the box are drawn, with a diameter that is a fraction of the shortest box lenght in x, y, or z. The color of the box boundaires can be set with the dump_modify boxcolor command.

The axes keyword determines how the coordinate axes are rendered as thin cylinders in the image. If no is set, then the axes are not drawn and the length and diam settings are ignored. If yes is set, 3 thin cylinders are drawn to represent the x,y,z axes in colors red,green/blue. The origin of these cylinders will be offset from the lower left corner of the box by 10%. The length setting determines how long the cylinders will be. The diam setting determines their thickness.


The shiny keyword determines how shiny the objects rendered in the image will appear. This must be a value 0.0 <= S <= 1.0, where S = 1 is a highly-reflective surface and S = 0 is a rough non-shiny surface.

The ssao keyword turns on/off a screen space ambient occlusion (SSAO) model for depth shading. If yes is set, then atoms further away from the viewer are darkened, which is perceived as depth by the viewer. The calculation of this effect can increase the cost of computing the image by roughly 2x. If no is set, the depth shading is not performed.


A series of JPG or PPM images can be converted into a movie file and then played as a movie using commonly available tools.

Convert JPG or PPM files into an animated GIF or MPEG or other movie file:

If someone tells us how to do this a common Windows-based tool, we'll post the instructions here.

Play the movie:


See this section of the manual for information on how to add new compute and fix styles to LAMMPS to calculate per-atom quantities which could then be output into dump files.


Restrictions:

To write JPG images, you must link LAMMPS with a JPEG library - see the Making LAMMPS section of the documentation for details.

Related commands:

dump, dump_modify, undump

Default:

The defaults for the keywords are as follows: