OGS
ExtrapolatableElement.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <Eigen/Core>
14
15namespace NumLib
16{
24{
25public:
27 virtual Eigen::Map<const Eigen::RowVectorXd> getShapeMatrix(
28 const unsigned integration_point) const = 0;
29
30 virtual ~ExtrapolatableElement() = default;
31};
32
33} // namespace NumLib
virtual ~ExtrapolatableElement()=default
virtual Eigen::Map< const Eigen::RowVectorXd > getShapeMatrix(const unsigned integration_point) const =0
Provides the shape matrix at the given integration point.