Data import

File source panel
To load a simulation file or structure, select list of supported formats). Compressed files with a .gz
or .zst
suffix can be opened directly if the contained format is supported. To import data in a custom format, you can write your own file reader in Python pro.
After import, the dataset appears in the 3D viewport(s) as a visual object and as a data source in the pipeline editor (see screenshot).
The External file panel below the pipeline editor provides tools for reloading the imported data file or picking a different file as the source of the data pipeline. This is useful if you want to reuse a complex data analysis pipeline with a different simulation.
Command line usage
When launching OVITO from the terminal, you can specify the file(s) to load directly. This works for local files and files stored in remote locations:
ovito /path/filename
ovito sftp://hostname/path/filename
ovito https://www.website.org/path/filename
You can import multiple files at once. If they have the same format, they will be concatenated into an animatable trajectory. If they have different formats, OVITO will detect if they represent a pair of topology/trajectory files (see next section). Otherwise, they will be inserted as separate objects into the scene pro.
Simulation trajectories
OVITO supports loading simulation trajectories that consist of a series of snapshots:
- A series of separate files:
OVITO detects if the file is part of a numbered sequence of files with similar names in the same directory. For example, if you open
anim1c_5000.dump
, OVITO generates the search patternanim1c_*.dump
to find more files (e.g.,anim1c_0.dump
,anim1c_1000.dump
). The search pattern is generated by replacing the last numeric sequence in the filename you’ve picked with the wildcard character *. You can manually override the generated pattern or turn off the automatic file discovery by toggling the auto-generate box.- A file containing a trajectory:
OVITO detects if the imported file contains more than one simulation frame and loads all of them as an animation sequence. For some file types, e.g., XYZ and LAMMPS dump, this is indicated by the Contains multiple timesteps checkbox. Note that OVITO typically keeps only the current trajectory frame in memory at a time to reduce the memory footprint.
- A pair of topology and trajectory files:
Some MD simulation codes use separate files for the topology and the simulation trajectory of a molecular structure. The topology file contains static definitions of atoms and bond connectivity, while the trajectory file contains the computed trajectories and other time-dependent simulation data. You should pick both files in the file selection dialog to import them simultaneously. OVITO recognizes which file is the topology file and which one is the trajectory file based on the following table:
Topology format
Trajectory format
LAMMPS data
LAMMPS dump
Gromacs GRO
Gromacs XTC
CASTEP cell
CASTEP md/geom
any other supported format
XYZ
The topology file is loaded as pipeline data source, and a Load trajectory modifier is inserted into the data pipeline to load the time-dependent atomic positions from the trajectory file. This pipeline stage merges the static topology with the dynamic trajectories into a combined animated dataset.
OVITO displays a timeline and a time slider below the viewports if a simulation sequence with more than one frame is loaded. See Animating the camera and other parameters to learn more about OVITO’s animation capabilities.
Visualizing multiple datasets pro

Side-by-side visualization example
OVITO Pro allows you to insert multiple objects or datasets into the same 3D scene. You can visualize multiple simulations together in one picture or visualize the same dataset in different ways. The branched data pipelines feature of OVITO Pro lets you duplicate the imported dataset and dynamically process each copy in different ways.
To insert multiple simulations into one scene, use the Add to scene option to insert subsequent datasets as additional objects instead of replacing the existing one.
menu function multiple times. When importing the second dataset, select the
The pipeline selector widget in OVITO’s toolbar
The pipeline selector in the top toolbar is a widget listing all simulation files and other objects in the current scene. Each imported file has its own data pipeline, allowing you to manipulate the data. The currently selected data pipeline is displayed in the pipeline editor in the right command panel.
Positioning objects in the scene
OVITO places all imported simulation files in the same scene coordinate space. You can move individual datasets around if needed. In the example picture above, the second dataset was translated along the x-axis to place it side by side with the first dataset. Use the Translate tool in the top toolbar to move objects:


While the Translate mode is active, drag datasets in the viewports using the mouse or enter the desired XYZ position in the status bar input fields. To move only parts of a dataset, e.g., just a subset of particles, insert the Affine transformation modifier in the data pipeline.