Skip to content
Snippets Groups Projects
Commit 3a23a1c2 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] TM: Fwd-decl MechanicsBase. Init dt/t.

parent 673058d0
No related branches found
No related tags found
No related merge requests found
...@@ -9,11 +9,14 @@ ...@@ -9,11 +9,14 @@
#pragma once #pragma once
namespace MeshLib namespace MaterialLib
{ {
class Element; namespace Solids
{
template <int DisplacementDim>
struct MechanicsBase;
}
} }
namespace ProcessLib namespace ProcessLib
{ {
namespace ThermoMechanics namespace ThermoMechanics
...@@ -73,8 +76,8 @@ struct ThermoMechanicsProcessData ...@@ -73,8 +76,8 @@ struct ThermoMechanicsProcessData
thermal_conductivity; // TODO To be changed as a matrix type variable. thermal_conductivity; // TODO To be changed as a matrix type variable.
double const reference_temperature; double const reference_temperature;
Eigen::Matrix<double, DisplacementDim, 1> const specific_body_force; Eigen::Matrix<double, DisplacementDim, 1> const specific_body_force;
double dt; double dt = 0;
double t; double t = 0;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW; EIGEN_MAKE_ALIGNED_OPERATOR_NEW;
}; };
......
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