conspire 0.6.0

The Rust interface to conspire.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Multiphysics constitutive models.

mod solid_thermal;

pub use solid_thermal::{
    SolidThermal, thermoelastic_thermal_conduction::ThermoelasticThermalConduction,
    thermohyperelastic_thermal_conduction::ThermohyperelasticThermalConduction,
};

/// Required methods for multiphysics constitutive models.
pub trait Multiphysics {}