mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Creation of OpenFOAM-dev repository 15/04/2008
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.0 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
// objToVTK tool definition
|
||||
|
||||
description "Read obj line (not surface!) file and convert into vtk";
|
||||
|
||||
objToVTKDict
|
||||
{
|
||||
type dictionary;
|
||||
description "objToVTK control dictionary";
|
||||
dictionaryPath "system";
|
||||
|
||||
entries
|
||||
{
|
||||
arguments
|
||||
{
|
||||
type compound;
|
||||
optional 1;
|
||||
entries
|
||||
{
|
||||
include "$FOAMX_CONFIG/entries/arguments/inputFile.cfg";
|
||||
include "$FOAMX_CONFIG/entries/arguments/outputFile.cfg";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ************************************************************************* //
|
||||
@ -0,0 +1,3 @@
|
||||
objToVTK.C
|
||||
|
||||
EXE = $(FOAM_APPBIN)/objToVTK
|
||||
@ -0,0 +1,8 @@
|
||||
/*
|
||||
EXE_INC = \
|
||||
-I$(LIB_SRC)/triSurface/lnInclude
|
||||
|
||||
EXE_LIBS = \
|
||||
-lmeshTools \
|
||||
-ltriSurface
|
||||
*/
|
||||
275
applications/utilities/mesh/manipulation/objToVTK/objToVTK.C
Normal file
275
applications/utilities/mesh/manipulation/objToVTK/objToVTK.C
Normal file
@ -0,0 +1,275 @@
|
||||
/*---------------------------------------------------------------------------*\
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 1991-2007 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
|
||||
|
||||
Description
|
||||
Read obj line (not surface!) file and convert into vtk.
|
||||
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
#include "argList.H"
|
||||
#include "OFstream.H"
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
#include "IStringStream.H"
|
||||
#include "point.H"
|
||||
#include "DynamicList.H"
|
||||
|
||||
|
||||
using namespace Foam;
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
string getLine(std::ifstream& is)
|
||||
{
|
||||
string line;
|
||||
do
|
||||
{
|
||||
std::getline(is, line);
|
||||
}
|
||||
while((line.size() > 0) && (line[0] == '#'));
|
||||
|
||||
return line;
|
||||
}
|
||||
|
||||
|
||||
// Read space-separated vertices (with optional '/' arguments)
|
||||
labelList parseVertices(const string& line)
|
||||
{
|
||||
DynamicList<label> verts;
|
||||
|
||||
// Assume 'l' is followed by space.
|
||||
label endNum = 1;
|
||||
|
||||
do
|
||||
{
|
||||
label startNum = line.find_first_not_of(' ', endNum);
|
||||
|
||||
if (startNum == label(string::npos))
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
endNum = line.find(' ', startNum);
|
||||
|
||||
string vertexSpec;
|
||||
if (endNum != label(string::npos))
|
||||
{
|
||||
vertexSpec = line.substr(startNum, endNum-startNum);
|
||||
}
|
||||
else
|
||||
{
|
||||
vertexSpec = line.substr(startNum, line.size() - startNum);
|
||||
}
|
||||
|
||||
label slashPos = vertexSpec.find('/');
|
||||
|
||||
label vertI = 0;
|
||||
if (slashPos != label(string::npos))
|
||||
{
|
||||
IStringStream intStream(vertexSpec.substr(0, slashPos));
|
||||
|
||||
intStream >> vertI;
|
||||
}
|
||||
else
|
||||
{
|
||||
IStringStream intStream(vertexSpec);
|
||||
|
||||
intStream >> vertI;
|
||||
}
|
||||
verts.append(vertI - 1);
|
||||
}
|
||||
while (true);
|
||||
|
||||
return verts.shrink();
|
||||
}
|
||||
|
||||
|
||||
// Main program:
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
argList::noParallel();
|
||||
argList::validArgs.clear();
|
||||
argList::validArgs.append("OBJ file");
|
||||
argList::validArgs.append("output VTK file");
|
||||
argList::argList args(argc, argv);
|
||||
|
||||
fileName objName(args.additionalArgs()[0]);
|
||||
fileName outName(args.additionalArgs()[1]);
|
||||
|
||||
std::ifstream OBJfile(objName.c_str());
|
||||
|
||||
if (!OBJfile.good())
|
||||
{
|
||||
FatalErrorIn(args.executable())
|
||||
<< "Cannot read file " << objName << exit(FatalError);
|
||||
}
|
||||
|
||||
// Points and lines
|
||||
DynamicList<point> points;
|
||||
DynamicList<labelList> polyLines;
|
||||
DynamicList<labelList> polygons;
|
||||
|
||||
bool hasWarned = false;
|
||||
|
||||
label lineNo = 0;
|
||||
while (OBJfile.good())
|
||||
{
|
||||
string line = getLine(OBJfile);
|
||||
lineNo++;
|
||||
|
||||
// Read first word
|
||||
IStringStream lineStream(line);
|
||||
word cmd;
|
||||
lineStream >> cmd;
|
||||
|
||||
if (cmd == "v")
|
||||
{
|
||||
scalar x, y, z;
|
||||
|
||||
lineStream >> x >> y >> z;
|
||||
|
||||
points.append(point(x, y, z));
|
||||
}
|
||||
else if (cmd == "l")
|
||||
{
|
||||
polyLines.append(parseVertices(line));
|
||||
}
|
||||
else if (cmd == "f")
|
||||
{
|
||||
polygons.append(parseVertices(line));
|
||||
}
|
||||
else if (cmd != "")
|
||||
{
|
||||
if (!hasWarned)
|
||||
{
|
||||
hasWarned = true;
|
||||
|
||||
WarningIn(args.executable())
|
||||
<< "Unrecognized OBJ command " << cmd << nl
|
||||
<< "In line " << lineStream.str()
|
||||
<< " at linenumber " << lineNo << nl
|
||||
<< "Only recognized commands are 'v' and 'l'.\n"
|
||||
<< "If this is a surface command use surfaceConvert instead"
|
||||
<< " to convert to a file format that can be read by VTK"
|
||||
<< endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Write as vtk 'polydata' file
|
||||
//
|
||||
|
||||
|
||||
OFstream outFile(outName);
|
||||
|
||||
outFile
|
||||
<< "# vtk DataFile Version 2.0\n"
|
||||
<< objName << nl
|
||||
<< "ASCII\n"
|
||||
<< "DATASET POLYDATA\n"
|
||||
<< "POINTS " << points.size() << " float\n";
|
||||
|
||||
forAll(points, i)
|
||||
{
|
||||
const point& pt = points[i];
|
||||
|
||||
outFile << pt.x() << ' ' << pt.y() << ' ' << pt.z() << nl;
|
||||
}
|
||||
|
||||
label nItems = 0;
|
||||
forAll(polyLines, polyI)
|
||||
{
|
||||
nItems += polyLines[polyI].size() + 1;
|
||||
}
|
||||
|
||||
outFile
|
||||
<< "LINES " << polyLines.size() << ' ' << nItems << nl;
|
||||
|
||||
forAll(polyLines, polyI)
|
||||
{
|
||||
const labelList& line = polyLines[polyI];
|
||||
|
||||
outFile << line.size();
|
||||
|
||||
forAll(line, i)
|
||||
{
|
||||
outFile << ' ' << line[i];
|
||||
}
|
||||
outFile << nl;
|
||||
}
|
||||
|
||||
|
||||
nItems = 0;
|
||||
forAll(polygons, polyI)
|
||||
{
|
||||
nItems += polygons[polyI].size() + 1;
|
||||
}
|
||||
|
||||
outFile
|
||||
<< "POLYGONS " << polygons.size() << ' ' << nItems << nl;
|
||||
|
||||
forAll(polygons, polyI)
|
||||
{
|
||||
const labelList& line = polygons[polyI];
|
||||
|
||||
outFile << line.size();
|
||||
|
||||
forAll(line, i)
|
||||
{
|
||||
outFile << ' ' << line[i];
|
||||
}
|
||||
outFile << nl;
|
||||
}
|
||||
|
||||
|
||||
outFile
|
||||
<< "POINT_DATA " << points.size() << nl
|
||||
<< "SCALARS pointID float 1\n"
|
||||
<< "LOOKUP_TABLE default\n";
|
||||
|
||||
forAll(points, i)
|
||||
{
|
||||
outFile << i;
|
||||
|
||||
if ((i % 10) == 1)
|
||||
{
|
||||
outFile << nl;
|
||||
}
|
||||
else
|
||||
{
|
||||
outFile << ' ';
|
||||
}
|
||||
}
|
||||
|
||||
Info << "End\n" << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
||||
Reference in New Issue
Block a user