2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2016-06-20 15:00:40 +00:00
|
|
|
\\ / O peration | Version: 4.0
|
2015-05-17 13:32:07 +00:00
|
|
|
\\ / A nd | Web: http://www.foam-extend.org
|
|
|
|
\\/ M anipulation | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2013-12-11 16:09:41 +00:00
|
|
|
This file is part of foam-extend.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2010-05-12 13:27:55 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2013-12-11 16:09:41 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2010-05-12 13:27:55 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2013-12-11 16:09:41 +00:00
|
|
|
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.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2013-12-11 16:09:41 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Application
|
2010-08-26 14:22:03 +00:00
|
|
|
pisoFoam
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Description
|
2010-08-26 14:22:03 +00:00
|
|
|
Transient solver for incompressible flow.
|
|
|
|
|
|
|
|
Turbulence modelling is generic, i.e. laminar, RAS or LES may be selected.
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "fvCFD.H"
|
2010-08-26 14:22:03 +00:00
|
|
|
#include "singlePhaseTransportModel.H"
|
|
|
|
#include "turbulenceModel.H"
|
2016-04-09 20:55:19 +00:00
|
|
|
#include "pisoControl.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
# include "setRootCase.H"
|
|
|
|
# include "createTime.H"
|
|
|
|
# include "createMesh.H"
|
2016-04-09 20:55:19 +00:00
|
|
|
|
|
|
|
pisoControl piso(mesh);
|
|
|
|
|
2010-05-12 13:27:55 +00:00
|
|
|
# include "createFields.H"
|
|
|
|
# include "initContinuityErrs.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
Info<< "\nStarting time loop\n" << endl;
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
while (runTime.loop())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
Info<< "Time = " << runTime.timeName() << nl << endl;
|
|
|
|
|
|
|
|
# include "CourantNo.H"
|
|
|
|
|
|
|
|
// Pressure-velocity PISO corrector
|
|
|
|
{
|
|
|
|
// Momentum predictor
|
|
|
|
|
|
|
|
fvVectorMatrix UEqn
|
|
|
|
(
|
|
|
|
fvm::ddt(U)
|
|
|
|
+ fvm::div(phi, U)
|
2016-06-06 13:59:41 +00:00
|
|
|
+ turbulence->divDevReff()
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
UEqn.relax();
|
|
|
|
|
2016-04-09 20:55:19 +00:00
|
|
|
if (piso.momentumPredictor())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
solve(UEqn == -fvc::grad(p));
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- PISO loop
|
|
|
|
|
2016-04-09 20:55:19 +00:00
|
|
|
while (piso.correct())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
volScalarField rUA = 1.0/UEqn.A();
|
|
|
|
|
|
|
|
U = rUA*UEqn.H();
|
2010-08-26 14:22:03 +00:00
|
|
|
phi = (fvc::interpolate(U) & mesh.Sf())
|
2010-05-12 13:27:55 +00:00
|
|
|
+ fvc::ddtPhiCorr(rUA, U, phi);
|
|
|
|
|
|
|
|
adjustPhi(phi, U, p);
|
|
|
|
|
|
|
|
// Non-orthogonal pressure corrector loop
|
2016-04-09 20:55:19 +00:00
|
|
|
while (piso.correctNonOrthogonal())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
// Pressure corrector
|
|
|
|
|
|
|
|
fvScalarMatrix pEqn
|
|
|
|
(
|
|
|
|
fvm::laplacian(rUA, p) == fvc::div(phi)
|
|
|
|
);
|
|
|
|
|
|
|
|
pEqn.setReference(pRefCell, pRefValue);
|
2016-05-06 09:11:54 +00:00
|
|
|
pEqn.solve
|
|
|
|
(
|
|
|
|
mesh.solutionDict().solver
|
|
|
|
(
|
|
|
|
p.select(piso.finalInnerIter())
|
|
|
|
)
|
|
|
|
);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2016-04-09 20:55:19 +00:00
|
|
|
if (piso.finalNonOrthogonalIter())
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
|
|
|
phi -= pEqn.flux();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# include "continuityErrs.H"
|
|
|
|
|
|
|
|
U -= rUA*fvc::grad(p);
|
|
|
|
U.correctBoundaryConditions();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
turbulence->correct();
|
|
|
|
|
|
|
|
runTime.write();
|
|
|
|
|
|
|
|
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
|
|
|
|
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
|
|
|
|
<< nl << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
|
2010-08-26 14:22:03 +00:00
|
|
|
return 0;
|
2010-05-12 13:27:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|