Abstract base class for GAMG agglomerated interfaces. More...
Public Member Functions | |
TypeName ("GAMGInterface") | |
Runtime type information. More... | |
declareRunTimeSelectionTable (autoPtr, GAMGInterface, lduInterface,(const label index, const lduInterfacePtrsList &coarseInterfaces, const lduInterface &fineInterface, const labelField &localRestrictAddressing, const labelField &neighbourRestrictAddressing, const label fineLevelIndex, const label coarseComm),(index, coarseInterfaces, fineInterface, localRestrictAddressing, neighbourRestrictAddressing, fineLevelIndex, coarseComm)) | |
declareRunTimeSelectionTable (autoPtr, GAMGInterface, Istream,(const label index, const lduInterfacePtrsList &coarseInterfaces, Istream &is),(index, coarseInterfaces, is)) | |
GAMGInterface (const label index, const lduInterfacePtrsList &coarseInterfaces) | |
Construct from interfaces, restrict addressing set later on. More... | |
GAMGInterface (const label index, const lduInterfacePtrsList &coarseInterfaces, const labelUList &faceCells, const labelUList &faceRestrictAddressing) | |
Construct from interfaces and restrict addressing. More... | |
GAMGInterface (const label index, const lduInterfacePtrsList &coarseInterfaces, Istream &is) | |
Construct from Istream. More... | |
virtual label | size () const |
Return size. More... | |
virtual label | index () const |
virtual const lduInterfacePtrsList & | coarseInterfaces () const |
virtual const labelUList & | faceCells () const |
Return faceCell addressing. More... | |
virtual const labelList & | faceRestrictAddressing () const |
Return (local)face restrict addressing. More... | |
virtual labelList & | faceRestrictAddressing () |
Return non-const access to face restrict addressing. More... | |
template<class Type > | |
tmp< Field< Type > > | interfaceInternalField (const UList< Type > &internalData) const |
Return the interface internal field of the given field. More... | |
template<class Type > | |
tmp< Field< Type > > | interfaceInternalField (const UList< Type > &internalData, const labelUList &faceCells) const |
template<class Type > | |
void | interfaceInternalField (const UList< Type > &internalData, List< Type > &) const |
Get the interface internal field of the given field. More... | |
virtual tmp< labelField > | interfaceInternalField (const labelUList &internalData) const |
Return the values of the given internal data adjacent to. More... | |
virtual tmp< labelField > | interfaceInternalField (const labelUList &internalData, const labelUList &faceCells) const |
void | combine (const GAMGInterface &) |
Merge the next level with this level. More... | |
virtual tmp< scalarField > | agglomerateCoeffs (const scalarField &fineCoeffs) const |
Agglomerating the given fine-level coefficients and return. More... | |
virtual void | write (Ostream &) const =0 |
Write to stream. More... | |
template<class Type > | |
Foam::tmp< Foam::Field< Type > > | interfaceInternalField (const UList< Type > &iF) const |
template<class Type > | |
Foam::tmp< Foam::Field< Type > > | interfaceInternalField (const UList< Type > &iF, const labelUList &faceCells) const |
Public Member Functions inherited from lduInterface | |
TypeName ("lduInterface") | |
Runtime type information. More... | |
lduInterface ()=default | |
Construct null. More... | |
virtual | ~lduInterface ()=default |
Destructor. More... | |
virtual const labelUList & | faceCells () const =0 |
Return faceCell addressing. More... | |
virtual tmp< labelField > | interfaceInternalField (const labelUList &internalData) const =0 |
Return the values of the given internal data adjacent to. More... | |
virtual tmp< labelField > | interfaceInternalField (const labelUList &internalData, const labelUList &faceCells) const =0 |
virtual void | initInternalFieldTransfer (const Pstream::commsTypes commsType, const labelUList &iF) const |
Initialise transfer of internal field adjacent to the interface. More... | |
virtual void | initInternalFieldTransfer (const Pstream::commsTypes commsType, const labelUList &iF, const labelUList &faceCells) const |
virtual tmp< labelField > | internalFieldTransfer (const Pstream::commsTypes commsType, const labelUList &iF) const =0 |
Transfer and return internal field adjacent to the interface. More... | |
Static Public Member Functions | |
static autoPtr< GAMGInterface > | New (const label index, const lduInterfacePtrsList &coarseInterfaces, const lduInterface &fineInterface, const labelField &localRestrictAddressing, const labelField &neighbourRestrictAddressing, const label fineLevelIndex, const label coarseComm) |
Return a pointer to a new interface created on freestore given. More... | |
static autoPtr< GAMGInterface > | New (const word &coupleType, const label index, const lduInterfacePtrsList &coarseInterfaces, Istream &is) |
Return a pointer to a new interface created on freestore given. More... | |
Protected Member Functions | |
GAMGInterface (const GAMGInterface &)=delete | |
No copy construct. More... | |
void | operator= (const GAMGInterface &)=delete |
No copy assignment. More... | |
Protected Attributes | |
const label | index_ |
My index in coarseInterfaces. More... | |
const lduInterfacePtrsList & | coarseInterfaces_ |
All interfaces. More... | |
labelList | faceCells_ |
Face-cell addressing. More... | |
labelList | faceRestrictAddressing_ |
Face restrict addressing. More... | |
Abstract base class for GAMG agglomerated interfaces.
Definition at line 54 of file GAMGInterface.H.
|
protecteddelete |
No copy construct.
|
inline |
Construct from interfaces, restrict addressing set later on.
Definition at line 164 of file GAMGInterface.H.
|
inline |
Construct from interfaces and restrict addressing.
Definition at line 176 of file GAMGInterface.H.
GAMGInterface | ( | const label | index, |
const lduInterfacePtrsList & | coarseInterfaces, | ||
Istream & | is | ||
) |
Construct from Istream.
Definition at line 43 of file GAMGInterface.C.
|
protecteddelete |
No copy assignment.
TypeName | ( | "GAMGInterface" | ) |
Runtime type information.
declareRunTimeSelectionTable | ( | autoPtr | , |
GAMGInterface | , | ||
lduInterface | , | ||
(const label index, const lduInterfacePtrsList &coarseInterfaces, const lduInterface &fineInterface, const labelField &localRestrictAddressing, const labelField &neighbourRestrictAddressing, const label fineLevelIndex, const label coarseComm) | , | ||
(index, coarseInterfaces, fineInterface, localRestrictAddressing, neighbourRestrictAddressing, fineLevelIndex, coarseComm) | |||
) |
declareRunTimeSelectionTable | ( | autoPtr | , |
GAMGInterface | , | ||
Istream | , | ||
(const label index, const lduInterfacePtrsList &coarseInterfaces, Istream &is) | , | ||
(index, coarseInterfaces, is) | |||
) |
|
static |
Return a pointer to a new interface created on freestore given.
the fine interface
Definition at line 36 of file GAMGInterfaceNew.C.
References GAMGInterface::coarseInterfaces(), Foam::exit(), Foam::FatalError, FatalErrorInLookup, and GAMGInterface::index().
Referenced by GAMGInterface::interfaceInternalField().
|
static |
Return a pointer to a new interface created on freestore given.
the fine interface
Definition at line 77 of file GAMGInterfaceNew.C.
References Foam::exit(), Foam::FatalError, and FatalErrorInLookup.
|
inlinevirtual |
Return size.
Definition at line 205 of file GAMGInterface.H.
References GAMGInterface::faceCells_, and UList< T >::size().
Referenced by GAMGInterface::interfaceInternalField(), cyclicACMIGAMGInterfaceField::size(), cyclicAMIGAMGInterfaceField::size(), cyclicGAMGInterfaceField::size(), processorGAMGInterfaceField::size(), and calculatedProcessorGAMGInterfaceField::size().
|
inlinevirtual |
Definition at line 210 of file GAMGInterface.H.
References GAMGInterface::index_.
Referenced by GAMGInterface::New().
|
inlinevirtual |
Definition at line 215 of file GAMGInterface.H.
References GAMGInterface::coarseInterfaces_.
Referenced by GAMGInterface::New().
|
inlinevirtual |
Return faceCell addressing.
Implements lduInterface.
Definition at line 221 of file GAMGInterface.H.
References GAMGInterface::faceCells_.
Referenced by cyclicACMIGAMGInterface::internalFieldTransfer(), cyclicAMIGAMGInterface::internalFieldTransfer(), and cyclicGAMGInterface::internalFieldTransfer().
|
inlinevirtual |
Return (local)face restrict addressing.
Definition at line 227 of file GAMGInterface.H.
References GAMGInterface::faceRestrictAddressing_.
|
inlinevirtual |
Return non-const access to face restrict addressing.
Definition at line 233 of file GAMGInterface.H.
References GAMGInterface::faceRestrictAddressing_.
Return the interface internal field of the given field.
Referenced by GAMGInterface::interfaceInternalField().
tmp< Field< Type > > interfaceInternalField | ( | const UList< Type > & | internalData, |
const labelUList & | faceCells | ||
) | const |
Return the interface internal field of the given field using faceCell mapping
Get the interface internal field of the given field.
Definition at line 64 of file GAMGInterfaceTemplates.C.
References forAll, and List< T >::resize().
|
virtual |
Return the values of the given internal data adjacent to.
the interface as a field
Implements lduInterface.
Definition at line 72 of file GAMGInterface.C.
|
virtual |
Return the values of the given internal data adjacent to the interface as a field using faceCell mapping
Implements lduInterface.
Definition at line 81 of file GAMGInterface.C.
void combine | ( | const GAMGInterface & | coarseGi | ) |
Merge the next level with this level.
combining the face-restrict addressing and copying the face-cell addressing
Definition at line 59 of file GAMGInterface.C.
References GAMGInterface::faceCells_, GAMGInterface::faceRestrictAddressing_, and forAll.
Referenced by GAMGAgglomeration::combineLevels().
|
virtual |
Agglomerating the given fine-level coefficients and return.
Definition at line 91 of file GAMGInterface.C.
References Foam::abort(), Foam::FatalError, FatalErrorInFunction, forAll, Foam::max(), Time::New(), UList< T >::size(), and Foam::Zero.
|
pure virtual |
Write to stream.
Implemented in cyclicACMIGAMGInterface, cyclicAMIGAMGInterface, cyclicGAMGInterface, processorGAMGInterface, and calculatedProcessorGAMGInterface.
Definition at line 125 of file GAMGInterface.C.
References os(), and token::SPACE.
Foam::tmp< Foam::Field< Type > > interfaceInternalField | ( | const UList< Type > & | iF | ) | const |
Definition at line 34 of file GAMGInterfaceTemplates.C.
References GAMGInterface::interfaceInternalField(), GAMGInterface::New(), and GAMGInterface::size().
Foam::tmp< Foam::Field< Type > > interfaceInternalField | ( | const UList< Type > & | iF, |
const labelUList & | faceCells | ||
) | const |
Definition at line 46 of file GAMGInterfaceTemplates.C.
References forAll, and Foam::New().
|
protected |
My index in coarseInterfaces.
Definition at line 63 of file GAMGInterface.H.
Referenced by GAMGInterface::index().
|
protected |
All interfaces.
Definition at line 66 of file GAMGInterface.H.
Referenced by GAMGInterface::coarseInterfaces(), cyclicACMIGAMGInterface::neighbPatch(), cyclicAMIGAMGInterface::neighbPatch(), and cyclicGAMGInterface::neighbPatch().
|
protected |
Face-cell addressing.
Definition at line 69 of file GAMGInterface.H.
Referenced by calculatedProcessorGAMGInterface::calculatedProcessorGAMGInterface(), GAMGInterface::combine(), cyclicACMIGAMGInterface::cyclicACMIGAMGInterface(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cyclicGAMGInterface::cyclicGAMGInterface(), GAMGInterface::faceCells(), processorGAMGInterface::processorGAMGInterface(), and GAMGInterface::size().
|
protected |
Face restrict addressing.
Definition at line 72 of file GAMGInterface.H.
Referenced by calculatedProcessorGAMGInterface::calculatedProcessorGAMGInterface(), GAMGInterface::combine(), cyclicACMIGAMGInterface::cyclicACMIGAMGInterface(), cyclicAMIGAMGInterface::cyclicAMIGAMGInterface(), cyclicGAMGInterface::cyclicGAMGInterface(), GAMGInterface::faceRestrictAddressing(), and processorGAMGInterface::processorGAMGInterface().