libMesh
Loading...
Searching...
No Matches
elem_assembly.h
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3
4// This library is free software; you can redistribute it and/or
5// modify it under the terms of the GNU Lesser General Public
6// License as published by the Free Software Foundation; either
7// version 2.1 of the License, or (at your option) any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// Lesser General Public License for more details.
13
14// You should have received a copy of the GNU Lesser General Public
15// License along with this library; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18#ifndef LIBMESH_ELEM_ASSEMBLY_H
19#define LIBMESH_ELEM_ASSEMBLY_H
20
21#include "libmesh/reference_counted_object.h"
22#include "libmesh/dense_matrix.h"
23
24namespace libMesh
25{
26
27class FEMContext;
28class System;
29class Node;
30
38class ElemAssembly : public ReferenceCountedObject<ElemAssembly>
39{
40public:
41
45 ElemAssembly () = default;
46
50 virtual ~ElemAssembly () = default;
51
55 virtual void interior_assembly(FEMContext &) { }
56
60 virtual void boundary_assembly(FEMContext &) { }
61
66 virtual void
67 get_nodal_values(std::vector<dof_id_type>& ,
70 const System & ,
71 const Node &)
72 {
73 // Do nothing by default
74 }
75
76protected:
77
78};
79
80}
81
82#endif // LIBMESH_ELEM_ASSEMBLY_H
Defines a dense matrix for use in Finite Element-type computations.
Defines a dense vector for use in Finite Element-type computations.
ElemAssembly provides a per-element (interior and boundary) assembly functionality.
virtual void get_nodal_values(std::vector< dof_id_type > &, DenseMatrix< Number > &, DenseVector< Number > &, const System &, const Node &)
Get values to add to the matrix or rhs vector based on node.
virtual void interior_assembly(FEMContext &)
Perform the element interior assembly.
virtual ~ElemAssembly()=default
Destructor.
virtual void boundary_assembly(FEMContext &)
Perform the element boundary assembly.
ElemAssembly()=default
Constructor.
This class provides all data required for a physics package (e.g.
Definition fem_context.h:63
A Node is like a Point, but with more information.
Definition node.h:55
This class implements reference counting.
Manages consistently variables, degrees of freedom, and coefficient vectors.
Definition system.h:100
The libMesh namespace provides an interface to certain functionality in the library.