dump euler/vtk command

Purpose

Dumps Eulerian data created by a fix ave/euler to VTK files

Warning

GPU support for this command has not been tested and may not work as expected.

Syntax

dump ID group-ID style N file args
  • ID = user-assigned name for the dump

  • group-ID = ID of the group of atoms to be dumped

  • style = euler/vtk

  • N = dump every this many timesteps

  • file = name of file to write dump info to

  • args = list of arguments for a particular style

euler/vtk args = dump_full_stress_tensor
  dump_full_stress_tensor = optional keyword, either yes or no

Examples

dump dmpave all euler/vtk 100 dump*.euler.vtk

Description

The euler/vtk style dumps the output of a fix ave/euler command into a series of VTK files. Setting dump_full_stress_tensor to yes causes this dump to write the six independent components of the stress tensor to the dump files.


The VTK format uses a single snapshot of the system per file, thus a wildcard “*” must be included in the filename, as discussed below. Otherwise the dump files will get overwritten with the new snapshot each time.


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 also 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. The dump_modify every command also allows a variable to be used to determine the sequence of timesteps on which dump files are written. In this mode a dump on the first timestep of a run will also not be written unless the dump_modify first command is used.

Dump filenames can contain two wildcard characters. 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*.vtk becomes tmp.dump0.vtk, tmp.dump10000.vtk, tmp.dump20000.vtk, etc. Note that the dump_modify pad command can be used to ensure all timestep numbers are the same length (e.g. 00010), which can make it easier to read a series of dump files in order with some post-processing tools.

If a “%” character appears in the filename, then each of P processors writes a portion of the dump file, and the “%” character is replaced with the processor ID from 0 to P-1 preceded by an underscore character. For example, tmp.dump%.vtp becomes tmp.dump_0.vtp, tmp.dump_1.vtp, … tmp.dump_P-1.vtp, etc. This creates smaller files and can be a fast mode of output on parallel machines that support parallel I/O for output.

By default, P = the number of processors meaning one file per processor, but P can be set to a smaller value via the nfile keyword of the dump_modify command. These options can be the most efficient way of writing out dump files when running on large numbers of processors.

For the legacy VTK format “%” is ignored and P = 1, i.e., only processor 0 does write files.

Note that using the “*” and “%” characters together can produce a large number of small dump files!

If dump_modify binary is used, the dump file (or files, if “*” or “%” is also used) is written in binary format. A binary dump file will be about the same size as a text version, but will typically write out much faster.


Restrictions

The euler/vtk style does not support writing of gzipped dump files.

The euler/vtk dump style neither supports buffering nor custom format strings.

Default

By default, files are written in ASCII format. If the file extension is not one of .vtk, .vtp or .vtu, the legacy VTK file format is used.