phyz_particle/lib.rs
1//! Material Point Method (MPM) for particles.
2//!
3//! Implements elastic, plastic, granular, and fluid materials using the
4//! Material Point Method with APIC (Affine Particle-In-Cell) transfer.
5
6pub mod material;
7pub mod mpm;
8pub mod particle;
9
10pub use material::Material;
11pub use mpm::MpmSolver;
12pub use particle::Particle;