math-fem 0.3.5

Multigrid FEM solver for the Helmholtz equation
Documentation
1
2
3
4
5
6
7
8
9
10
//! Finite element basis functions
//!
//! Implements Lagrange polynomial basis functions for various element types
//! and polynomial degrees (P1, P2, P3 for simplices; Q1, Q2 for quads/hexes).

mod lagrange;
mod shape;

pub use lagrange::*;
pub use shape::*;