Skip to main content

conspire/
lib.rs

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