diff --git a/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Allwmake b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Allwmake new file mode 100755 index 0000000000..5866aa8f37 --- /dev/null +++ b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Allwmake @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ "$TEC_360_2009" ] +then + wmake +fi diff --git a/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/files b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/files new file mode 100644 index 0000000000..270e84931b --- /dev/null +++ b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/files @@ -0,0 +1,5 @@ +tecplotWriter.C +vtkMesh.C +foamToTecplot360.C + +EXE = $(FOAM_APPBIN)/foamToTecplot360 diff --git a/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/options b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/options new file mode 100644 index 0000000000..d03f44ae8c --- /dev/null +++ b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/Make/options @@ -0,0 +1,14 @@ +EXE_INC = \ + -I$(TEC_360_2009)/include \ + /* -I../tecio/tecsrc/lnInclude/ */ \ + -I$(LIB_SRC)/lagrangian/basic/lnInclude \ + -I$(LIB_SRC)/finiteVolume/lnInclude \ + -I$(LIB_SRC)/meshTools/lnInclude + + +EXE_LIBS = \ + $(TEC_360_2009)/lib/tecio64.a \ + /* -L$(FOAM_USER_LIBBIN) -ltecio */ \ + -llagrangian \ + -lfiniteVolume \ + -lmeshTools diff --git a/applications/utilities/postProcessing/dataConversion/foamToTecplot360/foamToTecplot360.C b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/foamToTecplot360.C new file mode 100644 index 0000000000..d514609ff2 --- /dev/null +++ b/applications/utilities/postProcessing/dataConversion/foamToTecplot360/foamToTecplot360.C @@ -0,0 +1,1362 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 1991-2009 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 2 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, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +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. + +\*---------------------------------------------------------------------------*/ + +#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