/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 3.2 \\ / A nd | Web: http://www.foam-extend.org \\/ M anipulation | For copyright notice see file Copyright ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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. foam-extend 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 foam-extend. If not, see . Application foamToTecplot360 Description Tecplot binary file format writer. Usage - foamToTecplot360 [OPTION] @param -fields \\n Convert selected fields only. For example, @verbatim -fields '( p T U )' @endverbatim The quoting is required to avoid shell expansions and to pass the information as a single argument. @param -cellSet \\n @param -faceSet \\n Restrict conversion to the cellSet, faceSet. @param -nearCellValue \n Output cell value on patches instead of patch value itself @param -noInternal \n Do not generate file for mesh, only for patches @param -noPointValues \n No pointFields @param -noFaceZones \n No faceZones @param -excludePatches \\n Specify patches (wildcards) to exclude. For example, @verbatim -excludePatches '( inlet_1 inlet_2 "proc.*")' @endverbatim The quoting is required to avoid shell expansions and to pass the information as a single argument. The double quotes denote a regular expression. @param -useTimeName \n use the time index in the VTK file name instead of the time index \*---------------------------------------------------------------------------*/ #include "pointMesh.H" #include "volPointInterpolation.H" #include "emptyPolyPatch.H" #include "labelIOField.H" #include "scalarIOField.H" #include "sphericalTensorIOField.H" #include "symmTensorIOField.H" #include "tensorIOField.H" #include "passiveParticleCloud.H" #include "faceSet.H" #include "stringListOps.H" #include "wordRe.H" #include "vtkMesh.H" #include "readFields.H" #include "tecplotWriter.H" #include "TECIO.h" // Note: needs to be after TECIO to prevent Foam::Time conflicting with // Xlib Time. #include "fvCFD.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // template void print(const char* msg, Ostream& os, const PtrList& flds) { if (flds.size()) { os << msg; forAll(flds, i) { os<< ' ' << flds[i].name(); } os << endl; } } void print(Ostream& os, const wordList& flds) { forAll(flds, i) { os<< ' ' << flds[i]; } os << endl; } labelList getSelectedPatches ( const polyBoundaryMesh& patches, const List& excludePatches //HashSet& excludePatches ) { DynamicList