conspire/constitutive/multiphysics/mod.rs
1//! Multiphysics constitutive models.
2
3mod solid_thermal;
4
5pub use solid_thermal::{
6 SolidThermal, thermoelastic_thermal_conduction::ThermoelasticThermalConduction,
7 thermohyperelastic_thermal_conduction::ThermohyperelasticThermalConduction,
8};
9
10/// Required methods for multiphysics constitutive models.
11pub trait Multiphysics {}