22 typedef std::function<Eigen::Vector3d(
const Eigen::Vector3d &)>
FunctionType;
28 const Eigen::MatrixXd & _divergence,
29 const Eigen::MatrixXd & _divergence_rhs,
30 const Eigen::MatrixXd & _potential
62 const int doe_cell = -1,
63 const int doe_face = -1
108 const double & penalty_factor = 1.,
109 const Eigen::MatrixXd & mass_Pk3_T = Eigen::MatrixXd::Zero(1,1),
116 const XCurl & x_curl,
117 const std::string & side,
118 const double & penalty_factor = 1.,
119 const Eigen::MatrixXd & mass_Pk3_T = Eigen::MatrixXd::Zero(1,1),
126 const std::vector<Eigen::MatrixXd> & leftOp,
127 const std::vector<Eigen::MatrixXd> & rightOp,
128 const double & penalty_factor,
129 const Eigen::MatrixXd & w_mass_Pk3_T,
Construct all polynomial spaces for the DDR sequence.
Definition: ddrcore.hpp:62
Base class for global DOF spaces. Provides functions to manipulate global DOFs (the local version bei...
Definition: globaldofspace.hpp:16
Discrete Hcurl space: local operators, L2 product and global interpolator.
Definition: xcurl.hpp:19
Discrete Hdiv space: local operators, L2 product and global interpolator.
Definition: xdiv.hpp:20
Class to describe a mesh.
Definition: MeshND.hpp:17
LocalOperators _compute_cell_divergence_potential(size_t iT)
Definition: xdiv.cpp:108
const size_t & degree() const
Return the polynomial degree.
Definition: ddrcore.hpp:140
XDiv(const DDRCore &ddr_core, bool use_threads=true, std::ostream &output=std::cout)
Constructor.
Definition: xdiv.cpp:13
const DDRCore & m_ddr_core
Definition: xdiv.hpp:137
Eigen::MatrixXd computeL2Product_with_Ops(const size_t iT, const std::vector< Eigen::MatrixXd > &leftOp, const std::vector< Eigen::MatrixXd > &rightOp, const double &penalty_factor, const Eigen::MatrixXd &w_mass_Pk3_T, const IntegralWeight &weight) const
Compute the matrix of the L2 product, applying leftOp and rightOp to the variables....
Definition: xdiv.cpp:326
std::function< Eigen::Vector3d(const Eigen::Vector3d &)> FunctionType
Definition: xdiv.hpp:22
const CellBases & cellBases(size_t iT) const
Return cell bases for element iT.
Definition: ddrcore.hpp:146
const size_t & degree() const
Return the polynomial degree.
Definition: xdiv.hpp:54
Eigen::MatrixXd computeL2ProductCurl(const size_t iT, const XCurl &x_curl, const std::string &side, const double &penalty_factor=1., const Eigen::MatrixXd &mass_Pk3_T=Eigen::MatrixXd::Zero(1, 1), const IntegralWeight &weight=IntegralWeight(1.)) const
Compute the matrix of the (weighted) L2-product as 'computeL2Product', with application of the discre...
Definition: xdiv.cpp:259
const Mesh & mesh() const
Return a const reference to the mesh.
Definition: ddrcore.hpp:134
Eigen::MatrixXd divergence_rhs
Definition: xdiv.hpp:40
const Mesh & mesh() const
Return the mesh.
Definition: xdiv.hpp:48
Eigen::MatrixXd divergence
Definition: xdiv.hpp:39
const DDRCore::FaceBases & faceBases(const Face &F) const
Return cell bases for face F.
Definition: xdiv.hpp:98
const LocalOperators & cellOperators(const Cell &T) const
Return cell operators for cell T.
Definition: xdiv.hpp:74
bool m_use_threads
Definition: xdiv.hpp:138
std::ostream & m_output
Definition: xdiv.hpp:139
Eigen::MatrixXd potential
Definition: xdiv.hpp:41
Eigen::MatrixXd computeL2Product(const size_t iT, const double &penalty_factor=1., const Eigen::MatrixXd &mass_Pk3_T=Eigen::MatrixXd::Zero(1, 1), const IntegralWeight &weight=IntegralWeight(1.)) const
Compute the matrix of the (weighted) L2-product for the cell of index iT.
Definition: xdiv.cpp:216
const DDRCore::FaceBases & faceBases(size_t iF) const
Return face bases for the face of index iF.
Definition: xdiv.hpp:92
std::vector< std::unique_ptr< LocalOperators > > m_cell_operators
Definition: xdiv.hpp:142
Eigen::VectorXd interpolate(const FunctionType &v, const int doe_cell=-1, const int doe_face=-1) const
Interpolator of a continuous function.
Definition: xdiv.cpp:48
const LocalOperators & cellOperators(size_t iT) const
Return cell operators for the cell of index iT.
Definition: xdiv.hpp:68
const DDRCore::CellBases & cellBases(const Cell &T) const
Return cell bases for cell T.
Definition: xdiv.hpp:86
const FaceBases & faceBases(size_t iF) const
Return face bases for face iF.
Definition: ddrcore.hpp:154
LocalOperators(const Eigen::MatrixXd &_divergence, const Eigen::MatrixXd &_divergence_rhs, const Eigen::MatrixXd &_potential)
Definition: xdiv.hpp:27
const DDRCore::CellBases & cellBases(size_t iT) const
Return cell bases for the face of index iT.
Definition: xdiv.hpp:80
bool use_threads
Definition: HHO_DiffAdvecReac.hpp:47
Definition: ddr-magnetostatics.hpp:40
MeshND::Face< 2 > Face
Definition: Mesh2D.hpp:12
MeshND::Cell< 2 > Cell
Definition: Mesh2D.hpp:13
Structure to store element bases.
Definition: ddrcore.hpp:86
Structure to store face bases.
Definition: ddrcore.hpp:105
Structure for weights (scalar, at the moment) in integral.
Definition: integralweight.hpp:36
A structure to store local operators (divergence and potential)
Definition: xdiv.hpp:26