Reference documentation for deal.II version 9.6.0
|
#include <deal.II/multigrid/mg_transfer_global_coarsening.h>
Public Types | |
using | VectorType = LinearAlgebra::distributed::Vector<Number> |
Public Member Functions | |
MGTransferMF () | |
template<int dim, typename Number2 , int spacedim> | |
void | copy_to_mg (const DoFHandler< dim, spacedim > &dof_handler, MGLevelObject< LinearAlgebra::distributed::Vector< Number > > &dst, const LinearAlgebra::distributed::Vector< Number2 > &src) const |
template<int dim, typename Number2 , int spacedim> | |
void | copy_from_mg (const DoFHandler< dim, spacedim > &dof_handler, LinearAlgebra::distributed::Vector< Number2 > &dst, const MGLevelObject< LinearAlgebra::distributed::Vector< Number > > &src) const |
template<int dim, typename Number2 , int spacedim> | |
void | copy_from_mg_add (const DoFHandler< dim, spacedim > &dof_handler, LinearAlgebra::distributed::Vector< Number2 > &dst, const MGLevelObject< LinearAlgebra::distributed::Vector< Number > > &src) const |
void | set_component_to_block_map (const std::vector< unsigned int > &map) |
void | print_indices (std::ostream &os) const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
Global coarsening. | |
template<typename MGTwoLevelTransferObject > | |
MGTransferMF (const MGLevelObject< MGTwoLevelTransferObject > &transfer, const std::function< void(const unsigned int, VectorType &)> &initialize_dof_vector={}) | |
template<typename MGTwoLevelTransferObject > | |
void | initialize_two_level_transfers (const MGLevelObject< MGTwoLevelTransferObject > &transfer) |
void | build (const std::vector< std::shared_ptr< const Utilities::MPI::Partitioner > > &external_partitioners={}) |
void | build (const std::function< void(const unsigned int, VectorType &)> &initialize_dof_vector) |
Local smoothing. | |
MGTransferMF (const MGConstrainedDoFs &mg_constrained_dofs) | |
void | initialize_constraints (const MGConstrainedDoFs &mg_constrained_dofs) |
Global coarsening and local smoothing. | |
void | build (const DoFHandler< dim > &dof_handler, const std::vector< std::shared_ptr< const Utilities::MPI::Partitioner > > &external_partitioners={}) |
void | build (const DoFHandler< dim > &dof_handler, const std::function< void(const unsigned int, VectorType &)> &initialize_dof_vector) |
Transfer functions. | |
void | prolongate (const unsigned int to_level, VectorType &dst, const VectorType &src) const override |
void | prolongate_and_add (const unsigned int to_level, VectorType &dst, const VectorType &src) const override |
virtual void | restrict_and_add (const unsigned int from_level, VectorType &dst, const VectorType &src) const override |
template<class InVector > | |
void | copy_to_mg (const DoFHandler< dim > &dof_handler, MGLevelObject< VectorType > &dst, const InVector &src) const |
template<class OutVector > | |
void | copy_from_mg (const DoFHandler< dim > &dof_handler, OutVector &dst, const MGLevelObject< VectorType > &src) const |
template<class InVector > | |
void | interpolate_to_mg (const DoFHandler< dim > &dof_handler, MGLevelObject< VectorType > &dst, const InVector &src) const |
template<class InVector > | |
void | interpolate_to_mg (MGLevelObject< VectorType > &dst, const InVector &src) const |
Utility functions. | |
std::size_t | memory_consumption () const |
unsigned int | min_level () const |
unsigned int | max_level () const |
void | clear () |
Subscriptor functionality | |
Classes derived from Subscriptor provide a facility to subscribe to this object. This is mostly used by the SmartPointer class. | |
void | subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
unsigned int | n_subscriptions () const |
template<typename StreamType > | |
void | list_subscribers (StreamType &stream) const |
void | list_subscribers () const |
Static Public Member Functions | |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
Protected Member Functions | |
template<int dim, typename Number2 , int spacedim> | |
void | copy_to_mg (const DoFHandler< dim, spacedim > &dof_handler, MGLevelObject< LinearAlgebra::distributed::Vector< Number > > &dst, const LinearAlgebra::distributed::Vector< Number2 > &src, const bool solution_transfer) const |
template<int dim, int spacedim> | |
void | fill_and_communicate_copy_indices (const DoFHandler< dim, spacedim > &dof_handler) |
Protected Attributes | |
std::vector< types::global_dof_index > | sizes |
std::vector< Table< 2, unsigned int > > | copy_indices |
std::vector< Table< 2, unsigned int > > | solution_copy_indices |
std::vector< Table< 2, unsigned int > > | copy_indices_global_mine |
std::vector< Table< 2, unsigned int > > | copy_indices_level_mine |
std::vector< Table< 2, unsigned int > > | solution_copy_indices_level_mine |
bool | perform_plain_copy |
bool | perform_renumbered_plain_copy |
std::vector< unsigned int > | component_to_block_map |
SmartPointer< const MGConstrainedDoFs > | mg_constrained_dofs |
LinearAlgebra::distributed::Vector< Number > | ghosted_global_vector |
LinearAlgebra::distributed::Vector< Number > | solution_ghosted_global_vector |
MGLevelObject< LinearAlgebra::distributed::Vector< Number > > | ghosted_level_vector |
std::function< void(const unsigned int, LinearAlgebra::distributed::Vector< Number > &)> | initialize_dof_vector |
Private Types | |
using | map_value_type = decltype(counter_map)::value_type |
using | map_iterator = decltype(counter_map)::iterator |
Private Member Functions | |
void | initialize_internal_transfer (const DoFHandler< dim > &dof_handler, const SmartPointer< const MGConstrainedDoFs > &mg_constrained_dofs) |
std::pair< const DoFHandler< dim > *, unsigned int > | get_dof_handler_fine () const |
void | fill_and_communicate_copy_indices_global_coarsening (const DoFHandler< dim > &dof_handler) |
template<typename MGTwoLevelTransferObject > | |
void | initialize_transfer_references (const MGLevelObject< MGTwoLevelTransferObject > &transfer) |
template<class InVector > | |
void | initialize_dof_vector (const unsigned int level, VectorType &vector, const InVector &vector_reference, const bool omit_zeroing_entries) const |
void | assert_dof_handler (const DoFHandler< dim > &dof_handler_out) const |
template<int dim, int spacedim> | |
void | assert_built (const DoFHandler< dim, spacedim > &dof_handler) const |
void | check_no_subscribers () const noexcept |
Private Attributes | |
MGLevelObject< MGTwoLevelTransfer< dim, VectorType > > | internal_transfer |
MGLevelObject< SmartPointer< MGTwoLevelTransferBase< VectorType > > > | transfer |
std::vector< std::shared_ptr< const Utilities::MPI::Partitioner > > | external_partitioners |
std::atomic< unsigned int > | counter |
std::map< std::string, unsigned int > | counter_map |
std::vector< std::atomic< bool > * > | validity_pointers |
const std::type_info * | object_info |
Static Private Attributes | |
static std::mutex | mutex |
Implementation of the MGTransferBase. In contrast to other multigrid transfer operators, the user can provide separate transfer operators of type MGTwoLevelTransfer between each level. The sequence of functions calls for setup is:
Alternatively, this class can also be set up as in the case of MGTransferMatrixFree:
However, this is way to set up is currently only working for globally refined meshes.
This class currently only works for the tensor-product finite elements FE_Q and FE_DGQ and simplex elements FE_SimplexP and FE_SimplexDGP as well as for systems involving multiple components of one of these elements. Other elements are currently not implemented.
The implementation of this class is explained in detail in [160].
Definition at line 988 of file mg_transfer_global_coarsening.h.
using MGTransferMF< dim, Number >::VectorType = LinearAlgebra::distributed::Vector<Number> |
Value type.
Definition at line 995 of file mg_transfer_global_coarsening.h.
|
privateinherited |
The data type used in counter_map.
Definition at line 229 of file subscriptor.h.
|
privateinherited |
The iterator type used in counter_map.
Definition at line 234 of file subscriptor.h.
MGTransferMF< dim, Number >::MGTransferMF | ( | ) |
Default constructor.
MGTransferMF< dim, Number >::MGTransferMF | ( | const MGLevelObject< MGTwoLevelTransferObject > & | transfer, |
const std::function< void(const unsigned int, VectorType &)> & | initialize_dof_vector = {} ) |
Constructor taking a collection of transfer operators (with the coarsest level kept empty in transfer
) and an optional function that initializes the internal level vectors within the function call copy_to_mg() if used in the context of PreconditionMG. The template parameter MGTwoLevelTransferObject
should derive from MGTwoLevelTransferBase and implement the transfer operation (see for instance MGTwoLevelTransfer). It can also be a std::shared_ptr or std::unique_ptr to the actual transfer operator.
MGTransferMF< dim, Number >::MGTransferMF | ( | const MGConstrainedDoFs & | mg_constrained_dofs | ) |
Constructor with constraints. Equivalent to the default constructor followed by initialize_constraints().
void MGTransferMF< dim, Number >::initialize_two_level_transfers | ( | const MGLevelObject< MGTwoLevelTransferObject > & | transfer | ) |
Set two-level transfers.
void MGTransferMF< dim, Number >::build | ( | const std::vector< std::shared_ptr< const Utilities::MPI::Partitioner > > & | external_partitioners = {} | ) |
Similar function to MGTransferMatrixFree::build() with the difference that the information for the prolongation for each level has already been built. So this function only tries to optimize the data structures of the two-level transfer operators, e.g., by enabling inplace vector operations, by checking if external_partitioners
and the internal ones are compatible.
void MGTransferMF< dim, Number >::build | ( | const std::function< void(const unsigned int, VectorType &)> & | initialize_dof_vector | ) |
Same as above but taking a lambda for initializing vector instead of partitioners.
void MGTransferMF< dim, Number >::initialize_constraints | ( | const MGConstrainedDoFs & | mg_constrained_dofs | ) |
Initialize the constraints to be used in build().
void MGTransferMF< dim, Number >::build | ( | const DoFHandler< dim > & | dof_handler, |
const std::vector< std::shared_ptr< const Utilities::MPI::Partitioner > > & | external_partitioners = {} ) |
Actually build the information for the prolongation for each level.
dof_handler
with different DoF numbering as the one used within the provided two-level transfer objects into this function. In this case, vector entries are permuted during copy_to_mg(), copy_from_mg(), and interpolate_to_mg(). void MGTransferMF< dim, Number >::build | ( | const DoFHandler< dim > & | dof_handler, |
const std::function< void(const unsigned int, VectorType &)> & | initialize_dof_vector ) |
Same as above but taking a lambda for initializing vector instead of partitioners.
dof_handler
with different DoF numbering as the one used within the provided two-level transfer objects. In this case, vector entries are permuted during copy_to_mg(), copy_from_mg(), and interpolate_to_mg().
|
overridevirtual |
Perform prolongation.
Implements MGTransferBase< LinearAlgebra::distributed::Vector< Number > >.
|
overridevirtual |
Perform prolongation.
Reimplemented from MGTransferBase< LinearAlgebra::distributed::Vector< Number > >.
|
overridevirtual |
Perform restriction.
Implements MGTransferBase< LinearAlgebra::distributed::Vector< Number > >.
void MGTransferMF< dim, Number >::copy_to_mg | ( | const DoFHandler< dim > & | dof_handler, |
MGLevelObject< VectorType > & | dst, | ||
const InVector & | src ) const |
Initialize internal vectors and copy src
vector (associated to dof_handler
) to the finest multigrid level.
dof_handler
object needs to be the same as the DoFHandler passed directly to the function build() or indirectly to the function initialize_two_level_transfers(). Alternatively, the numbering of the DoFs need to be same. void MGTransferMF< dim, Number >::copy_from_mg | ( | const DoFHandler< dim > & | dof_handler, |
OutVector & | dst, | ||
const MGLevelObject< VectorType > & | src ) const |
Copy the values on the finest multigrid level to dst
vector (associated to dof_handler
).
dof_handler
object needs to be the same as the DoFHandler passed directly to the function build() or indirectly to the function initialize_two_level_transfers(). Alternatively, the numbering of the DoFs need to be same. void MGTransferMF< dim, Number >::interpolate_to_mg | ( | const DoFHandler< dim > & | dof_handler, |
MGLevelObject< VectorType > & | dst, | ||
const InVector & | src ) const |
Interpolate fine-mesh field src
(associated to dof_handler
) to each multigrid level and store the result in dst
. This function is different from restriction, where a weighted residual is transferred to a coarser level (transposition of prolongation matrix).
The argument dst
has to be initialized with the correct size according to the number of levels of the triangulation.
If an inner vector of dst
is empty or has incorrect locally owned size, it will be resized to locally relevant degrees of freedom on each level.
dof_handler
object needs to be the same as the DoFHandler passed directly to the function build() or indirectly to the function initialize_two_level_transfers(). Alternatively, the numbering of the DoFs need to be same. void MGTransferMF< dim, Number >::interpolate_to_mg | ( | MGLevelObject< VectorType > & | dst, |
const InVector & | src ) const |
Interpolate fine-mesh field src
to each multigrid level and store the result in dst
.
dof_handler
object needs passed. This function used the DoFHandler passed directly to the function build() or indirectly to the function initialize_two_level_transfers(). std::size_t MGTransferMF< dim, Number >::memory_consumption | ( | ) | const |
Return the memory consumption of the allocated memory in this class.
unsigned int MGTransferMF< dim, Number >::min_level | ( | ) | const |
Minimum level.
unsigned int MGTransferMF< dim, Number >::max_level | ( | ) | const |
Maximum level.
void MGTransferMF< dim, Number >::clear | ( | ) |
Clear all data fields and brings the class into a condition similar to after having called the default constructor.
|
private |
Initial internal transfer operator.
|
private |
Retrieve finest DoFHandler from two-level transfer objects.
|
private |
Initialize copy indices for MGTransferMF::copy_to_mg(), MGTransferMF::copy_to_mg(), and MGTransferMF::interpolate_to_mg() in the case of global coarsening.
|
private |
Set references to two-level transfer operators to be used.
|
private |
Function to initialize internal level vectors.
|
private |
Check that the internal DoFHandler is compatible with the external one provided by copy_to_mg(), copy_from_mg() and interpolate_to_mg() used, e.g., by PreconditionMG.
|
inherited |
Transfer from a vector on the global grid to vectors defined on each of the levels separately for the active degrees of freedom. In particular, for a globally refined mesh only the finest level in dst
is filled as a plain copy of src
. All the other level objects are left untouched.
|
protectedinherited |
Internal function to perform transfer of residuals or solutions basesd on the flag solution_transfer
.
|
inherited |
Transfer from multi-level vector to normal vector.
Copies data from active portions of an MGVector into the respective positions of a Vector<number>
. In order to keep the result consistent, constrained degrees of freedom are set to zero.
|
inherited |
Add a multi-level vector to a normal vector.
Works as the previous function, but probably not for continuous elements.
|
inherited |
If this object operates on BlockVector objects, we need to describe how the individual vector components are mapped to the blocks of a vector. For example, for a Stokes system, we have dim+1 vector components for velocity and pressure, but we may want to use block vectors with only two blocks for all velocities in one block, and the pressure variables in the other.
By default, if this function is not called, block vectors have as many blocks as the finite element has vector components. However, this can be changed by calling this function with an array that describes how vector components are to be grouped into blocks. The meaning of the argument is the same as the one given to the DoFTools::count_dofs_per_component function.
|
inherited |
Print the copy index fields for debugging purposes.
Definition at line 408 of file mg_level_global_transfer.cc.
|
protectedinherited |
Internal function to fill
copy_indices*. Called by derived classes.
Definition at line 280 of file mg_level_global_transfer.cc.
|
privateinherited |
This function is called to make sure that build() has been invoked.
|
inherited |
Subscribes a user of the object by storing the pointer validity
. The subscriber may be identified by text supplied as identifier
.
Definition at line 135 of file subscriptor.cc.
|
inherited |
Unsubscribes a user from the object.
identifier
and the validity
pointer must be the same as the one supplied to subscribe(). Definition at line 155 of file subscriptor.cc.
|
inlineinherited |
Return the present number of subscriptions to this object. This allows to use this class for reference counted lifetime determination where the last one to unsubscribe also deletes the object.
Definition at line 300 of file subscriptor.h.
|
inlineinherited |
List the subscribers to the input stream
.
Definition at line 317 of file subscriptor.h.
|
inherited |
List the subscribers to deallog
.
Definition at line 203 of file subscriptor.cc.
|
inlineinherited |
Read or write the data of this object to or from a stream for the purpose of serialization using the BOOST serialization library.
This function does not actually serialize any of the member variables of this class. The reason is that what this class stores is only who subscribes to this object, but who does so at the time of storing the contents of this object does not necessarily have anything to do with who subscribes to the object when it is restored. Consequently, we do not want to overwrite the subscribers at the time of restoring, and then there is no reason to write the subscribers out in the first place.
Definition at line 309 of file subscriptor.h.
|
privatenoexceptinherited |
Check that there are no objects subscribing to this object. If this check passes then it is safe to destroy the current object. It this check fails then this function will either abort or print an error message to deallog (by using the AssertNothrow mechanism), but will not throw an exception.
Definition at line 52 of file subscriptor.cc.
|
private |
Internal transfer operator.
Definition at line 1300 of file mg_transfer_global_coarsening.h.
|
private |
Collection of the two-level transfer operators.
Definition at line 1305 of file mg_transfer_global_coarsening.h.
|
private |
External partitioners used during initialize_dof_vector().
Definition at line 1311 of file mg_transfer_global_coarsening.h.
|
protectedinherited |
Sizes of the multi-level vectors.
Definition at line 511 of file mg_transfer.h.
|
protectedinherited |
Mapping for the copy_to_mg() and copy_from_mg() functions. Here only index pairs locally owned is stored.
The data is organized as follows: one table per level. This table has two rows. The first row contains the global index, the second one the level index.
Definition at line 521 of file mg_transfer.h.
|
protectedinherited |
Same as above, but used to transfer solution vectors.
Definition at line 526 of file mg_transfer.h.
|
protectedinherited |
Additional degrees of freedom for the copy_to_mg() function. These are the ones where the global degree of freedom is locally owned and the level degree of freedom is not.
Organization of the data is like for copy_indices
.
Definition at line 535 of file mg_transfer.h.
|
protectedinherited |
Additional degrees of freedom for the copy_from_mg() function. These are the ones where the level degree of freedom is locally owned and the global degree of freedom is not.
Organization of the data is like for copy_indices
.
Definition at line 544 of file mg_transfer.h.
|
protectedinherited |
Same as above, but used to transfer solution vectors.
Definition at line 549 of file mg_transfer.h.
|
protectedinherited |
This variable stores whether the copy operation from the global to the level vector is actually a plain copy to the finest level. This means that the grid has no adaptive refinement and the numbering on the finest multigrid level is the same as in the global case.
Definition at line 557 of file mg_transfer.h.
|
protectedinherited |
This variable stores whether the copy operation from the global to the level vector is actually a plain copy to the finest level except for a renumbering within the finest level of the degrees of freedom. This means that the grid has no adaptive refinement.
Definition at line 565 of file mg_transfer.h.
|
protectedinherited |
The vector that stores what has been given to the set_component_to_block_map() function.
Definition at line 571 of file mg_transfer.h.
|
protectedinherited |
The mg_constrained_dofs of the level systems.
Definition at line 576 of file mg_transfer.h.
|
mutableprotectedinherited |
In the function copy_to_mg, we need to access ghosted entries of the global vector for inserting into the level vectors. This vector is populated with those entries.
Definition at line 583 of file mg_transfer.h.
|
mutableprotectedinherited |
Same as above but used when working with solution vectors.
Definition at line 589 of file mg_transfer.h.
|
mutableprotectedinherited |
In the function copy_from_mg, we access all level vectors with certain ghost entries for inserting the result into a global vector.
Definition at line 596 of file mg_transfer.h.
|
protectedinherited |
Function to initialize internal level vectors.
Definition at line 603 of file mg_transfer.h.
|
mutableprivateinherited |
Store the number of objects which subscribed to this object. Initially, this number is zero, and upon destruction it shall be zero again (i.e. all objects which subscribed should have unsubscribed again).
The creator (and owner) of an object is counted in the map below if HE manages to supply identification.
We use the mutable
keyword in order to allow subscription to constant objects also.
This counter may be read from and written to concurrently in multithreaded code: hence we use the std::atomic
class template.
Definition at line 218 of file subscriptor.h.
|
mutableprivateinherited |
In this map, we count subscriptions for each different identification string supplied to subscribe().
Definition at line 224 of file subscriptor.h.
|
mutableprivateinherited |
In this vector, we store pointers to the validity bool in the SmartPointer objects that subscribe to this class.
Definition at line 240 of file subscriptor.h.
|
mutableprivateinherited |
Pointer to the typeinfo object of this object, from which we can later deduce the class name. Since this information on the derived class is neither available in the destructor, nor in the constructor, we obtain it in between and store it here.
Definition at line 248 of file subscriptor.h.
|
staticprivateinherited |
A mutex used to ensure data consistency when accessing the mutable
members of this class. This lock is used in the subscribe() and unsubscribe() functions, as well as in list_subscribers()
.
Definition at line 271 of file subscriptor.h.