6d238f8
# python-gsd
6d238f8
2a00738
GSD (General Simulation Data) is a file format specification and a library
2a00738
to read and write it. The package also contains a python module that reads
2a00738
and writes hoomd schema gsd files with an easy to use syntax.
2a00738
2a00738
* Efficiently store many frames of data from simulation runs.
2a00738
* High performance file read and write.
2a00738
* Support arbitrary chunks of data in each frame (position, orientation,
2a00738
  type, etc...).
2a00738
* Append frames to an existing file with a monotonically increasing frame
2a00738
  number.
2a00738
* Resilient to job kills.
2a00738
* Variable number of named chunks in each frame.
2a00738
* Variable size of chunks in each frame.
2a00738
* Each chunk identifies data type.
2a00738
* Common use cases: NxM arrays in double, float, int, char types.
2a00738
* Generic use case: binary blob of N bytes.
2a00738
* Easy to integrate into other tools with python, or a C API (< 1k lines).
2a00738
* Fast random access to frames.