https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Functions
SystemBase.C File Reference

Go to the source code of this file.

Functions

void extraSendList (std::vector< dof_id_type > &send_list, void *context)
 Free function used for a libMesh callback.
 
void extraSparsity (SparsityPattern::Graph &sparsity, std::vector< dof_id_type > &n_nz, std::vector< dof_id_type > &n_oz, void *context)
 Free function used for a libMesh callback.
 

Function Documentation

◆ extraSendList()

void extraSendList ( std::vector< dof_id_type > &  send_list,
void *  context 
)

Free function used for a libMesh callback.

Definition at line 40 of file SystemBase.C.

41{
42 SystemBase * sys = static_cast<SystemBase *>(context);
43 sys->augmentSendList(send_list);
44}
Base class for a system (of equations)
Definition SystemBase.h:87
virtual void augmentSendList(std::vector< dof_id_type > &send_list)
Will modify the send_list to add all of the extra ghosted dofs for this system.
Definition SystemBase.C:453

◆ extraSparsity()

void extraSparsity ( SparsityPattern::Graph sparsity,
std::vector< dof_id_type > &  n_nz,
std::vector< dof_id_type > &  n_oz,
void *  context 
)

Free function used for a libMesh callback.

Definition at line 48 of file SystemBase.C.

52{
53 SystemBase * sys = static_cast<SystemBase *>(context);
54 sys->augmentSparsity(sparsity, n_nz, n_oz);
55}
virtual void augmentSparsity(libMesh::SparsityPattern::Graph &sparsity, std::vector< dof_id_type > &n_nz, std::vector< dof_id_type > &n_oz)=0
Will modify the sparsity pattern to add logical geometric connections.