1#![doc = include_str!("../README.md")]
2#![cfg_attr(feature = "nightly", feature(portable_simd))]
3
4#[cfg(feature = "constitutive")]
5pub mod constitutive;
6
7#[cfg(feature = "fem")]
8#[path = "domain/fem/mod.rs"]
9pub mod fem;
10
11#[cfg(feature = "geometry")]
12pub mod geometry;
13
14#[cfg(feature = "io")]
15pub mod io;
16
17#[cfg(feature = "math")]
18pub mod math;
19
20#[cfg(feature = "mechanics")]
21pub mod mechanics;
22
23#[cfg(feature = "physics")]
24pub mod physics;
25
26#[cfg(feature = "math")]
27pub mod units;
28
29#[cfg(feature = "vem")]
30#[path = "domain/vem/mod.rs"]
31pub mod vem;
32
33pub const ABS_TOL: f64 = 1e-12;
35
36pub const REL_TOL: f64 = 1e-12;
38
39pub const EPSILON: f64 = 1e-6;