legendre 0.1.0

Block-structured, deterministic, scheduler-driven PDE simulation framework
Documentation
1
2
3
4
5
6
7
8
9
//! Framework core: state, storage, scheduling, scratch, observation, and the
//! simulation owner. Everything here is grid- and physics-agnostic.

pub mod observer;
pub mod scheduler;
pub mod scratch;
pub mod simulation;
pub mod state;
pub mod storage;