2014-05-26 09:13:56 +00:00
|
|
|
/*---------------------------------------------------------------------------*\
|
|
|
|
========= |
|
2014-06-01 11:15:18 +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
|
2014-05-26 09:13:56 +00:00
|
|
|
-------------------------------------------------------------------------------
|
|
|
|
License
|
2014-06-01 11:15:18 +00:00
|
|
|
This file is part of foam-extend.
|
2014-05-26 09:13:56 +00:00
|
|
|
|
2014-06-01 11:15:18 +00:00
|
|
|
foam-extend is free software: you can redistribute it and/or modify it
|
2014-05-26 09:13:56 +00:00
|
|
|
under the terms of the GNU General Public License as published by the
|
2014-06-01 11:15:18 +00:00
|
|
|
Free Software Foundation, either version 3 of the License, or (at your
|
2014-05-26 09:13:56 +00:00
|
|
|
option) any later version.
|
|
|
|
|
2014-06-01 11:15:18 +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.
|
2014-05-26 09:13:56 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2014-06-01 11:15:18 +00:00
|
|
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
2014-05-26 09:13:56 +00:00
|
|
|
|
|
|
|
Description
|
|
|
|
COnvert volumetric to mass flux
|
|
|
|
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include "argList.H"
|
|
|
|
#include "fvCFD.H"
|
|
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
argList::validOptions.insert("rhoRef", "scalar");
|
|
|
|
|
|
|
|
# include "setRootCase.H"
|
|
|
|
|
|
|
|
if (!args.options().found("rhoRef"))
|
|
|
|
{
|
|
|
|
FatalErrorIn(args.executable())
|
|
|
|
<< "Missing reference density"
|
|
|
|
<< endl;
|
|
|
|
|
|
|
|
FatalError.exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
dimensionedScalar rhoRef
|
|
|
|
(
|
|
|
|
"rhoRef",
|
|
|
|
dimDensity,
|
|
|
|
readScalar(IStringStream(args.options()["rhoRef"])())
|
|
|
|
);
|
|
|
|
|
|
|
|
Info<< "Reference density = " << rhoRef.value() << endl;
|
|
|
|
|
|
|
|
|
|
|
|
# include "createTime.H"
|
|
|
|
# include "createMesh.H"
|
|
|
|
|
|
|
|
Info<< "Time = " << runTime.value() << endl;
|
|
|
|
|
|
|
|
Info<< " Reading p" << endl;
|
|
|
|
volScalarField p
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"p",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
),
|
|
|
|
mesh
|
|
|
|
);
|
|
|
|
|
|
|
|
if (p.dimensions() == dimPressure)
|
|
|
|
{
|
|
|
|
Info<< "Pressure " << p.name() << " is a dynamic pressure. "
|
|
|
|
<< "Nothing to do"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
else if (p.dimensions() == dimPressure/dimDensity)
|
|
|
|
{
|
|
|
|
volScalarField rhoP
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"rho" + p.name(),
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::NO_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
),
|
|
|
|
rhoRef*p
|
|
|
|
);
|
|
|
|
|
|
|
|
Info<< "Correcting kinematic pressure " << p.name()
|
|
|
|
<< " into dynamic pressure " << rhoP.name()
|
|
|
|
<< endl;
|
|
|
|
|
|
|
|
rhoP.write();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info<< "Cannot recognise dimensions of pressure field " << p.name()
|
|
|
|
<< ": " << p.dimensions() << ". Ignoring" << endl;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< " Reading phi" << endl;
|
|
|
|
surfaceScalarField phi
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"phi",
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::MUST_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
),
|
|
|
|
mesh
|
|
|
|
);
|
|
|
|
|
|
|
|
if (phi.dimensions() == dimMass/dimTime)
|
|
|
|
{
|
|
|
|
Info<< "Flux " << phi.name() << " is a mass flux. Nothing to do"
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
else if (phi.dimensions() == dimVolume/dimTime)
|
|
|
|
{
|
|
|
|
surfaceScalarField rhoPhi
|
|
|
|
(
|
|
|
|
IOobject
|
|
|
|
(
|
|
|
|
"rho" + phi.name(),
|
|
|
|
runTime.timeName(),
|
|
|
|
mesh,
|
|
|
|
IOobject::NO_READ,
|
|
|
|
IOobject::NO_WRITE
|
|
|
|
),
|
|
|
|
rhoRef*phi
|
|
|
|
);
|
|
|
|
|
|
|
|
Info<< "Correcting volume flux " << phi.name()
|
|
|
|
<< " into mass flux " << rhoPhi.name()
|
|
|
|
<< endl;
|
|
|
|
|
|
|
|
rhoPhi.write();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Info<< "Cannot recognise dimensions of flux field " << phi.name()
|
|
|
|
<< ": " << phi.dimensions() << ". Ignoring" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ************************************************************************* //
|