From c9d077171f913eeb9da86b5fb0dc4cd712055ebc Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Mon, 21 May 2018 13:19:41 +0100 Subject: [PATCH] Removed debug write of VTK points --- .../reconstructTools/finiteVolume/sharedPoints.C | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/decompositionMethods/decomposeReconstruct/reconstructTools/finiteVolume/sharedPoints.C b/src/decompositionMethods/decomposeReconstruct/reconstructTools/finiteVolume/sharedPoints.C index 68e223a4e..74b84c8a9 100644 --- a/src/decompositionMethods/decomposeReconstruct/reconstructTools/finiteVolume/sharedPoints.C +++ b/src/decompositionMethods/decomposeReconstruct/reconstructTools/finiteVolume/sharedPoints.C @@ -333,22 +333,6 @@ void Foam::sharedPoints::calcSharedPoints() nShared++; } } - - const pointField& P = meshes_[meshI].points(); - OFstream ppp("points" + name(meshI) + ".vtk"); - ppp << "# vtk DataFile Version 2.0" << nl - << "points" + name(meshI) << ".vtk" << nl - << "ASCII" << nl - << "DATASET POLYDATA" << nl - << "POINTS " << curShared.size() << " float" << nl; - - forAll (curShared, i) - { - ppp << float(P[curShared[i]].x()) << ' ' - << float(P[curShared[i]].y()) << ' ' - << float(P[curShared[i]].z()) - << nl; - } } }