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

Merge branch 'AddPhiInIntPtData' into 'master'

[PL/CT] Hold porosity in the IntegrationPointData.

See merge request ogs/ogs!3259
parents d6b33d68 35f071cf
No related branches found
No related tags found
No related merge requests found
...@@ -48,6 +48,7 @@ struct IntegrationPointData final ...@@ -48,6 +48,7 @@ struct IntegrationPointData final
GlobalDimNodalMatrixType const dNdx; GlobalDimNodalMatrixType const dNdx;
double const integration_weight; double const integration_weight;
double porosity = std::numeric_limits<double>::quiet_NaN();
EIGEN_MAKE_ALIGNED_OPERATOR_NEW; EIGEN_MAKE_ALIGNED_OPERATOR_NEW;
}; };
...@@ -135,11 +136,15 @@ public: ...@@ -135,11 +136,15 @@ public:
_integration_method.getNumberOfPoints(); _integration_method.getNumberOfPoints();
_ip_data.reserve(n_integration_points); _ip_data.reserve(n_integration_points);
ParameterLib::SpatialPosition pos;
pos.setElementID(_element.getID());
auto const shape_matrices = auto const shape_matrices =
NumLib::initShapeMatrices<ShapeFunction, ShapeMatricesType, NumLib::initShapeMatrices<ShapeFunction, ShapeMatricesType,
GlobalDim>(element, is_axially_symmetric, GlobalDim>(element, is_axially_symmetric,
_integration_method); _integration_method);
auto const& medium =
_process_data.media_map->getMedium(_element.getID());
for (unsigned ip = 0; ip < n_integration_points; ip++) for (unsigned ip = 0; ip < n_integration_points; ip++)
{ {
_ip_data.emplace_back( _ip_data.emplace_back(
...@@ -147,6 +152,12 @@ public: ...@@ -147,6 +152,12 @@ public:
_integration_method.getWeightedPoint(ip).getWeight() * _integration_method.getWeightedPoint(ip).getWeight() *
shape_matrices[ip].integralMeasure * shape_matrices[ip].integralMeasure *
shape_matrices[ip].detJ); shape_matrices[ip].detJ);
pos.setIntegrationPoint(ip);
_ip_data[ip].porosity =
medium->property(MaterialPropertyLib::PropertyType::porosity)
.template initialValue<double>(pos, 0.);
} }
if (_process_data.chemical_process_data) if (_process_data.chemical_process_data)
...@@ -277,10 +288,11 @@ public: ...@@ -277,10 +288,11 @@ public:
{ {
pos.setIntegrationPoint(ip); pos.setIntegrationPoint(ip);
auto const& ip_data = _ip_data[ip]; auto& ip_data = _ip_data[ip];
auto const& N = ip_data.N; auto const& N = ip_data.N;
auto const& dNdx = ip_data.dNdx; auto const& dNdx = ip_data.dNdx;
auto const& w = ip_data.integration_weight; auto const& w = ip_data.integration_weight;
auto& porosity = ip_data.porosity;
double C_int_pt = 0.0; double C_int_pt = 0.0;
double p_int_pt = 0.0; double p_int_pt = 0.0;
...@@ -293,8 +305,8 @@ public: ...@@ -293,8 +305,8 @@ public:
vars[static_cast<int>( vars[static_cast<int>(
MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt; MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt;
// porosity model // update according to a particular porosity model
auto const porosity = porosity =
medium.property(MaterialPropertyLib::PropertyType::porosity) medium.property(MaterialPropertyLib::PropertyType::porosity)
.template value<double>(vars, pos, t, dt); .template value<double>(vars, pos, t, dt);
...@@ -474,10 +486,11 @@ public: ...@@ -474,10 +486,11 @@ public:
{ {
pos.setIntegrationPoint(ip); pos.setIntegrationPoint(ip);
auto const& ip_data = _ip_data[ip]; auto& ip_data = _ip_data[ip];
auto const& N = ip_data.N; auto const& N = ip_data.N;
auto const& dNdx = ip_data.dNdx; auto const& dNdx = ip_data.dNdx;
auto const& w = ip_data.integration_weight; auto const& w = ip_data.integration_weight;
auto& porosity = ip_data.porosity;
double C_int_pt = 0.0; double C_int_pt = 0.0;
double p_int_pt = 0.0; double p_int_pt = 0.0;
...@@ -490,8 +503,8 @@ public: ...@@ -490,8 +503,8 @@ public:
vars[static_cast<int>( vars[static_cast<int>(
MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt; MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt;
// porosity model // update according to a particular porosity model
auto const porosity = porosity =
medium.property(MaterialPropertyLib::PropertyType::porosity) medium.property(MaterialPropertyLib::PropertyType::porosity)
.template value<double>(vars, pos, t, dt); .template value<double>(vars, pos, t, dt);
...@@ -591,10 +604,11 @@ public: ...@@ -591,10 +604,11 @@ public:
{ {
pos.setIntegrationPoint(ip); pos.setIntegrationPoint(ip);
auto const& ip_data = _ip_data[ip]; auto& ip_data = _ip_data[ip];
auto const& N = ip_data.N; auto const& N = ip_data.N;
auto const& dNdx = ip_data.dNdx; auto const& dNdx = ip_data.dNdx;
auto const& w = ip_data.integration_weight; auto const& w = ip_data.integration_weight;
auto& porosity = ip_data.porosity;
double C_int_pt = 0.0; double C_int_pt = 0.0;
double p_int_pt = 0.0; double p_int_pt = 0.0;
...@@ -607,8 +621,8 @@ public: ...@@ -607,8 +621,8 @@ public:
vars[static_cast<int>( vars[static_cast<int>(
MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt; MaterialPropertyLib::Variable::phase_pressure)] = p_int_pt;
// porosity model // update according to a particular porosity model
auto const porosity = porosity =
medium.property(MaterialPropertyLib::PropertyType::porosity) medium.property(MaterialPropertyLib::PropertyType::porosity)
.template value<double>(vars, pos, t, dt); .template value<double>(vars, pos, t, dt);
......
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