conspire::constitutive::multiphysics

Trait SolidThermal

Source
pub trait SolidThermal<'a, C1, C2>
where C1: Solid<'a>, C2: Thermal<'a>, Self: Multiphysics<'a>,
{ // Required methods fn construct( solid_constitutive_model: C1, thermal_constitutive_model: C2, ) -> Self; fn solid_constitutive_model(&self) -> &C1; fn thermal_constitutive_model(&self) -> &C2; }
Expand description

Required methods for solid-thermal constitutive models.

Required Methods§

Source

fn construct( solid_constitutive_model: C1, thermal_constitutive_model: C2, ) -> Self

Constructs and returns a new solid-thermal constitutive model.

Source

fn solid_constitutive_model(&self) -> &C1

Returns a reference to the solid constitutive model.

Source

fn thermal_constitutive_model(&self) -> &C2

Returns a reference to the thermal constitutive model.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, C1, C2> SolidThermal<'a, C1, C2> for ThermoelasticThermalConduction<C1, C2>
where C1: Thermoelastic<'a>, C2: ThermalConduction<'a>,

Source§

impl<'a, C1, C2> SolidThermal<'a, C1, C2> for ThermohyperelasticThermalConduction<C1, C2>
where C1: Thermohyperelastic<'a>, C2: ThermalConduction<'a>,