mesh-sieve 4.0.1

Modular, high-performance Rust library for mesh and data management, designed for scientific computing and PDE codes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Runtime discretization helpers for basis/quadrature evaluation and assembly.

pub mod runtime;

pub use runtime::{
    Basis, BasisFamily, BasisTabulation, ClosureDof, DiscretizationCapability, DofMap,
    ElementRuntime, ElementTabulation, QuadratureFamily, QuadratureRule, assemble_local_matrix,
    assemble_local_vector, cell_vertices, discretization_capability,
    ensure_geometry_order_supported, local_load_vector, local_stiffness_matrix,
    runtime_from_metadata, supported_discretizations, tabulate_element,
};