CFG (AtomEye) file reader

User interface of the CFG file reader, which appears as part of a pipeline’s file source.
This file format is typically used by the AtomEye visualization program.
Supported format variants
The file reader supports the Standard CFG format as well as the Extended CFG format, see here, which can store auxiliary per-atom properties.
OVITO maintains the original order in which atoms are stored in the CFG file.
The geometry of the simulation cell is loaded from the CFG file. However, because the file format does not store the boundary conditions used in the simulation, OVITO assumes periodic boundary conditions are enabled in all three cell directions by default when opening a CFG file. You can override the boundary conditions by hand in the Simulation cell panel after import.
Auxiliary properties
The auxiliary properties from an Extended CFG file get mapped to corresponding particle properties within OVITO during file import. This happens automatically according to the following rules.
CFG property name |
OVITO particle property |
---|---|
id |
|
vx, vy, vz |
|
v |
|
radius |
|
q |
|
ix, iy, iz |
|
fx, fy, fz |
|
mux, muy, muz |
|
mu |
|
omegax, omegay, omegaz |
|
angmomx, angmomy, angmomz |
|
tqx, tqy, tqz |
|
spin |
|
Any other auxiliary property is mapped to a corresponding user-defined particle property with the same name in OVITO.
Python parameters
The file reader accepts the following optional keyword parameters in a call to the import_file()
or load()
Python functions.
- import_file(location, sort_particles=False)
- Parameters:
sort_particles (bool) – Makes the file reader reorder the loaded particles before passing them to the pipeline. Sorting is based on the values of the
Particle Identifier
property loaded from the CFG file (only if available as an auxiliary property in Extended CFG files).