From 849c11b637177645e7ab67c732aec5afe7f8f765 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Mon, 15 Oct 2018 10:18:58 +0100 Subject: [PATCH] gmvOutputParcels.H: Removed unused file Resolved https://bugs.openfoam.org/view.php?id=3090 --- .../foamToGMV/gmvOutputParcels.H | 48 ------------------- 1 file changed, 48 deletions(-) delete mode 100644 applications/utilities/postProcessing/dataConversion/foamToGMV/gmvOutputParcels.H diff --git a/applications/utilities/postProcessing/dataConversion/foamToGMV/gmvOutputParcels.H b/applications/utilities/postProcessing/dataConversion/foamToGMV/gmvOutputParcels.H deleted file mode 100644 index ad46f67109..0000000000 --- a/applications/utilities/postProcessing/dataConversion/foamToGMV/gmvOutputParcels.H +++ /dev/null @@ -1,48 +0,0 @@ -gmvFile << "tracers " << particles.size() << nl; -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().position().x() << " "; -} -gmvFile << nl; - -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().position().y() << " "; -} -gmvFile << nl; - -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().position().z() << " "; -} -gmvFile << nl; - -gmvFile << "U" << nl; -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().velocity().x() << " "; -} -gmvFile << nl; - -gmvFile << "V" << nl; -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().velocity().y() << " "; -} -gmvFile << nl; - -gmvFile << "W" << nl; -forAllConstIter(discretePhase, particles, iter) -{ -{ - gmvFile << iter().velocity().z() << " "; -} -gmvFile << nl; - -gmvFile << "Diam" << nl; -forAllConstIter(discretePhase, particles, iter) -{ - gmvFile << iter().d() << " "; -} - -gmvFile << "endtrace"<< nl;