DoF Manager
This will contains a description of the DoF manager in GEOS.
Brief description
The main aim of the Degrees-of-Freedom (DoF) Manager class is to handle all degrees of freedom associated with fields that exist on mesh elements, faces, edges and nodes. It creates a map between local mesh objects and global DoF indices. Additionally, DofManager simplifies construction of system matrix sparsity patterns.
Key concepts are locations and connectors. Locations, that can be elements, faces, edges or nodes, represent where the DoF is assigned. For example, a DoF for pressure in a two-point flux approximation will be on a cell (i.e. element), while a displacement DoF for structural equations will be on a node. The counterparts of locations are connectors, that are the geometrical entities that link together different DoFs that create the sparsity pattern. Connectors can be elements, faces, edges, nodes or none. Using the same example as before, connectors will be faces and cells, respectively. The case of a mass matrix, where every element is linked only to itself, is an example when there are no connectors, i.e. these have to be set to none.
DoFs located on a mesh object are owned by the same rank that owns the object in parallel mesh partitioning. Two types of DoF numbering are supported, with the difference only showing in parallel runs of multi-field problems.
Initially, each field is assigned an independent DoF numbering that starts at 0 and is contiguous across all MPI ranks. Within each rank, locally owned DoFs are numbered sequentially across mesh locations, and within each mesh location (e.g. node) - sequentially according to component number. With this numbering, sparsity patterns can be constructed for individual sub-matrices that represent diagonal/off-diagonal blocks of the global coupled system matrix.
After all fields have been declared, the user can call
DofManager::reorderByRank()
, which constructs a globally contiguous DoF numbering across all fields. Specifically, all DoFs owned by rank 0 are numbered field-by-field starting from 0, then those on rank 1, etc. This makes global system sparsity pattern compatible with linear algebra packages that only support contiguous matrix rows on each rank. At this point, coupled system matrix sparsity pattern can be constructed.
Thus, each instance of DofManager
only supports one type of numbering.
If both types are required, the user is advised to maintain two separate instances of DofManager
.
DofManager
allocates a separate “DOF index” array for each field on the mesh.
It is an array of global indices, where each value represents the first DoF index for that field and location (or equivalently, the row and column offset of that location’s equations and variables for the field in the matrix).
For example, if index array for a field with 3 components contains the value N, global DoF numbers for that location will be N, N+1, N+2.
DoF on ghosted locations have the same indices as on the owning rank.
The array is stored under a generated key, which can be queried from the DoF manager, and is typically used in system assembly.
Methods
The main methods of DoF Manager
are:
setDomain
: sets the domain containing mesh bodies to operate ondomain
identifies the global domain
void setDomain( DomainPartition * const domain );
addField
: creates a new set of DoF, labeledfield
, with specificlocation
. Default number ofcomponents
is1
, like for pressure in flux. Defaultregions
is the empty string, meaning all domain.
void addField( string const & fieldName, Location const location, localIndex const components, arrayView1d< string const > const & regions );
addCoupling
: creates a coupling between two fields (rowField
andcolField
) according to a givenconnectivity
in the regions defined byregions
. Both fields (row and column) must have already been defined on the regions where is required the coupling among them. Default value forregions
is the whole intersection between the regions where the first and the second fields are defined. This method also creates the coupling betweencolField
androwField
, i.e. the transpose of the rectangular sparsity pattern. This default behaviour can be disabled by passingsymmetric = false
.
void addCoupling( string const & rowField, string const & colField, Connectivity const connectivity, arrayView1d< string const > const & regions, bool const symmetric );
reorderByRank
: finish populating field and coupling information and apply DoF re-numbering
void reorderByRank();
getKey
: returns the “key” associated with the field, that can be used to access the index array on the mesh object manager corresponding to field’s location.
string const & getKey( string const & fieldName );
clear
: removes all fields, releases memory and re-opens the DofManager
void clear();
setSparsityPattern
: populates the sparsity for the givenrowField
andcolField
intomatrix
. Closes the matrix ifclosePattern
istrue
.
void setSparsityPattern( MATRIX & matrix, string const & rowField, string const & colField, bool closePattern = true) const;
setSparsityPattern
: populates the sparsity for the full system matrix intomatrix
. Closes the matrix ifclosePattern
istrue
.
void setSparsityPattern( MATRIX & matrix, bool closePattern = true ) const;
numGlobalDofs
: returns the total number of DoFs across all processors for the specified namefield
(if given) or all fields (if empty).
globalIndex numGlobalDofs( string const & field = "" ) const;
numLocalDofs
: returns the number of DoFs on this process for the specified namefield
(if given) or all fields (if empty).
localIndex numLocalDofs( string const & field = "" ) const;
printFieldInfo
: prints a short summary of declared fields and coupling to the output streamos
.
void printFieldInfo( std::ostream & os = std::cout ) const;
Example
Here we show how the sparsity pattern is computed for a simple 2D quadrilateral mesh with 6 elements. Unknowns are pressure, located on the element center, and displacements (x and y components), located on the nodes. For fluxes, a two-point flux approximation (TPFA) is used. The representation of the sparsity pattern of the matrix (connectors/locations) for the simple mesh, shown in Fig. 99, is reported in Fig. 100. It can be noticed that the two unknowns for the displacements x and y are grouped together. Elements are the connectivity for DoF on nodes (Finite Element Method for displacements) and on elements (pressures). Faces are the connectivity for DoF on elements (Finite Volume Method for pressure), being the flux computation based on the pressure on the two adjacent elements.
The global sparsity pattern, shown in Fig. 101, is obtained through the symbolic multiplication of the transpose of the matrix and the matrix itself, i.e. .
Real mesh and patterns
Now we build the pattern of the Jacobian matrix for a simple 3D mesh, shown in Fig. 102. Fields are:
displacement (location: node, connectivity: element) defined on the blue, orange and red regions;
pressure (location: element, connectivity: face) defined on the green, orange and red regions;
mass matrix (location: element, connectivity: element) defined on the green region only.
Moreover, following coupling are imposed:
displacement-pressure (connectivity: element) on the orange region only;
pressure-mass matrix and transpose (connectivity: element) everywhere it is possibile.
Fig. 103 shows the global pattern with the field-based ordering of unknowns. Different colors mean different fields. Red unkwnons are associated with displacement, yellow ones with pressure and blue ones with mass matrix. Orange means the coupling among displacement and pressure, while green is the symmetric coupling among pressure and mass matrix.
Fig. 104 shows the global pattern with the MPI rank-based ordering of unknowns. In this case, just two processes are used. Again, different colors indicate different ranks.