/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation \\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd ------------------------------------------------------------------------------- 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 . \*---------------------------------------------------------------------------*/ #include "regionSizeDistribution.H" #include "volFields.H" #include "regionSplit.H" #include "fvcVolumeIntegrate.H" #include "mathematicalConstants.H" #include "stringListOps.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(regionSizeDistribution, 0); //- Plus op for FixedList template class ListPlusEqOp { public: void operator() ( FixedList& x, const FixedList& y ) const { forAll(x, i) { x[i] += y[i]; } } }; } // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // void Foam::regionSizeDistribution::writeGraph ( const coordSet& coords, const word& valueName, const scalarField& values ) const { const wordList valNames(1, valueName); fileName outputPath = baseTimeDir(); mkDir(outputPath); OFstream str(outputPath/formatterPtr_().getFileName(coords, valNames)); if (log_) Info << "Writing distribution of " << valueName << " to " << str.name() << endl; List valPtrs(1); valPtrs[0] = &values; formatterPtr_().write(coords, valNames, valPtrs, str); } void Foam::regionSizeDistribution::writeAlphaFields ( const regionSplit& regions, const Map