/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2016-2018 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 . \*---------------------------------------------------------------------------*/ #include "ensightWrite.H" #include "Time.H" #include "polyMesh.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { namespace functionObjects { defineTypeNameAndDebug(ensightWrite, 0); addToRunTimeSelectionTable ( functionObject, ensightWrite, dictionary ); } } // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // int Foam::functionObjects::ensightWrite::process(const word& fieldName) { int state = 0; writeVolField(fieldName, state); writeVolField(fieldName, state); writeVolField(fieldName, state); writeVolField(fieldName, state); writeVolField(fieldName, state); return state; } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::functionObjects::ensightWrite::ensightWrite ( const word& name, const Time& runTime, const dictionary& dict ) : fvMeshFunctionObject(name, runTime, dict), writeOpts_ ( IOstreamOption::formatNames.lookupOrFailsafe ( "format", dict, runTime.writeFormat() ) ), caseOpts_(writeOpts_.format()), selectFields_(), dirName_("ensightWrite"), consecutive_(false) { if (postProcess) { // Disable for post-process mode. // Emit as FatalError for the try/catch in the caller. FatalError << type() << " disabled in post-process mode" << exit(FatalError); } read(dict); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // bool Foam::functionObjects::ensightWrite::read(const dictionary& dict) { fvMeshFunctionObject::read(dict); // // writer options // writeOpts_.noPatches(dict.lookupOrDefault("noPatches", false)); if (dict.found("patches")) { wordRes list(dict.lookup("patches")); list.uniq(); writeOpts_.patchSelection(list); } if (dict.found("faceZones")) { wordRes list(dict.lookup("faceZones")); list.uniq(); writeOpts_.faceZoneSelection(list); } // // case options // caseOpts_.nodeValues(dict.lookupOrDefault("nodeValues", false)); caseOpts_.width(dict.lookupOrDefault