21 #include "libmesh/elem.h" 22 #include "libmesh/enum_to_string.h" 23 #include "libmesh/fe.h" 24 #include "libmesh/fe_interface.h" 25 #include "libmesh/fe_macro.h" 36 void l2_hierarchic_nodal_soln(
const Elem * elem,
38 const std::vector<Number> & elem_soln,
39 std::vector<Number> & nodal_soln,
40 const bool add_p_level)
42 const unsigned int n_nodes = elem->n_nodes();
44 const ElemType elem_type = elem->type();
48 const Order totalorder = order + add_p_level*elem->p_level();
58 libmesh_assert_equal_to (elem_soln.size(), 1);
60 std::fill(nodal_soln.begin(), nodal_soln.end(), elem_soln[0]);
70 const unsigned int n_sf =
73 std::vector<Point> refspace_nodes;
75 libmesh_assert_equal_to (refspace_nodes.size(),
n_nodes);
76 libmesh_assert_equal_to (elem_soln.size(), n_sf);
79 std::fill(nodal_soln.begin(), nodal_soln.end(), 0);
81 for (
unsigned int n=0; n<
n_nodes; n++)
83 for (
unsigned int i=0; i<n_sf; i++)
84 nodal_soln[n] += elem_soln[i] *
94 unsigned int l2_hierarchic_n_dofs(
const ElemType t,
const Order o)
96 libmesh_assert_greater (o, 0);
110 return ((o+1)*(o+1));
114 return ((o+1)*(o+1)*(o+1));
120 return ((o+1)*(o+1)*(o+2)/2);
124 return ((o+1)*(o+2)/2);
128 return ((o+1)*(o+2)*(o+3)/6);
132 libmesh_error_msg(
"ERROR: Invalid ElemType " <<
Utility::enum_to_string(t) <<
" selected for L2_HIERARCHIC FE family!");
138 unsigned int l2_hierarchic_n_dofs(
const Elem * e,
const Order o)
141 return l2_hierarchic_n_dofs(e->type(), o);
199 #ifdef LIBMESH_ENABLE_AMR 214 #endif // #ifdef LIBMESH_ENABLE_AMR
static unsigned int n_dofs(const ElemType t, const Order o)
ElemType
Defines an enum for geometric element types.
Order
defines an enum for polynomial orders.
This is the base class from which all geometric element types are derived.
static unsigned int n_dofs_at_node(const ElemType t, const Order o, const unsigned int n)
virtual bool shapes_need_reinit() const override
The libMesh namespace provides an interface to certain functionality in the library.
LIBMESH_FE_NODAL_SOLN(LIBMESH_FE_SIDE_NODAL_SOLN() LIBMESH_DEFAULT_NDOFS(BERNSTEIN) template<> FEContinuity FE< 0 BERNSTEIN, bernstein_nodal_soln)
virtual bool is_hierarchic() const override
This class handles the numbering of degrees of freedom on a mesh.
LIBMESH_FE_SIDE_NODAL_SOLN(HIERARCHIC_VEC)
const dof_id_type n_nodes
static unsigned int n_shape_functions(const unsigned int dim, const FEType &fe_t, const ElemType t)
static Real shape(const unsigned int dim, const FEType &fe_t, const ElemType t, const unsigned int i, const Point &p)
static void get_refspace_nodes(const ElemType t, std::vector< Point > &nodes)
static unsigned int n_dofs_per_elem(const ElemType t, const Order o)
virtual FEContinuity get_continuity() const override
std::string enum_to_string(const T e)
static void compute_constraints(DofConstraints &constraints, DofMap &dof_map, const unsigned int variable_number, const Elem *elem)
Computes the constraint matrix contributions (for non-conforming adapted meshes) corresponding to var...
FEContinuity
defines an enum for finite element types to libmesh_assert a certain level (or type? Hcurl?) of continuity.
The constraint matrix storage format.