mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
116 lines
2.9 KiB
C
116 lines
2.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
|
|
\\/ 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 "magGrad.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace calcTypes
|
|
{
|
|
defineTypeNameAndDebug(magGrad, 0);
|
|
addToRunTimeSelectionTable(calcType, magGrad, dictionary);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::calcTypes::magGrad::magGrad()
|
|
:
|
|
calcType()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::calcTypes::magGrad::~magGrad()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::calcTypes::magGrad::init()
|
|
{
|
|
argList::validArgs.append("magGrad");
|
|
argList::validArgs.append("fieldName");
|
|
}
|
|
|
|
|
|
void Foam::calcTypes::magGrad::preCalc
|
|
(
|
|
const argList& args,
|
|
const Time& runTime,
|
|
const fvMesh& mesh
|
|
)
|
|
{}
|
|
|
|
|
|
void Foam::calcTypes::magGrad::calc
|
|
(
|
|
const argList& args,
|
|
const Time& runTime,
|
|
const fvMesh& mesh
|
|
)
|
|
{
|
|
const word fieldName = args[2];
|
|
|
|
IOobject fieldHeader
|
|
(
|
|
fieldName,
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ
|
|
);
|
|
|
|
// Check field exists
|
|
if (fieldHeader.headerOk())
|
|
{
|
|
bool processed = false;
|
|
|
|
writeMagGradField<scalar>(fieldHeader, mesh, processed);
|
|
writeMagGradField<vector>(fieldHeader, mesh, processed);
|
|
|
|
if (!processed)
|
|
{
|
|
FatalError
|
|
<< "Unable to process " << fieldName << nl
|
|
<< "No call to magGrad for fields of type "
|
|
<< fieldHeader.headerClassName() << nl << nl
|
|
<< exit(FatalError);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Info<< " No " << fieldName << endl;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|
|
|