Status: HIGH PRIORITY after MPM
Reaction-diffusion is a natural fit for MPM grid-based architecture.
Why High Priority
- Naturally grid-based (matches MPM grid)
- MPM particles carry chemical concentrations
- Diffusion via P2G/G2P transfers
- Reactions at particle level
MPM-Based Implementation
Particle structure:
struct MPMParticle {
position: Vec3,
velocity: Vec3,
mass: f32,
deformation_gradient: Mat3,
concentrations: Vec<f32>, // [O2, H2O, glucose, ...]
}
Diffusion via P2G/G2P, reactions at particle level.
Acceptance Criteria
Implement after basic MPM working.
Status: HIGH PRIORITY after MPM
Reaction-diffusion is a natural fit for MPM grid-based architecture.
Why High Priority
MPM-Based Implementation
Particle structure:
Diffusion via P2G/G2P, reactions at particle level.
Acceptance Criteria
Implement after basic MPM working.