narupatools.frame.fields¶
Standard fields and their getters/setters for Narupa frames.
Module Attributes
|
Array of particle positions in nanometers, as a NumPy N by 3 array of floats. |
|
Array of particle velocities in nanometers per picosecond, as a NumPy N by 3 array of floats. |
|
Array of particle forces in kilojoule per mole per nanometer, as a NumPy N by 3 array of floats. |
|
Array of particle elements, as a NumPy array of atomic number. |
|
Array of particle residue indices, as a NumPy array of zero-based indices. |
|
Array of particle names, as a NumPy array of strings. |
|
Array of particle types, as a NumPy array of strings. |
|
Array of particle masses in atomic mass units, as a NumPy array of floats. |
|
Array of particle charges in proton charges, as a NumPy array of floats. |
|
Number of particles in the system, as an integer. |
|
Potential energy of the system in kilojoules per mole, as a float. |
|
Kinetic energy of the system in kilojoules per mole, as a float. |
|
Elapsed time in the simulation in picoseconds, as a float. |
|
Total time in the simulation in picoseconds, as a float. |
|
Elapsed steps in the simulation, as a integer. |
|
Total steps in the simulation, as a integer. |
|
Array of bonds as pairs of particle indices, as a N by 2 NumPy array of integers. |
|
Array of bond orders, as a NumPy array of integers. |
|
Number of bonds in the system, as an integer. |
|
Array of residue names, as a NumPy array of strings. |
|
Array of residue ids, as a NumPy array of strings. |
|
Array of residue chain indices, as a NumPy array of integers. |
|
Number of residues in the system, as an integer. |
|
Array of chain names, as a NumPy array of strings. |
|
Number of chains in the system, as an integer. |
|
Array of box vectors in nanometers indicating the simulation box, as a NumPy 3 by 3 or 4 x 3 array of floats. |
Functions
Get the defined FrameKey for a given string key. |
-
narupatools.frame.fields.get_frame_key(key: str) → narupatools.frame.fields.FrameKey¶ Get the defined FrameKey for a given string key.
- Parameters
key – Key as it appears in the frame data.
Classes
|
Key that can be placed in a Narupa FrameData, such as positions or potential energy. |