41 const auto reference_temperature = referenceTemperature();
43 const auto current_alphabar = meanThermalExpansionCoefficient(this->_temperature[_qp]);
44 const auto thexp_T = current_alphabar * (this->_temperature[_qp] - reference_temperature);
50 const auto alphabar_stress_free_temperature =
51 meanThermalExpansionCoefficient(this->_stress_free_temperature[_qp]);
55 const auto thexp_stress_free_temperature =
56 alphabar_stress_free_temperature *
57 (this->_stress_free_temperature[_qp] - referenceTemperature());
66 (thexp_T - thexp_stress_free_temperature) / (1.0 + thexp_stress_free_temperature);
68 return _thermal_expansion_scale_factor * thermal_strain;