math-fem 0.2.5

Multigrid FEM solver for the Helmholtz equation
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Finite element matrix assembly
//!
//! Assembles stiffness, mass, and combined Helmholtz matrices from mesh and basis functions.

mod helmholtz;
mod mass;
mod stiffness;

pub use helmholtz::*;
pub use mass::*;
pub use stiffness::*;