mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
326 lines
8.1 KiB
C
326 lines
8.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / 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
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "dx.H"
|
|
#include "fileName.H"
|
|
#include "OFstream.H"
|
|
#include "faceList.H"
|
|
#include "OSspecific.H"
|
|
|
|
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXGeometry
|
|
(
|
|
const pointField& points,
|
|
const faceList& faces,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write vertex coordinates
|
|
|
|
os << "# The irregular positions" << nl
|
|
<< "object 1 class array type float rank 1 shape 3 items "
|
|
<< points.size() << " data follows" << nl;
|
|
|
|
forAll(points, pointI)
|
|
{
|
|
const point& pt = points[pointI];
|
|
|
|
os << float(pt.x()) << ' ' << float(pt.y()) << ' ' << float(pt.z())
|
|
<< nl;
|
|
}
|
|
os << nl;
|
|
|
|
// Write triangles
|
|
|
|
os << "# The irregular connections (triangles)" << nl
|
|
<< "object 2 class array type int rank 1 shape 3 items "
|
|
<< faces.size() << " data follows" << nl;
|
|
|
|
forAll(faces, faceI)
|
|
{
|
|
const face& f = faces[faceI];
|
|
|
|
if (f.size() != 3)
|
|
{
|
|
FatalErrorIn
|
|
(
|
|
"writeDXGeometry(Ostream&, const pointField&, const faceList&)"
|
|
) << "Face " << faceI << " vertices " << f
|
|
<< " is not a triangle."
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
os << f[0] << ' ' << f[1] << ' ' << f[2] << nl;
|
|
}
|
|
os << "attribute \"element type\" string \"triangles\"" << nl
|
|
<< "attribute \"ref\" string \"positions\"" << nl << nl;
|
|
}
|
|
|
|
|
|
// Write scalarField in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXData
|
|
(
|
|
const pointField& points,
|
|
const scalarField& values,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write data
|
|
os << "object 3 class array type float rank 0 items "
|
|
<< values.size()
|
|
<< " data follows" << nl;
|
|
|
|
forAll(values, elemI)
|
|
{
|
|
os << float(values[elemI]) << nl;
|
|
}
|
|
|
|
if (values.size() == points.size())
|
|
{
|
|
os << nl << "attribute \"dep\" string \"positions\""
|
|
<< nl << nl;
|
|
}
|
|
else
|
|
{
|
|
os << nl << "attribute \"dep\" string \"connections\""
|
|
<< nl << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// Write vectorField in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXData
|
|
(
|
|
const pointField& points,
|
|
const vectorField& values,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write data
|
|
os << "object 3 class array type float rank 1 shape 3 items "
|
|
<< values.size()
|
|
<< " data follows" << nl;
|
|
|
|
forAll(values, elemI)
|
|
{
|
|
os << float(values[elemI].x()) << ' '
|
|
<< float(values[elemI].y()) << ' '
|
|
<< float(values[elemI].z()) << nl;
|
|
}
|
|
|
|
if (values.size() == points.size())
|
|
{
|
|
os << nl << "attribute \"dep\" string \"positions\""
|
|
<< nl << nl;
|
|
}
|
|
else
|
|
{
|
|
os << nl << "attribute \"dep\" string \"connections\""
|
|
<< nl << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// Write sphericalTensorField in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXData
|
|
(
|
|
const pointField& points,
|
|
const sphericalTensorField& values,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write data
|
|
os << "object 3 class array type float rank 0 items "
|
|
<< values.size()
|
|
<< " data follows" << nl;
|
|
|
|
forAll(values, elemI)
|
|
{
|
|
os << float(values[elemI][0]) << nl;
|
|
}
|
|
|
|
if (values.size() == points.size())
|
|
{
|
|
os << nl << "attribute \"dep\" string \"positions\""
|
|
<< nl << nl;
|
|
}
|
|
else
|
|
{
|
|
os << nl << "attribute \"dep\" string \"connections\""
|
|
<< nl << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// Write symmTensorField in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXData
|
|
(
|
|
const pointField& points,
|
|
const symmTensorField& values,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write data
|
|
os << "object 3 class array type float rank 2 shape 3 items "
|
|
<< values.size()
|
|
<< " data follows" << nl;
|
|
|
|
forAll(values, elemI)
|
|
{
|
|
const symmTensor& t = values[elemI];
|
|
|
|
os << float(t.xx()) << ' ' << float(t.xy()) << ' ' << float(t.xz())
|
|
<< float(t.xy()) << ' ' << float(t.yy()) << ' ' << float(t.yz())
|
|
<< float(t.xz()) << ' ' << float(t.yz()) << ' ' << float(t.zz())
|
|
<< nl;
|
|
}
|
|
|
|
if (values.size() == points.size())
|
|
{
|
|
os << nl << "attribute \"dep\" string \"positions\""
|
|
<< nl << nl;
|
|
}
|
|
else
|
|
{
|
|
os << nl << "attribute \"dep\" string \"connections\""
|
|
<< nl << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// Write tensorField in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXData
|
|
(
|
|
const pointField& points,
|
|
const tensorField& values,
|
|
Ostream& os
|
|
) const
|
|
{
|
|
// Write data
|
|
os << "object 3 class array type float rank 2 shape 3 items "
|
|
<< values.size()
|
|
<< " data follows" << nl;
|
|
|
|
forAll(values, elemI)
|
|
{
|
|
const tensor& t = values[elemI];
|
|
|
|
os << float(t.xx()) << ' ' << float(t.xy()) << ' ' << float(t.xz())
|
|
<< float(t.yx()) << ' ' << float(t.yy()) << ' ' << float(t.yz())
|
|
<< float(t.zx()) << ' ' << float(t.zy()) << ' ' << float(t.zz())
|
|
<< nl;
|
|
}
|
|
|
|
if (values.size() == points.size())
|
|
{
|
|
os << nl << "attribute \"dep\" string \"positions\""
|
|
<< nl << nl;
|
|
}
|
|
else
|
|
{
|
|
os << nl << "attribute \"dep\" string \"connections\""
|
|
<< nl << nl;
|
|
}
|
|
}
|
|
|
|
|
|
// Write trailer in DX format
|
|
template<class Type>
|
|
void Foam::dx<Type>::writeDXTrailer(Ostream& os) const
|
|
{
|
|
os << "# the field, with three components: \"positions\","
|
|
<< " \"connections\", and \"data\"" << nl
|
|
<< "object \"irregular positions irregular "
|
|
<< "connections\" class field"
|
|
<< nl
|
|
<< "component \"positions\" value 1" << nl
|
|
<< "component \"connections\" value 2" << nl
|
|
<< "component \"data\" value 3" << nl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::dx<Type>::dx()
|
|
:
|
|
surfaceWriter<Type>()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::dx<Type>::~dx()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::dx<Type>::write
|
|
(
|
|
const fileName& samplePath,
|
|
const fileName& timeDir,
|
|
const fileName& surfaceName,
|
|
const pointField& points,
|
|
const faceList& faces,
|
|
const fileName& fieldName,
|
|
const Field<Type>& values
|
|
) const
|
|
{
|
|
fileName surfaceDir(samplePath/timeDir);
|
|
|
|
if (!exists(surfaceDir))
|
|
{
|
|
mkDir(surfaceDir);
|
|
}
|
|
|
|
fileName planeFName(surfaceDir/fieldName + '_' + surfaceName + ".dx");
|
|
|
|
Info<< "Writing field " << fieldName << " to " << planeFName << endl;
|
|
|
|
OFstream dxFile(planeFName);
|
|
|
|
writeDXGeometry(points, faces, dxFile);
|
|
|
|
writeDXData(points, values, dxFile);
|
|
|
|
writeDXTrailer(dxFile);
|
|
|
|
dxFile << "end" << nl;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|