2010-05-12 13:27:55 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / F ield | foam-extend: Open Source CFD
|
2010-05-12 13:27:55 +00:00
|
|
|
\\ / O peration |
|
2013-12-11 16:09:41 +00:00
|
|
|
\\ / A nd | For copyright notice see file Copyright
|
2010-05-12 13:27:55 +00:00
|
|
|
\\/ M anipulation |
|
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
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
|
|
|
|
simpleFoamResidual
|
|
|
|
|
|
|
|
Author
|
|
|
|
Hrvoje Jasak, Wikki Ltd. All rights reserved.
|
|
|
|
|
|
|
|
Description
|
|
|
|
Calculate and write residual for a simpleFoam momentum equation
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "fvCFD.H"
|
2010-09-21 14:32:04 +00:00
|
|
|
#include "singlePhaseTransportModel.H"
|
2011-03-18 12:01:14 +00:00
|
|
|
#include "RASModel.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
|
2010-09-21 14:32:04 +00:00
|
|
|
timeSelector::addOptions();
|
2010-05-12 13:27:55 +00:00
|
|
|
|
2010-09-21 14:32:04 +00:00
|
|
|
# include "setRootCase.H"
|
2010-05-12 13:27:55 +00:00
|
|
|
# include "createTime.H"
|
|
|
|
|
2010-09-21 14:32:04 +00:00
|
|
|
instantList timeDirs = timeSelector::select0(runTime, args);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
# include "createMesh.H"
|
|
|
|
|
2010-09-21 14:32:04 +00:00
|
|
|
forAll(timeDirs, timeI)
|
2010-05-12 13:27:55 +00:00
|
|
|
{
|
2010-09-21 14:32:04 +00:00
|
|
|
runTime.setTime(timeDirs[timeI], timeI);
|
2010-05-12 13:27:55 +00:00
|
|
|
|
|
|
|
Info<< "Time = " << runTime.timeName() << endl;
|
|
|
|
|
|
|
|
IOobject Uheader
|
|
|
|
(
|
|
|
|
"U",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ
|
|
|
|
);
|
|
|
|
|
|
|
|
IOobject pHeader
|
|
|
|
(
|
|
|
|
"p",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ
|
|
|
|
);
|
|
|
|
|
|
|
|
// Check U exists
|
|
|
|
if (Uheader.headerOk() && pHeader.headerOk())
|
|
|
|
{
|
|
|
|
mesh.readUpdate();
|
|
|
|
|
|
|
|
Info<< " Reading U" << endl;
|
|
|
|
volVectorField U(Uheader, mesh);
|
|
|
|
|
|
|
|
Info<< " Reading p" << endl;
|
|
|
|
volScalarField p(pHeader, mesh);
|
|
|
|
|
|
|
|
# include "createPhi.H"
|
|
|
|
|
|
|
|
singlePhaseTransportModel laminarTransport(U, phi);
|
|
|
|
|
2011-03-18 12:01:14 +00:00
|
|
|
autoPtr<incompressible::RASModel> turbulence
|
2010-05-12 13:27:55 +00:00
|
|
|
(
|
2011-03-18 12:01:14 +00:00
|
|
|
incompressible::RASModel::New(U, phi, laminarTransport)
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
Info<< " Calculating uResidual" << endl;
|
|
|
|
volScalarField uResidual
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"uResidual",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::NO_READ
|
|
|
|
),
|
2011-05-27 16:17:25 +00:00
|
|
|
mag
|
|
|
|
(
|
|
|
|
fvc::div(phi, U)
|
|
|
|
+ fvc::div(turbulence->R())
|
|
|
|
+ fvc::grad(p)
|
|
|
|
)
|
2010-05-12 13:27:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
Info<< "uResidual max: " << max(uResidual.internalField())
|
|
|
|
<< " mean: "
|
2011-05-27 16:17:25 +00:00
|
|
|
<< sum(uResidual.internalField()*mesh.V())/
|
|
|
|
sum(mesh.V()).value()
|
2010-05-12 13:27:55 +00:00
|
|
|
<< endl;
|
|
|
|
|
|
|
|
uResidual.write();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info<< " No U or p" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|