1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29 Calculates and writes the Co number as a surfaceScalarField obtained
32 The -noWrite option just outputs the max values without writing the
35 \*---------------------------------------------------------------------------*/
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 tmp<volScalarField> Co(const surfaceScalarField& Cof)
46 const fvMesh& mesh = Cof.mesh();
48 tmp<volScalarField> tCo
55 mesh.time().timeName(),
59 dimensionedScalar("0", Cof.dimensions(), 0)
63 volScalarField& Co = tCo();
65 // Set local references to mesh data
66 const unallocLabelList& owner = mesh.owner();
67 const unallocLabelList& neighbour = mesh.neighbour();
71 label own = owner[facei];
72 label nei = neighbour[facei];
74 Co[own] = max(Co[own], Cof[facei]);
75 Co[nei] = max(Co[nei], Cof[facei]);
78 forAll(Co.boundaryField(), patchi)
80 Co.boundaryField()[patchi] = Cof.boundaryField()[patchi];
88 void Foam::calc(const argList& args, const Time& runTime, const fvMesh& mesh)
90 bool writeResults = !args.optionFound("noWrite");
100 if (phiHeader.headerOk())
102 autoPtr<surfaceScalarField> CoPtr;
104 Info<< " Reading phi" << endl;
105 surfaceScalarField phi(phiHeader, mesh);
106 Info<< " Calculating Co" << endl;
108 if (phi.dimensions() == dimensionSet(1, 0, -1, 0, 0))
125 new surfaceScalarField
135 mesh.surfaceInterpolation::deltaCoeffs()
136 * (mag(phi)/(fvc::interpolate(rho)*mesh.magSf()))
142 else if (phi.dimensions() == dimensionSet(0, 3, -1, 0, 0))
147 new surfaceScalarField
157 mesh.surfaceInterpolation::deltaCoeffs()
158 * (mag(phi)/mesh.magSf())
166 FatalErrorIn(args.executable())
167 << "Incorrect dimensions of phi: " << phi.dimensions()
168 << abort(FatalError);
171 Info<< "Co max : " << max(CoPtr()).value() << endl;
176 Co(CoPtr())().write();
181 Info<< " No phi" << endl;
184 Info<< "\nEnd\n" << endl;
188 // ************************************************************************* //