Skip to content
Snippets Groups Projects
Commit 8bcc0973 authored by Norbert Grunwald's avatar Norbert Grunwald Committed by Dmitri Naumov
Browse files

[PL/TH2M] Rename temperature variable.

parent 7ec3f72c
No related branches found
No related tags found
No related merge requests found
...@@ -344,7 +344,7 @@ void TH2MLocalAssembler< ...@@ -344,7 +344,7 @@ void TH2MLocalAssembler<
temperature_size + displacement_size; temperature_size + displacement_size;
assert(local_x.size() == matrix_size); assert(local_x.size() == matrix_size);
auto const T = auto const temperature =
Eigen::Map<typename ShapeMatricesTypePressure::template VectorType< Eigen::Map<typename ShapeMatricesTypePressure::template VectorType<
temperature_size> const>(local_x.data() + temperature_index, temperature_size> const>(local_x.data() + temperature_index,
temperature_size); temperature_size);
...@@ -370,11 +370,10 @@ void TH2MLocalAssembler< ...@@ -370,11 +370,10 @@ void TH2MLocalAssembler<
local_x_dot.data() + capillary_pressure_index, local_x_dot.data() + capillary_pressure_index,
capillary_pressure_size); capillary_pressure_size);
auto const dT = auto const temperature_dot =
Eigen::Map<typename ShapeMatricesTypePressure::template VectorType< Eigen::Map<typename ShapeMatricesTypePressure::template VectorType<
temperature_size> const>(local_x_dot.data() + temperature_index, temperature_size> const>(local_x_dot.data() + temperature_index,
temperature_size) * temperature_size);
dt;
// pointer to local_M_data vector // pointer to local_M_data vector
auto local_M = MathLib::createZeroedMatrix< auto local_M = MathLib::createZeroedMatrix<
...@@ -723,17 +722,17 @@ void TH2MLocalAssembler< ...@@ -723,17 +722,17 @@ void TH2MLocalAssembler<
auto& eps_m = ip.eps_m; auto& eps_m = ip.eps_m;
auto& eps_m_prev = ip.eps_m_prev; auto& eps_m_prev = ip.eps_m_prev;
double const T_int_pt = NT.dot(T); double const T = NT.dot(temperature);
double const dT_int_pt = NT.dot(dT); double const T_dot = NT.dot(temperature_dot);
MathLib::KelvinVector::KelvinVectorType<DisplacementDim> const MathLib::KelvinVector::KelvinVectorType<DisplacementDim> const
dthermal_strain = ip.alpha_T_SR * dT_int_pt; dthermal_strain = ip.alpha_T_SR * T_dot * dt;
eps_m.noalias() = eps_m_prev + eps - eps_prev - dthermal_strain; eps_m.noalias() = eps_m_prev + eps - eps_prev - dthermal_strain;
vars[static_cast<int>(MaterialPropertyLib::Variable::mechanical_strain)] vars[static_cast<int>(MaterialPropertyLib::Variable::mechanical_strain)]
.emplace<MathLib::KelvinVector::KelvinVectorType<DisplacementDim>>( .emplace<MathLib::KelvinVector::KelvinVectorType<DisplacementDim>>(
eps_m); eps_m);
ip.updateConstitutiveRelation(vars, t, pos, dt, T_int_pt - dT_int_pt); ip.updateConstitutiveRelation(vars, t, pos, dt, T - T_dot * dt);
fU.noalias() -= (BuT * sigma_eff - Nu_op.transpose() * rho * b) * w; fU.noalias() -= (BuT * sigma_eff - Nu_op.transpose() * rho * b) * w;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment