diff --git a/applications/utilities/mesh/manipulation/checkMesh/Make/files b/applications/utilities/mesh/manipulation/checkMesh/Make/files index 21febe2789..f1d0fbea23 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/Make/files +++ b/applications/utilities/mesh/manipulation/checkMesh/Make/files @@ -1,6 +1,3 @@ -checkTools.C -checkTopology.C -checkGeometry.C checkMeshQuality.C checkMesh.C diff --git a/applications/utilities/mesh/manipulation/checkMesh/Make/options b/applications/utilities/mesh/manipulation/checkMesh/Make/options index fd8cb20b87..302012db1e 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/Make/options +++ b/applications/utilities/mesh/manipulation/checkMesh/Make/options @@ -1,14 +1,14 @@ EXE_INC = \ -I$(LIB_SRC)/meshTools/lnInclude \ - -I$(LIB_SRC)/fileFormats/lnInclude \ + -I$(LIB_SRC)/meshCheck/lnInclude \ -I$(LIB_SRC)/finiteVolume/lnInclude \ -I$(LIB_SRC)/sampling/lnInclude \ - -I$(LIB_SRC)/surfMesh/lnInclude \ -I$(LIB_SRC)/dynamicMesh/lnInclude EXE_LIBS = \ -lmeshTools \ - -lgenericPatches \ + -lmeshCheck \ + -lfiniteVolume \ -lsampling \ - -lsurfMesh \ - -ldynamicMesh + -ldynamicMesh \ + -lgenericPatches diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkMesh.C b/applications/utilities/mesh/manipulation/checkMesh/checkMesh.C index ad132584c9..173a8cda67 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkMesh.C +++ b/applications/utilities/mesh/manipulation/checkMesh/checkMesh.C @@ -196,13 +196,13 @@ int main(int argc, char *argv[]) // Reconstruct globalMeshData mesh.globalData(); - printMeshStats(mesh, allTopology); + meshTools::printMeshStats(mesh, allTopology); label nFailedChecks = 0; if (!noTopology) { - nFailedChecks += checkTopology + nFailedChecks += meshCheck::checkTopology ( mesh, allTopology, @@ -211,7 +211,7 @@ int main(int argc, char *argv[]) ); } - nFailedChecks += checkGeometry + nFailedChecks += meshCheck::checkGeometry ( mesh, allGeometry, @@ -242,7 +242,7 @@ int main(int argc, char *argv[]) { Info<< "Time = " << runTime.userTimeName() << nl << endl; - label nFailedChecks = checkGeometry + label nFailedChecks = meshCheck::checkGeometry ( mesh, allGeometry, diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkMeshQuality.C b/applications/utilities/mesh/manipulation/checkMesh/checkMeshQuality.C index cb7205c1da..b5b7232d2f 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkMeshQuality.C +++ b/applications/utilities/mesh/manipulation/checkMesh/checkMeshQuality.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -58,7 +58,7 @@ Foam::label Foam::checkMeshQuality faces.write(); if (writer.valid()) { - mergeAndWrite(writer(), faces); + meshTools::mergeAndWrite(writer(), faces); } } } diff --git a/src/Allwmake b/src/Allwmake index a750bdc7c8..a1ee472f6e 100755 --- a/src/Allwmake +++ b/src/Allwmake @@ -40,15 +40,17 @@ wmake $targetType lagrangian/basic generic/Allwmake $targetType $* +wmake $targetType sampling +wmake $targetType meshCheck + wmake $targetType mesh/extrudeModel wmake $targetType dynamicMesh +wmake $targetType conversion + # Compile scotchDecomp, metisDecomp etc. parallel/Allwmake $targetType $* -wmake $targetType conversion -wmake $targetType sampling - wmake $targetType fvMeshStitchers wmake $targetType fvMeshMovers fvMeshTopoChangers/Allwmake $targetType $* diff --git a/src/conversion/Make/files b/src/conversion/Make/files index db020b3104..09025af9a3 100644 --- a/src/conversion/Make/files +++ b/src/conversion/Make/files @@ -1,11 +1,3 @@ -ensight/file/ensightFile.C -ensight/file/ensightGeoFile.C -ensight/part/ensightPart.C -ensight/part/ensightPartIO.C -ensight/part/ensightPartCells.C -ensight/part/ensightPartFaces.C -ensight/part/ensightParts.C - mergedCyclic/mergedCyclicPolyPatch.C mergedCyclic/polyMeshUnMergeCyclics.C diff --git a/src/meshCheck/Make/files b/src/meshCheck/Make/files new file mode 100644 index 0000000000..01fd41923f --- /dev/null +++ b/src/meshCheck/Make/files @@ -0,0 +1,5 @@ +checkTools/checkTools.C +checkTools/checkTopology.C +checkTools/checkGeometry.C + +LIB = $(FOAM_LIBBIN)/libmeshCheck diff --git a/src/meshCheck/Make/options b/src/meshCheck/Make/options new file mode 100644 index 0000000000..708e484660 --- /dev/null +++ b/src/meshCheck/Make/options @@ -0,0 +1,13 @@ +EXE_INC = \ + -I$(LIB_SRC)/meshTools/lnInclude \ + -I$(LIB_SRC)/triSurface/lnInclude \ + -I$(LIB_SRC)/surfMesh/lnInclude \ + -I$(LIB_SRC)/fileFormats/lnInclude \ + -I$(LIB_SRC)/sampling/lnInclude + +LIB_LIBS = \ + -lmeshTools \ + -ltriSurface \ + -lsurfMesh \ + -lfileFormats \ + -lsampling diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkGeometry.C b/src/meshCheck/checkTools/checkGeometry.C similarity index 95% rename from applications/utilities/mesh/manipulation/checkMesh/checkGeometry.C rename to src/meshCheck/checkTools/checkGeometry.C index 7dc347c825..7e85e8d819 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkGeometry.C +++ b/src/meshCheck/checkTools/checkGeometry.C @@ -44,7 +44,7 @@ License // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Foam::label Foam::findOppositeWedge +Foam::label Foam::meshCheck::findOppositeWedge ( const polyMesh& mesh, const wedgePolyPatch& wpp @@ -84,7 +84,7 @@ Foam::label Foam::findOppositeWedge } -bool Foam::checkWedges +bool Foam::meshCheck::checkWedges ( const polyMesh& mesh, const bool report, @@ -357,7 +357,7 @@ namespace Foam } -bool Foam::checkCoupledPoints +bool Foam::meshCheck::checkCoupledPoints ( const polyMesh& mesh, const bool report, @@ -505,7 +505,7 @@ bool Foam::checkCoupledPoints } -Foam::label Foam::checkGeometry +Foam::label Foam::meshCheck::checkGeometry ( const polyMesh& mesh, const bool allGeometry, @@ -608,7 +608,7 @@ Foam::label Foam::checkGeometry nonAlignedPoints.write(); if (setWriter.valid()) { - mergeAndWrite(setWriter, nonAlignedPoints); + meshTools::mergeAndWrite(setWriter, nonAlignedPoints); } } } @@ -643,7 +643,7 @@ Foam::label Foam::checkGeometry cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } } @@ -659,7 +659,7 @@ Foam::label Foam::checkGeometry aspectCells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), aspectCells); + meshTools::mergeAndWrite(surfWriter(), aspectCells); } } } @@ -680,7 +680,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -702,7 +702,7 @@ Foam::label Foam::checkGeometry cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } } @@ -725,7 +725,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -747,7 +747,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -769,7 +769,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -793,7 +793,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -826,7 +826,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -851,7 +851,7 @@ Foam::label Foam::checkGeometry points.write(); if (setWriter.valid()) { - mergeAndWrite(setWriter, points); + meshTools::mergeAndWrite(setWriter, points); } } } @@ -874,7 +874,7 @@ Foam::label Foam::checkGeometry nearPoints.write(); if (setWriter.valid()) { - mergeAndWrite(setWriter, nearPoints); + meshTools::mergeAndWrite(setWriter, nearPoints); } } } @@ -898,7 +898,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -921,7 +921,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -942,7 +942,7 @@ Foam::label Foam::checkGeometry cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } } @@ -962,7 +962,7 @@ Foam::label Foam::checkGeometry cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } } @@ -983,7 +983,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -1004,7 +1004,7 @@ Foam::label Foam::checkGeometry faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkGeometry.H b/src/meshCheck/checkTools/checkGeometry.H similarity index 96% rename from applications/utilities/mesh/manipulation/checkMesh/checkGeometry.H rename to src/meshCheck/checkTools/checkGeometry.H index 76f2f06e12..ebda2017d8 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkGeometry.H +++ b/src/meshCheck/checkTools/checkGeometry.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -45,6 +45,8 @@ namespace Foam class wedgePolyPatch; class surfaceWriter; +namespace meshCheck +{ //- Find wedge with opposite orientation. Note: does not actually check // that it is opposite, only that it has opposite normal and same axis. label findOppositeWedge(const polyMesh&, const wedgePolyPatch&); @@ -70,6 +72,7 @@ namespace Foam const autoPtr& ); } +} // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTools.C b/src/meshCheck/checkTools/checkTools.C similarity index 97% rename from applications/utilities/mesh/manipulation/checkMesh/checkTools.C rename to src/meshCheck/checkTools/checkTools.C index bf68fccf84..628763c64c 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTools.C +++ b/src/meshCheck/checkTools/checkTools.C @@ -46,7 +46,11 @@ License // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -void Foam::printMeshStats(const polyMesh& mesh, const bool allTopology) +void Foam::meshTools::printMeshStats +( + const polyMesh& mesh, + const bool allTopology +) { Info<< "Mesh stats" << nl << " points: " @@ -205,7 +209,7 @@ void Foam::printMeshStats(const polyMesh& mesh, const bool allTopology) } -void Foam::mergeAndWrite +void Foam::meshTools::mergeAndWrite ( const polyMesh& mesh, const surfaceWriter& writer, @@ -257,7 +261,7 @@ void Foam::mergeAndWrite } -Foam::fileName Foam::checkMeshOutputDir(const polyMesh& mesh) +Foam::fileName Foam::meshTools::checkMeshOutputDir(const polyMesh& mesh) { return mesh.time().globalPath() @@ -272,7 +276,7 @@ Foam::fileName Foam::checkMeshOutputDir(const polyMesh& mesh) } -void Foam::mergeAndWrite +void Foam::meshTools::mergeAndWrite ( const surfaceWriter& writer, const faceSet& set @@ -290,7 +294,7 @@ void Foam::mergeAndWrite } -void Foam::mergeAndWrite +void Foam::meshTools::mergeAndWrite ( const surfaceWriter& writer, const cellSet& set @@ -377,7 +381,7 @@ void Foam::mergeAndWrite } -void Foam::mergeAndWrite +void Foam::meshTools::mergeAndWrite ( const setWriter& writer, const pointSet& set diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTools.H b/src/meshCheck/checkTools/checkTools.H similarity index 97% rename from applications/utilities/mesh/manipulation/checkMesh/checkTools.H rename to src/meshCheck/checkTools/checkTools.H index a24e7950d1..3a74c1c8d9 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTools.H +++ b/src/meshCheck/checkTools/checkTools.H @@ -32,7 +32,6 @@ SourceFiles #ifndef checkTools_H #define checkTools_H -#include "scalar.H" #include "indirectPrimitivePatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -45,9 +44,9 @@ namespace Foam class pointSet; class faceSet; class cellSet; - class fileName; - class polyMesh; +namespace meshTools +{ //- Output directory for sets and surfaces fileName checkMeshOutputDir(const polyMesh& mesh); @@ -77,6 +76,7 @@ namespace Foam // postProcessing/ directory void mergeAndWrite(const setWriter&, const pointSet&); } +} // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C b/src/meshCheck/checkTools/checkTopology.C similarity index 96% rename from applications/utilities/mesh/manipulation/checkMesh/checkTopology.C rename to src/meshCheck/checkTools/checkTopology.C index 31ca489079..f4b67c7f4a 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C +++ b/src/meshCheck/checkTools/checkTopology.C @@ -38,7 +38,7 @@ License // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -Foam::label Foam::checkTopology +Foam::label Foam::meshCheck::checkTopology ( const polyMesh& mesh, const bool allTopology, @@ -131,7 +131,7 @@ Foam::label Foam::checkTopology cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } @@ -156,7 +156,7 @@ Foam::label Foam::checkTopology points.write(); if (setWriter.valid()) { - mergeAndWrite(setWriter, points); + meshTools::mergeAndWrite(setWriter, points); } } } @@ -178,7 +178,7 @@ Foam::label Foam::checkTopology faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -198,7 +198,7 @@ Foam::label Foam::checkTopology faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -219,7 +219,7 @@ Foam::label Foam::checkTopology cells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), cells); + meshTools::mergeAndWrite(surfWriter(), cells); } } @@ -243,7 +243,7 @@ Foam::label Foam::checkTopology faces.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), faces); + meshTools::mergeAndWrite(surfWriter(), faces); } } } @@ -298,7 +298,7 @@ Foam::label Foam::checkTopology oneCells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), oneCells); + meshTools::mergeAndWrite(surfWriter(), oneCells); } } @@ -314,7 +314,7 @@ Foam::label Foam::checkTopology twoCells.write(); if (surfWriter.valid()) { - mergeAndWrite(surfWriter(), twoCells); + meshTools::mergeAndWrite(surfWriter(), twoCells); } } } @@ -459,7 +459,7 @@ Foam::label Foam::checkTopology points.write(); if (setWriter.valid()) { - mergeAndWrite(setWriter, points); + meshTools::mergeAndWrite(setWriter, points); } } } diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H b/src/meshCheck/checkTools/checkTopology.H similarity index 98% rename from applications/utilities/mesh/manipulation/checkMesh/checkTopology.H rename to src/meshCheck/checkTools/checkTopology.H index 71d3114072..e186046a7f 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.H +++ b/src/meshCheck/checkTools/checkTopology.H @@ -43,6 +43,8 @@ namespace Foam class surfaceWriter; class setWriter; +namespace meshCheck +{ label checkTopology ( const polyMesh& mesh, @@ -51,6 +53,7 @@ namespace Foam const autoPtr& setWriter ); } +} // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // diff --git a/src/sampling/Make/files b/src/sampling/Make/files index f41e346773..e271890868 100644 --- a/src/sampling/Make/files +++ b/src/sampling/Make/files @@ -27,6 +27,14 @@ sampledSet/faceSetSampledSet/faceSetSampledSet.C setWriters = sampledSet/writers $(setWriters)/setWriter.C + +$(setWriters)/ensight/file/ensightFile.C +$(setWriters)/ensight/file/ensightGeoFile.C +$(setWriters)/ensight/part/ensightPart.C +$(setWriters)/ensight/part/ensightPartIO.C +$(setWriters)/ensight/part/ensightPartCells.C +$(setWriters)/ensight/part/ensightPartFaces.C +$(setWriters)/ensight/part/ensightParts.C $(setWriters)/ensight/ensightSetWriter.C $(setWriters)/raw/rawSetWriter.C $(setWriters)/vtk/vtkSetWriter.C diff --git a/src/sampling/Make/options b/src/sampling/Make/options index 8e006e099c..109a91f665 100644 --- a/src/sampling/Make/options +++ b/src/sampling/Make/options @@ -4,8 +4,6 @@ EXE_INC = \ -I$(LIB_SRC)/surfMesh/lnInclude \ -I$(LIB_SRC)/fileFormats/lnInclude \ -I$(LIB_SRC)/triSurface/lnInclude \ - -I$(LIB_SRC)/dynamicMesh/lnInclude \ - -I$(LIB_SRC)/conversion/lnInclude \ -I$(LIB_SRC)/lagrangian/basic/lnInclude LIB_LIBS = \ @@ -14,6 +12,4 @@ LIB_LIBS = \ -lsurfMesh \ -lfileFormats \ -ltriSurface \ - -llagrangian \ - -ldynamicMesh \ - -lconversion + -llagrangian diff --git a/src/conversion/ensight/file/ensightFile.C b/src/sampling/sampledSet/writers/ensight/file/ensightFile.C similarity index 98% rename from src/conversion/ensight/file/ensightFile.C rename to src/sampling/sampledSet/writers/ensight/file/ensightFile.C index 5ec67b9f97..820392bd37 100644 --- a/src/conversion/ensight/file/ensightFile.C +++ b/src/sampling/sampledSet/writers/ensight/file/ensightFile.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/file/ensightFile.H b/src/sampling/sampledSet/writers/ensight/file/ensightFile.H similarity index 100% rename from src/conversion/ensight/file/ensightFile.H rename to src/sampling/sampledSet/writers/ensight/file/ensightFile.H diff --git a/src/conversion/ensight/file/ensightGeoFile.C b/src/sampling/sampledSet/writers/ensight/file/ensightGeoFile.C similarity index 96% rename from src/conversion/ensight/file/ensightGeoFile.C rename to src/sampling/sampledSet/writers/ensight/file/ensightGeoFile.C index aab24b15b6..45063e2ad5 100644 --- a/src/conversion/ensight/file/ensightGeoFile.C +++ b/src/sampling/sampledSet/writers/ensight/file/ensightGeoFile.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/file/ensightGeoFile.H b/src/sampling/sampledSet/writers/ensight/file/ensightGeoFile.H similarity index 100% rename from src/conversion/ensight/file/ensightGeoFile.H rename to src/sampling/sampledSet/writers/ensight/file/ensightGeoFile.H diff --git a/src/conversion/ensight/part/ensightPart.C b/src/sampling/sampledSet/writers/ensight/part/ensightPart.C similarity index 98% rename from src/conversion/ensight/part/ensightPart.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPart.C index 2bfe4be35b..03182e9867 100644 --- a/src/conversion/ensight/part/ensightPart.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPart.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPart.H b/src/sampling/sampledSet/writers/ensight/part/ensightPart.H similarity index 99% rename from src/conversion/ensight/part/ensightPart.H rename to src/sampling/sampledSet/writers/ensight/part/ensightPart.H index 6e709da014..8d822e547b 100644 --- a/src/conversion/ensight/part/ensightPart.H +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPart.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartCells.C b/src/sampling/sampledSet/writers/ensight/part/ensightPartCells.C similarity index 99% rename from src/conversion/ensight/part/ensightPartCells.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPartCells.C index 17b386c852..0654052d68 100644 --- a/src/conversion/ensight/part/ensightPartCells.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartCells.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartCells.H b/src/sampling/sampledSet/writers/ensight/part/ensightPartCells.H similarity index 98% rename from src/conversion/ensight/part/ensightPartCells.H rename to src/sampling/sampledSet/writers/ensight/part/ensightPartCells.H index 6c52db132f..f23be8272a 100644 --- a/src/conversion/ensight/part/ensightPartCells.H +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartCells.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartFaces.C b/src/sampling/sampledSet/writers/ensight/part/ensightPartFaces.C similarity index 100% rename from src/conversion/ensight/part/ensightPartFaces.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPartFaces.C diff --git a/src/conversion/ensight/part/ensightPartFaces.H b/src/sampling/sampledSet/writers/ensight/part/ensightPartFaces.H similarity index 98% rename from src/conversion/ensight/part/ensightPartFaces.H rename to src/sampling/sampledSet/writers/ensight/part/ensightPartFaces.H index 744a769b47..c7ac047041 100644 --- a/src/conversion/ensight/part/ensightPartFaces.H +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartFaces.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartIO.C b/src/sampling/sampledSet/writers/ensight/part/ensightPartIO.C similarity index 99% rename from src/conversion/ensight/part/ensightPartIO.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPartIO.C index 049a188363..1638aae163 100644 --- a/src/conversion/ensight/part/ensightPartIO.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartIO.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartTemplates.C b/src/sampling/sampledSet/writers/ensight/part/ensightPartTemplates.C similarity index 97% rename from src/conversion/ensight/part/ensightPartTemplates.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPartTemplates.C index 6c0a160627..f65fdbca4b 100644 --- a/src/conversion/ensight/part/ensightPartTemplates.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartTemplates.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2021 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightParts.C b/src/sampling/sampledSet/writers/ensight/part/ensightParts.C similarity index 99% rename from src/conversion/ensight/part/ensightParts.C rename to src/sampling/sampledSet/writers/ensight/part/ensightParts.C index 0910b20e3c..86ad60cf14 100644 --- a/src/conversion/ensight/part/ensightParts.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightParts.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightParts.H b/src/sampling/sampledSet/writers/ensight/part/ensightParts.H similarity index 98% rename from src/conversion/ensight/part/ensightParts.H rename to src/sampling/sampledSet/writers/ensight/part/ensightParts.H index b05dbbd939..d222c51167 100644 --- a/src/conversion/ensight/part/ensightParts.H +++ b/src/sampling/sampledSet/writers/ensight/part/ensightParts.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License diff --git a/src/conversion/ensight/part/ensightPartsTemplates.C b/src/sampling/sampledSet/writers/ensight/part/ensightPartsTemplates.C similarity index 97% rename from src/conversion/ensight/part/ensightPartsTemplates.C rename to src/sampling/sampledSet/writers/ensight/part/ensightPartsTemplates.C index 90303c09de..a17be1f7d6 100644 --- a/src/conversion/ensight/part/ensightPartsTemplates.C +++ b/src/sampling/sampledSet/writers/ensight/part/ensightPartsTemplates.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License