SolidThermal

Trait SolidThermal 

Source
pub trait SolidThermal<C1, C2>
where C1: Solid, C2: Thermal, Self: Multiphysics,
{ // Required methods 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 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.

Implementors§