My Project
|
A LeveTransferPolicy that used aggregation to construct the coarse level system. More...
#include <twolevelmethodcpr.hh>
Public Types | |
typedef LevelTransferPolicyCpr< O, O > | FatherType |
typedef C | Criterion |
typedef SequentialInformation | ParallelInformation |
![]() | |
typedef O | FineOperatorType |
The linear operator of the finel level system. More... | |
typedef FineOperatorType::range_type | FineRangeType |
The type of the range of the fine level operator. | |
typedef FineOperatorType::domain_type | FineDomainType |
The type of the domain of the fine level operator. | |
typedef O | CoarseOperatorType |
The linear operator of the finel level system. More... | |
typedef CoarseOperatorType::range_type | CoarseRangeType |
The type of the range of the coarse level operator. | |
typedef CoarseOperatorType::domain_type | CoarseDomainType |
The type of the domain of the coarse level operator. | |
Public Member Functions | |
AggregationLevelTransferPolicyCpr (const Criterion &crit) | |
void | createCoarseLevelSystem (const O &fineOperator) |
Algebraically creates the coarse level system. More... | |
void | moveToCoarseLevel (const typename FatherType::FineRangeType &fineRhs) |
void | moveToFineLevel (typename FatherType::FineDomainType &fineLhs) |
Updates the fine level linear system after the correction of the coarse levels system. More... | |
AggregationLevelTransferPolicyCpr * | clone () const |
Clone the current object. | |
![]() | |
std::shared_ptr< CoarseOperatorType > & | getCoarseLevelOperator () |
Get the coarse level operator. More... | |
CoarseRangeType & | getCoarseLevelRhs () |
Get the coarse level right hand side. More... | |
CoarseDomainType & | getCoarseLevelLhs () |
Get the coarse level left hand side. More... | |
virtual void | moveToCoarseLevel (const FineRangeType &fineRhs)=0 |
Transfers the data to the coarse level. More... | |
virtual void | calculateCoarseEntries (const FineOperatorType &fineOperator)=0 |
???. | |
virtual | ~LevelTransferPolicyCpr () |
Destructor. | |
Additional Inherited Members | |
![]() | |
CoarseRangeType | rhs_ |
The coarse level rhs. | |
CoarseDomainType | lhs_ |
The coarse level lhs. | |
std::shared_ptr< CoarseOperatorType > | operator_ |
the coarse level linear operator. | |
A LeveTransferPolicy that used aggregation to construct the coarse level system.
O | The type of the fine and coarse level operator. |
C | The criterion that describes the aggregation procedure. |
|
inlinevirtual |
Algebraically creates the coarse level system.
After returning from this function the coarse level operator can be accessed using getCoarseLevelOperator().
fineOperator | The operator of the fine level system. |
Implements Dune::Amg::LevelTransferPolicyCpr< O, O >.
|
inlinevirtual |
Updates the fine level linear system after the correction of the coarse levels system.
After returning from this function the coarse level correction will have been added to fine level system.
[in,out] | fineLhs | The left hand side of the fine level to update with the coarse level correction. |
Implements Dune::Amg::LevelTransferPolicyCpr< O, O >.