Expand description
Structs§
- Custom
Force - Direct
Sum - The DirectSum simulation method is the most intuitive way to process a molecular dynamics simulation. It bases the computation on the Direct Sum method.
- Lennard
Jones Force - A struct representing a Lennard-Jones force, which implements the Force trait.
- Newton
Force - A struct representing a Newton (or Coloumb-like) force, which implements the Force trait.
- Particle
- A struct representing a particle record in the simulation.
- Simulation
Args - The struct representing the global simulation settings, which includes the time range and simulation delta time.
- Vec3
- A struct representing a three-dimensional mathematical vector. These are used to represent particle information, such as position or velocity, in three-dimensional space.
Traits§
- Force
- The trait for force systems. A force system is a mathematical model which describes the potential energy between two particles.
- Simulation
- An interface-level abstraction of a molecular dynamics simulation. A Simulation is a method of organizing the particles and forces in a way that allows for efficient computation.