180 lines
5.1 KiB
C
180 lines
5.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | foam-extend: Open Source CFD
|
|
\\ / O peration |
|
|
\\ / A nd | For copyright notice see file Copyright
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of foam-extend.
|
|
|
|
foam-extend 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.
|
|
|
|
foam-extend 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 foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Application
|
|
pimpleDyMFoam.C
|
|
|
|
Description
|
|
Transient solver for incompressible, flow of Newtonian fluids
|
|
on a moving mesh using the PIMPLE (merged PISO-SIMPLE) algorithm.
|
|
|
|
Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "fvCFD.H"
|
|
#include "singlePhaseTransportModel.H"
|
|
#include "turbulenceModel.H"
|
|
#include "dynamicFvMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
# include "setRootCase.H"
|
|
|
|
# include "createTime.H"
|
|
# include "createDynamicFvMesh.H"
|
|
# include "readPIMPLEControls.H"
|
|
# include "initContinuityErrs.H"
|
|
# include "createFields.H"
|
|
# include "readTimeControls.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
Info<< "\nStarting time loop\n" << endl;
|
|
|
|
while (runTime.run())
|
|
{
|
|
# include "readControls.H"
|
|
# include "CourantNo.H"
|
|
# include "setDeltaT.H"
|
|
|
|
// Make the fluxes absolute
|
|
fvc::makeAbsolute(phi, U);
|
|
|
|
runTime++;
|
|
|
|
Info<< "Time = " << runTime.timeName() << nl << endl;
|
|
|
|
bool meshChanged = mesh.update();
|
|
|
|
# include "volContinuity.H"
|
|
|
|
if (checkMeshCourantNo)
|
|
{
|
|
# include "meshCourantNo.H"
|
|
}
|
|
|
|
// Mesh motion update
|
|
if (correctPhi && meshChanged)
|
|
{
|
|
# include "correctPhi.H"
|
|
}
|
|
|
|
if (meshChanged)
|
|
{
|
|
# include "CourantNo.H"
|
|
}
|
|
|
|
// Make the fluxes relative to the mesh motion
|
|
fvc::makeRelative(phi, U);
|
|
|
|
// --- PIMPLE loop
|
|
label oCorr = 0;
|
|
do
|
|
{
|
|
if (nOuterCorr != 1)
|
|
{
|
|
p.storePrevIter();
|
|
}
|
|
|
|
# include "UEqn.H"
|
|
|
|
// --- PISO loop
|
|
for (int corr = 0; corr < nCorr; corr++)
|
|
{
|
|
rAU = 1.0/UEqn.A();
|
|
|
|
U = rAU*UEqn.H();
|
|
phi = (fvc::interpolate(U) & mesh.Sf());
|
|
// ddtPhiCorr does not work. HJ, 20/Nov/2013
|
|
|
|
adjustPhi(phi, U, p);
|
|
|
|
for (int nonOrth=0; nonOrth<=nNonOrthCorr; nonOrth++)
|
|
{
|
|
fvScalarMatrix pEqn
|
|
(
|
|
fvm::laplacian(rAU, p) == fvc::div(phi)
|
|
);
|
|
|
|
pEqn.setReference(pRefCell, pRefValue);
|
|
|
|
if
|
|
(
|
|
// oCorr == nOuterCorr - 1
|
|
corr == nCorr - 1
|
|
&& nonOrth == nNonOrthCorr
|
|
)
|
|
{
|
|
pEqn.solve
|
|
(
|
|
mesh.solutionDict().solver(p.name() + "Final")
|
|
);
|
|
}
|
|
else
|
|
{
|
|
pEqn.solve(mesh.solutionDict().solver(p.name()));
|
|
}
|
|
|
|
if (nonOrth == nNonOrthCorr)
|
|
{
|
|
phi -= pEqn.flux();
|
|
}
|
|
}
|
|
|
|
# include "continuityErrs.H"
|
|
|
|
// Explicitly relax pressure for momentum corrector
|
|
if (oCorr != nOuterCorr - 1)
|
|
{
|
|
p.relax();
|
|
}
|
|
|
|
// Make the fluxes relative to the mesh motion
|
|
fvc::makeRelative(phi, U);
|
|
|
|
# include "movingMeshContinuityErrs.H"
|
|
|
|
U -= rAU*fvc::grad(p);
|
|
U.correctBoundaryConditions();
|
|
}
|
|
|
|
turbulence->correct();
|
|
} while (++oCorr < nOuterCorr);
|
|
|
|
runTime.write();
|
|
|
|
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
|
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
|
<< nl << endl;
|
|
}
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|