mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
159 lines
4.5 KiB
C++
159 lines
4.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::cyclicAMIGAMGInterface
|
|
|
|
Description
|
|
GAMG agglomerated cyclic AMI interface.
|
|
|
|
SourceFiles
|
|
cyclicAMIGAMGInterface.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef cyclicAMIGAMGInterface_H
|
|
#define cyclicAMIGAMGInterface_H
|
|
|
|
#include "GAMGInterface.H"
|
|
#include "cyclicAMILduInterface.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class cyclicAMIGAMGInterface Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class cyclicAMIGAMGInterface
|
|
:
|
|
public GAMGInterface,
|
|
virtual public cyclicAMILduInterface
|
|
{
|
|
// Private data
|
|
|
|
//- Reference for the cyclicLduInterface from which this is
|
|
// agglomerated
|
|
const cyclicAMILduInterface& fineCyclicAMIInterface_;
|
|
|
|
//- AMI interface
|
|
autoPtr<AMIPatchToPatchInterpolation> amiPtr_;
|
|
|
|
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
cyclicAMIGAMGInterface(const cyclicAMIGAMGInterface&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const cyclicAMIGAMGInterface&);
|
|
|
|
|
|
public:
|
|
|
|
//- Runtime type information
|
|
TypeName("cyclicAMI");
|
|
|
|
|
|
// Constructors
|
|
|
|
//- Construct from fine level interface,
|
|
// local and neighbour restrict addressing
|
|
cyclicAMIGAMGInterface
|
|
(
|
|
const label index,
|
|
const lduInterfacePtrsList& coarseInterfaces,
|
|
const lduInterface& fineInterface,
|
|
const labelField& restrictAddressing,
|
|
const labelField& neighbourRestrictAddressing
|
|
);
|
|
|
|
|
|
//- Destructor
|
|
virtual ~cyclicAMIGAMGInterface();
|
|
|
|
|
|
// Member Functions
|
|
|
|
// Interface transfer functions
|
|
|
|
//- Transfer and return internal field adjacent to the interface
|
|
virtual tmp<labelField> internalFieldTransfer
|
|
(
|
|
const Pstream::commsTypes commsType,
|
|
const labelUList& iF
|
|
) const;
|
|
|
|
|
|
//- Cyclic interface functions
|
|
|
|
//- Return neigbour processor number
|
|
virtual label neighbPatchID() const
|
|
{
|
|
return fineCyclicAMIInterface_.neighbPatchID();
|
|
}
|
|
|
|
virtual bool owner() const
|
|
{
|
|
return fineCyclicAMIInterface_.owner();
|
|
}
|
|
|
|
virtual const cyclicAMIGAMGInterface& neighbPatch() const
|
|
{
|
|
return dynamic_cast<const cyclicAMIGAMGInterface&>
|
|
(
|
|
coarseInterfaces_[neighbPatchID()]
|
|
);
|
|
}
|
|
|
|
virtual const AMIPatchToPatchInterpolation& AMI() const
|
|
{
|
|
return amiPtr_();
|
|
}
|
|
|
|
//- Return face transformation tensor
|
|
virtual const tensorField& forwardT() const
|
|
{
|
|
return fineCyclicAMIInterface_.forwardT();
|
|
}
|
|
|
|
//- Return neighbour-cell transformation tensor
|
|
virtual const tensorField& reverseT() const
|
|
{
|
|
return fineCyclicAMIInterface_.reverseT();
|
|
}
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|