pub trait SolidThermal<C1, C2>{
// 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§
Sourcefn solid_constitutive_model(&self) -> &C1
fn solid_constitutive_model(&self) -> &C1
Returns a reference to the solid constitutive model.
Sourcefn thermal_constitutive_model(&self) -> &C2
fn thermal_constitutive_model(&self) -> &C2
Returns a reference to the thermal constitutive model.