28namespace TwoPhaseFlowWithPP
30template <
typename NodalRowVectorType,
typename GlobalDimNodalMatrixType,
31 typename NodalMatrixType>
35 GlobalDimNodalMatrixType dNdx_,
36 double const& integration_weight_,
37 NodalMatrixType
const massOperator_)
39 dNdx(std::move(dNdx_)),
45 NodalRowVectorType
const N;
46 GlobalDimNodalMatrixType
const dNdx;
61 std::vector<GlobalVector*>
const& x,
62 std::vector<NumLib::LocalToGlobalIndexMap const*>
const& dof_table,
63 std::vector<double>& cache)
const = 0;
67 std::vector<GlobalVector*>
const& x,
68 std::vector<NumLib::LocalToGlobalIndexMap const*>
const& dof_table,
69 std::vector<double>& cache)
const = 0;
72template <
typename ShapeFunction,
int GlobalDim>
97 bool const is_axially_symmetric,
107 unsigned const n_integration_points =
109 _ip_data.reserve(n_integration_points);
110 auto const shape_matrices =
112 GlobalDim>(element, is_axially_symmetric,
114 for (
unsigned ip = 0; ip < n_integration_points; ip++)
116 auto const& sm = shape_matrices[ip];
119 sm.integralMeasure * sm.detJ *
121 sm.N.transpose() * sm.N * sm.integralMeasure * sm.detJ *
126 void assemble(
double const t,
double const dt,
127 std::vector<double>
const& local_x,
128 std::vector<double>
const& local_x_prev,
129 std::vector<double>& local_M_data,
130 std::vector<double>& local_K_data,
131 std::vector<double>& local_b_data)
override;
134 const unsigned integration_point)
const override
136 auto const& N =
_ip_data[integration_point].N;
139 return Eigen::Map<const Eigen::RowVectorXd>(N.data(), N.size());
144 std::vector<GlobalVector*>
const& ,
145 std::vector<NumLib::LocalToGlobalIndexMap const*>
const& ,
146 std::vector<double>& )
const override
154 std::vector<GlobalVector*>
const& ,
155 std::vector<NumLib::LocalToGlobalIndexMap const*>
const& ,
156 std::vector<double>& )
const override
MathLib::WeightedPoint const & getWeightedPoint(unsigned const igp) const
unsigned getNumberOfPoints() const
virtual std::vector< double > const & getIntPtSaturation(const double t, std::vector< GlobalVector * > const &x, std::vector< NumLib::LocalToGlobalIndexMap const * > const &dof_table, std::vector< double > &cache) const =0
virtual std::vector< double > const & getIntPtWetPressure(const double t, std::vector< GlobalVector * > const &x, std::vector< NumLib::LocalToGlobalIndexMap const * > const &dof_table, std::vector< double > &cache) const =0
std::vector< double > const & getIntPtSaturation(const double, std::vector< GlobalVector * > const &, std::vector< NumLib::LocalToGlobalIndexMap const * > const &, std::vector< double > &) const override
static const int cap_pressure_coeff_index
typename ShapeMatricesType::NodalRowVectorType NodalRowVectorType
TwoPhaseFlowWithPPLocalAssembler(MeshLib::Element const &element, std::size_t const, NumLib::GenericIntegrationMethod const &integration_method, bool const is_axially_symmetric, TwoPhaseFlowWithPPProcessData const &process_data)
typename LocalAssemblerTraits::LocalMatrix LocalMatrixType
typename LocalAssemblerTraits::LocalVector LocalVectorType
static const int nonwet_pressure_matrix_index
typename ShapeMatricesType::ShapeMatrices ShapeMatrices
std::vector< IntegrationPointData< NodalRowVectorType, GlobalDimNodalMatrixType, NodalMatrixType >, Eigen::aligned_allocator< IntegrationPointData< NodalRowVectorType, GlobalDimNodalMatrixType, NodalMatrixType > > > _ip_data
static const int nonwet_pressure_coeff_index
static const int cap_pressure_matrix_index
static const int nonwet_pressure_size
typename ShapeMatricesType::NodalMatrixType NodalMatrixType
typename ShapeMatricesType::GlobalDimNodalMatrixType GlobalDimNodalMatrixType
typename ShapeMatricesType::GlobalDimVectorType GlobalDimVectorType
MeshLib::Element const & _element
std::vector< double > const & getIntPtWetPressure(const double, std::vector< GlobalVector * > const &, std::vector< NumLib::LocalToGlobalIndexMap const * > const &, std::vector< double > &) const override
std::vector< double > _pressure_wet
ShapeMatrixPolicyType< ShapeFunction, GlobalDim > ShapeMatricesType
TwoPhaseFlowWithPPProcessData const & _process_data
static const int cap_pressure_size
NumLib::GenericIntegrationMethod const & _integration_method
void assemble(double const t, double const dt, std::vector< double > const &local_x, std::vector< double > const &local_x_prev, std::vector< double > &local_M_data, std::vector< double > &local_K_data, std::vector< double > &local_b_data) override
Eigen::Map< const Eigen::RowVectorXd > getShapeMatrix(const unsigned integration_point) const override
Provides the shape matrix at the given integration point.
typename ShapeMatricesType::NodalVectorType NodalVectorType
std::vector< double > _saturation
typename ShapeMatricesType::GlobalDimMatrixType GlobalDimMatrixType
std::vector< typename ShapeMatricesType::ShapeMatrices, Eigen::aligned_allocator< typename ShapeMatricesType::ShapeMatrices > > initShapeMatrices(MeshLib::Element const &e, bool const is_axially_symmetric, IntegrationMethod const &integration_method)
const unsigned NUM_NODAL_DOF
NumLib::ShapeMatrices< NodalRowVectorType, DimNodalMatrixType, DimMatrixType, GlobalDimNodalMatrixType > ShapeMatrices
MatrixType< ShapeFunction::NPOINTS, ShapeFunction::NPOINTS > NodalMatrixType
MatrixType< GlobalDim, ShapeFunction::NPOINTS > GlobalDimNodalMatrixType
MatrixType< GlobalDim, GlobalDim > GlobalDimMatrixType
VectorType< GlobalDim > GlobalDimVectorType
VectorType< ShapeFunction::NPOINTS > NodalVectorType
RowVectorType< ShapeFunction::NPOINTS > NodalRowVectorType
GlobalDimNodalMatrixType const dNdx
IntegrationPointData(NodalRowVectorType N_, GlobalDimNodalMatrixType dNdx_, double const &integration_weight_, NodalMatrixType const massOperator_)
NodalRowVectorType const N
const double integration_weight
NodalMatrixType const massOperator
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
Vector< NNodes *NodalDOF > LocalVector
Matrix< NNodes *NodalDOF, NNodes *NodalDOF > LocalMatrix