/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | \\/ M anipulation | ------------------------------------------------------------------------------- | Copyright (C) 2011-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 . Application foamDataToFluent Group grpPostProcessingUtilities Description Translate OpenFOAM data to Fluent format. \*---------------------------------------------------------------------------*/ #include "fvCFD.H" #include "writeFluentFields.H" #include "OFstream.H" #include "IOobjectList.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // int main(int argc, char *argv[]) { argList::addNote ( "Translate OpenFOAM data to Fluent format" ); argList::noParallel(); timeSelector::addOptions(false); // constant(false), zero(false) #include "setRootCase.H" #include "createTime.H" instantList timeDirs = timeSelector::select0(runTime, args); #include "createNamedMesh.H" // make a directory called proInterface in the case mkDir(runTime.rootPath()/runTime.caseName()/"fluentInterface"); forAll(timeDirs, timeI) { runTime.setTime(timeDirs[timeI], timeI); Info<< "Time = " << runTime.timeName() << endl; if (mesh.readUpdate()) { Info<< " Read new mesh" << endl; } // make a directory called proInterface in the case mkDir(runTime.rootPath()/runTime.caseName()/"fluentInterface"); // open a file for the mesh OFstream fluentDataFile ( runTime.rootPath()/ runTime.caseName()/ "fluentInterface"/ runTime.caseName() + runTime.timeName() + ".dat" ); fluentDataFile << "(0 \"FOAM to Fluent data File\")" << endl << endl; // Writing number of faces label nFaces = mesh.nFaces(); forAll(mesh.boundary(), patchi) { nFaces += mesh.boundary()[patchi].size(); } fluentDataFile << "(33 (" << mesh.nCells() << " " << nFaces << " " << mesh.nPoints() << "))" << endl; IOdictionary foamDataToFluentDict ( IOobject ( "foamDataToFluentDict", runTime.system(), mesh, IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE ) ); // Search for list of objects for this time IOobjectList objects(mesh, runTime.timeName()); // volScalarField for ( const word& fieldName : objects.sortedNames(volScalarField::typeName) ) { // Lookup field from dictionary and convert field label unitNumber; if ( foamDataToFluentDict.readIfPresent(fieldName, unitNumber) && unitNumber > 0 ) { // Read field volScalarField field(*(objects[fieldName]), mesh); Info<< " Converting field " << fieldName << nl; writeFluentField(field, unitNumber, fluentDataFile); } } // volVectorField for ( const word& fieldName : objects.sortedNames(volVectorField::typeName) ) { // Lookup field from dictionary and convert field label unitNumber; if ( foamDataToFluentDict.readIfPresent(fieldName, unitNumber) && unitNumber > 0 ) { // Read field volVectorField field(*(objects[fieldName]), mesh); Info<< " Converting field " << fieldName << nl; writeFluentField(field, unitNumber, fluentDataFile); } } Info<< endl; } Info<< "End\n" << endl; return 0; } // ************************************************************************* //