small updates for docs and comments

This commit is contained in:
Axel Kohlmeyer
2021-12-12 18:11:33 -05:00
parent 7db29112d8
commit 94d5c75fdf
2 changed files with 3 additions and 4 deletions

View File

@ -41,7 +41,6 @@ Syntax
*wrapped* value = *yes* or *no* = coords in dump file are wrapped/unwrapped *wrapped* value = *yes* or *no* = coords in dump file are wrapped/unwrapped
*format* values = format of dump file, must be last keyword if used *format* values = format of dump file, must be last keyword if used
*native* = native LAMMPS dump file *native* = native LAMMPS dump file
*native/bin* = native LAMMPS dump file in binary format
*xyz* = XYZ file *xyz* = XYZ file
*adios* [*timeout* value] = dump file written by the :doc:`dump adios <dump_adios>` command *adios* [*timeout* value] = dump file written by the :doc:`dump adios <dump_adios>` command
*timeout* = specify waiting time for the arrival of the timestep when running concurrently. *timeout* = specify waiting time for the arrival of the timestep when running concurrently.
@ -114,8 +113,8 @@ to tell LAMMPS how many parallel files exist, via its specified
The format of the dump file is selected through the *format* keyword. The format of the dump file is selected through the *format* keyword.
If specified, it must be the last keyword used, since all remaining If specified, it must be the last keyword used, since all remaining
arguments are passed on to the dump reader. The *native* and *native/bin" arguments are passed on to the dump reader. The *native* format is
format is for native LAMMPS dump files, written with a :doc:`dump atom <dump>` for native LAMMPS dump files, written with a :doc:`dump atom <dump>`
or :doc:`dump custom <dump>` command. The *xyz* format is for generic XYZ or :doc:`dump custom <dump>` command. The *xyz* format is for generic XYZ
formatted dump files. These formats take no additional values. formatted dump files. These formats take no additional values.

View File

@ -31,7 +31,7 @@ Reader::Reader(LAMMPS *lmp) : Pointers(lmp)
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
try to open given file try to open given file
generic version for ASCII files that may be compressed or native binary dumps generic version for ASCII files with optional compression or for native binary dumps
------------------------------------------------------------------------- */ ------------------------------------------------------------------------- */
void Reader::open_file(const std::string &file) void Reader::open_file(const std::string &file)