mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Adds overset discretisation to selected physics: - diffusion : overLaplacianDyMFoam - incompressible steady : overSimpleFoam - incompressible transient : overPimpleDyMFoam - compressible transient: overRhoPimpleDyMFoam - two-phase VOF: overInterDyMFoam The overset method chosen is a parallel, fully implicit implementation whereby the interpolation (from donor to acceptor) is inserted as an adapted discretisation on the donor cells, such that the resulting matrix can be solved using the standard linear solvers. Above solvers come with a set of tutorials, showing how to create and set-up simple simulations from scratch.
126 lines
3.6 KiB
C
126 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "cyclicACMIGAMGInterfaceField.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
#include "lduMatrix.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
defineTypeNameAndDebug(cyclicACMIGAMGInterfaceField, 0);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
GAMGInterfaceField,
|
|
cyclicACMIGAMGInterfaceField,
|
|
lduInterface
|
|
);
|
|
addToRunTimeSelectionTable
|
|
(
|
|
GAMGInterfaceField,
|
|
cyclicACMIGAMGInterfaceField,
|
|
lduInterfaceField
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::cyclicACMIGAMGInterfaceField::cyclicACMIGAMGInterfaceField
|
|
(
|
|
const GAMGInterface& GAMGCp,
|
|
const lduInterfaceField& fineInterface
|
|
)
|
|
:
|
|
GAMGInterfaceField(GAMGCp, fineInterface),
|
|
cyclicACMIInterface_(refCast<const cyclicACMIGAMGInterface>(GAMGCp)),
|
|
doTransform_(false),
|
|
rank_(0)
|
|
{
|
|
const cyclicAMILduInterfaceField& p =
|
|
refCast<const cyclicAMILduInterfaceField>(fineInterface);
|
|
|
|
doTransform_ = p.doTransform();
|
|
rank_ = p.rank();
|
|
}
|
|
|
|
|
|
Foam::cyclicACMIGAMGInterfaceField::cyclicACMIGAMGInterfaceField
|
|
(
|
|
const GAMGInterface& GAMGCp,
|
|
const bool doTransform,
|
|
const int rank
|
|
)
|
|
:
|
|
GAMGInterfaceField(GAMGCp, doTransform, rank),
|
|
cyclicACMIInterface_(refCast<const cyclicACMIGAMGInterface>(GAMGCp)),
|
|
doTransform_(doTransform),
|
|
rank_(rank)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Desstructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::cyclicACMIGAMGInterfaceField::~cyclicACMIGAMGInterfaceField()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::cyclicACMIGAMGInterfaceField::updateInterfaceMatrix
|
|
(
|
|
scalarField& result,
|
|
const bool add,
|
|
const scalarField& psiInternal,
|
|
const scalarField& coeffs,
|
|
const direction cmpt,
|
|
const Pstream::commsTypes
|
|
) const
|
|
{
|
|
// Get neighbouring field
|
|
scalarField pnf
|
|
(
|
|
cyclicACMIInterface_.neighbPatch().interfaceInternalField(psiInternal)
|
|
);
|
|
|
|
// Transform according to the transformation tensors
|
|
transformCoupleField(pnf, cmpt);
|
|
|
|
if (cyclicACMIInterface_.owner())
|
|
{
|
|
pnf = cyclicACMIInterface_.AMI().interpolateToSource(pnf);
|
|
}
|
|
else
|
|
{
|
|
pnf = cyclicACMIInterface_.neighbPatch().AMI().interpolateToTarget(pnf);
|
|
}
|
|
|
|
this->addToInternalField(result, !add, coeffs, pnf);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|