diff --git a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.C b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.C index b8d3899906..bb1b777118 100644 --- a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.C +++ b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2012-2019 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2021 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -59,7 +59,7 @@ void Foam::conformationSurfaces::hasBoundedVolume ) ) { - pointField pts(1, locationInMesh_); + pointField pts(1, insidePoint_); List vTypes ( @@ -271,7 +271,7 @@ Foam::conformationSurfaces::conformationSurfaces runTime_(runTime), allGeometry_(allGeometry), features_(), - locationInMesh_(surfaceConformationDict.lookup("locationInMesh")), + insidePoint_(surfaceConformationDict.lookup("insidePoint")), surfaces_(), allGeometryToSurfaces_(), normalVolumeTypes_(), @@ -561,7 +561,7 @@ Foam::conformationSurfaces::conformationSurfaces globalBounds_.min() -= newSpan; globalBounds_.max() += newSpan; - // Look at all surfaces at determine whether the locationInMesh point is + // Look at all surfaces at determine whether the insidePoint point is // inside or outside each, to establish a signature for the domain to be // meshed. @@ -572,7 +572,7 @@ Foam::conformationSurfaces::conformationSurfaces ); Info<< endl - << "Testing for locationInMesh " << locationInMesh_ << endl; + << "Testing for insidePoint " << insidePoint_ << endl; hasBoundedVolume(referenceVolumeTypes_); diff --git a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.H b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.H index 9def4d5187..28e633ec66 100644 --- a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.H +++ b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfaces.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2012-2019 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2021 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -67,7 +67,7 @@ class conformationSurfaces //- The location in the mesh that specifies which portion of surfaces is // to be meshed. - point locationInMesh_; + point insidePoint_; //- Indices of surfaces in allGeometry that are to be conformed to labelList surfaces_; @@ -162,7 +162,7 @@ public: inline const PtrList& features() const; //- Return the location to mesh - inline const point& locationInMesh() const; + inline const point& insidePoint() const; //- Return the surface indices inline const labelList& surfaces() const; diff --git a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfacesI.H b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfacesI.H index 21e467b146..213a6016cf 100644 --- a/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfacesI.H +++ b/applications/utilities/mesh/generation/foamyMesh/conformalVoronoiMesh/conformationSurfaces/conformationSurfacesI.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org - \\ / A nd | Copyright (C) 2012-2018 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2012-2021 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -38,9 +38,9 @@ Foam::conformationSurfaces::features() const } -const Foam::point& Foam::conformationSurfaces::locationInMesh() const +const Foam::point& Foam::conformationSurfaces::insidePoint() const { - return locationInMesh_; + return insidePoint_; } diff --git a/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2D.C b/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2D.C index 0485ba800d..cb3154deff 100644 --- a/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2D.C +++ b/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2D.C @@ -152,7 +152,7 @@ Foam::CV2D::CV2D ( point ( - cvMeshDict.subDict("surfaceConformation").lookup("locationInMesh") + cvMeshDict.subDict("surfaceConformation").lookup("insidePoint") ).z() ), startOfInternalPoints_(0), diff --git a/etc/caseDicts/annotated/foamyHexMeshDict b/etc/caseDicts/annotated/foamyHexMeshDict index ffcf8296f0..975fd099d7 100644 --- a/etc/caseDicts/annotated/foamyHexMeshDict +++ b/etc/caseDicts/annotated/foamyHexMeshDict @@ -85,7 +85,7 @@ geometry surfaceConformation { // A point inside surfaces that is inside mesh. - locationInMesh (0 0 0); + insidePoint (0 0 0); // How far apart are point-duplets generated. Balance this between // - very low distance: little chance of interference from other diff --git a/etc/caseDicts/annotated/foamyQuadMeshDict b/etc/caseDicts/annotated/foamyQuadMeshDict index 598708e68b..5152f744bb 100644 --- a/etc/caseDicts/annotated/foamyQuadMeshDict +++ b/etc/caseDicts/annotated/foamyQuadMeshDict @@ -26,7 +26,7 @@ geometry surfaceConformation { - locationInMesh (-2.8 0.7 0.5); + insidePoint (-2.8 0.7 0.5); pointPairDistanceCoeff 0.005; diff --git a/etc/caseDicts/annotated/snappyHexMeshDict b/etc/caseDicts/annotated/snappyHexMeshDict index 4babb4990f..8b72a644af 100644 --- a/etc/caseDicts/annotated/snappyHexMeshDict +++ b/etc/caseDicts/annotated/snappyHexMeshDict @@ -254,10 +254,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (5 0.28 0.43); + insidePoint (5 0.28 0.43); // Whether any faceZones (as specified in the refinementSurfaces) // are only on the boundary of corresponding cellZones or also allow diff --git a/etc/caseDicts/mesh/generation/snappyHexMeshDict b/etc/caseDicts/mesh/generation/snappyHexMeshDict index ff1778f0da..065793b524 100644 --- a/etc/caseDicts/mesh/generation/snappyHexMeshDict +++ b/etc/caseDicts/mesh/generation/snappyHexMeshDict @@ -81,7 +81,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/closedVolume/system/snappyHexMeshDict b/etc/templates/closedVolume/system/snappyHexMeshDict index c30272fea3..b0fe434623 100644 --- a/etc/templates/closedVolume/system/snappyHexMeshDict +++ b/etc/templates/closedVolume/system/snappyHexMeshDict @@ -53,7 +53,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/closedVolumeRotating/system/snappyHexMeshDict b/etc/templates/closedVolumeRotating/system/snappyHexMeshDict index 07a7101517..82bac77499 100644 --- a/etc/templates/closedVolumeRotating/system/snappyHexMeshDict +++ b/etc/templates/closedVolumeRotating/system/snappyHexMeshDict @@ -80,7 +80,7 @@ castellatedMeshControls */ } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict b/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict index be9e34c04b..96dfb01301 100644 --- a/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict +++ b/etc/templates/compressibleInflowOutflow/system/snappyHexMeshDict @@ -81,7 +81,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/inflowOutflow/system/snappyHexMeshDict b/etc/templates/inflowOutflow/system/snappyHexMeshDict index be9e34c04b..96dfb01301 100644 --- a/etc/templates/inflowOutflow/system/snappyHexMeshDict +++ b/etc/templates/inflowOutflow/system/snappyHexMeshDict @@ -81,7 +81,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict b/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict index 1f49c1538a..120e9a0df8 100644 --- a/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict +++ b/etc/templates/inflowOutflowRotating/system/snappyHexMeshDict @@ -109,7 +109,7 @@ castellatedMeshControls */ } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/etc/templates/singleFluidCHT/system/snappyHexMeshDict b/etc/templates/singleFluidCHT/system/snappyHexMeshDict index 6e0d32bcb9..095a97bd0d 100644 --- a/etc/templates/singleFluidCHT/system/snappyHexMeshDict +++ b/etc/templates/singleFluidCHT/system/snappyHexMeshDict @@ -100,7 +100,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge nCellsBetweenLevels 3; } diff --git a/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict b/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict index ed5d4db949..3e41c128ec 100644 --- a/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/membrane/system/snappyHexMeshDict @@ -138,7 +138,7 @@ castellatedMeshControls } } - locationInMesh (0 0 0); + insidePoint (0 0 0); } snapControls diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict index cd52fa0043..8046e28ec1 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/annularThermalMixer/system/snappyHexMeshDict @@ -203,7 +203,7 @@ castellatedMeshControls resolveFeatureAngle 30; - locationInMesh (0.035 0.043 0.017); + insidePoint (0.035 0.043 0.017); allowFreeStandingZoneFaces true; } diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/iglooWithFridges/system/snappyHexMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/iglooWithFridges/system/snappyHexMeshDict index 5786beb742..e34f029152 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/iglooWithFridges/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/iglooWithFridges/system/snappyHexMeshDict @@ -193,10 +193,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (3 0.28 0.43); + insidePoint (3 0.28 0.43); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/snappyHexMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/snappyHexMeshDict index c5c7cff991..42c7508df4 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/snappyHexMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/snappyHexMeshDict @@ -94,7 +94,7 @@ castellatedMeshControls nCellsBetweenLevels 1; - locationInMesh (0.025 0.025 0.075); + insidePoint (0.025 0.025 0.075); } addLayersControls diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/snappyHexMeshDict.orig b/tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/snappyHexMeshDict.orig index 409e485307..48e8514d19 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/snappyHexMeshDict.orig +++ b/tutorials/heatTransfer/chtMultiRegionFoam/shellAndTubeHeatExchanger/system/snappyHexMeshDict.orig @@ -116,7 +116,7 @@ castellatedMeshControls } } - locationInMesh (0 0.008 0.015); + insidePoint (0 0.008 0.015); nCellsBetweenLevels 2; diff --git a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict index b317c011f0..90288d3fc4 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/propeller/system/snappyHexMeshDict @@ -244,10 +244,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (0.01 -0.5 0.01); + insidePoint (0.01 -0.5 0.01); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict index 9b1c5040ab..53cc73718c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/wingMotion/wingMotion_snappyHexMesh/system/snappyHexMeshDict @@ -134,10 +134,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.5 0 0); + insidePoint (-0.5 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict index 3769f28953..0e3e630337 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/snappyHexMeshDict @@ -148,10 +148,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (3 3 0.43); + insidePoint (3 3 0.43); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict index d3a2aa51aa..ea0aa5fe55 100644 --- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict +++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/system/foamyHexMeshDict @@ -22,7 +22,7 @@ geometry surfaceConformation { - locationInMesh (-0.078 0.02 0.0); + insidePoint (-0.078 0.02 0.0); featurePointControls { diff --git a/tutorials/incompressible/simpleFoam/drivaerFastback/system/snappyHexMeshDict.orig b/tutorials/incompressible/simpleFoam/drivaerFastback/system/snappyHexMeshDict.orig index 989b4c623d..0789f65ff7 100644 --- a/tutorials/incompressible/simpleFoam/drivaerFastback/system/snappyHexMeshDict.orig +++ b/tutorials/incompressible/simpleFoam/drivaerFastback/system/snappyHexMeshDict.orig @@ -108,7 +108,7 @@ castellatedMeshControls } } - locationInMesh (0 0 3); + insidePoint (0 0 3); nCellsBetweenLevels 5; } diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict index 767411f428..bb91516ad2 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/snappyHexMeshDict @@ -155,10 +155,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (3.0001 3.0001 0.43); + insidePoint (3.0001 3.0001 0.43); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict index 9c829bbb5c..95841ea8e4 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/snappyHexMeshDict @@ -100,7 +100,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid + insidePoint (1e-5 1e-5 1e-5); // Offset from (0 0 0) to avoid // coinciding with face or edge } diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict index bc0036d971..bb652c555b 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/snappyHexMeshDict @@ -191,10 +191,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (581770 4.78580e+06 1050); + insidePoint (581770 4.78580e+06 1050); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict index 3d9afaa4c1..0ef33bc26b 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/snappyHexMeshDict @@ -60,7 +60,7 @@ castellatedMeshControls } } - locationInMesh (1 1 1); + insidePoint (1 1 1); } snapControls diff --git a/tutorials/lagrangian/denseParticleFoam/cyclone/system/snappyHexMeshDict b/tutorials/lagrangian/denseParticleFoam/cyclone/system/snappyHexMeshDict index 571dbc6c08..4176d620fe 100644 --- a/tutorials/lagrangian/denseParticleFoam/cyclone/system/snappyHexMeshDict +++ b/tutorials/lagrangian/denseParticleFoam/cyclone/system/snappyHexMeshDict @@ -112,10 +112,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (0.001 0.001 0.001); + insidePoint (0.001 0.001 0.001); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict index c838e256ed..6cee4c6658 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/foamyHexMeshDict @@ -61,7 +61,7 @@ initialPoints surfaceConformation { - locationInMesh (0.1 0.1 0.2); + insidePoint (0.1 0.1 0.2); featurePointControls { diff --git a/tutorials/mesh/foamyHexMesh/blob/system/snappyHexMeshDict b/tutorials/mesh/foamyHexMesh/blob/system/snappyHexMeshDict index 3f56f74a35..f384152341 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/snappyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/snappyHexMeshDict @@ -132,10 +132,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-1 0 0); + insidePoint (-1 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict index 3db2dec14b..7759a8ee45 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/foamyHexMeshDict @@ -39,7 +39,7 @@ initialPoints surfaceConformation { - locationInMesh (0 0 0); + insidePoint (0 0 0); geometryToConformTo { diff --git a/tutorials/mesh/foamyHexMesh/flange/system/snappyHexMeshDict b/tutorials/mesh/foamyHexMesh/flange/system/snappyHexMeshDict index 0bfcd00ee0..2a738d42b2 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/snappyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/snappyHexMeshDict @@ -136,10 +136,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh ${:foamyHexMesh.surfaceConformation.locationInMesh}; + insidePoint ${:foamyHexMesh.surfaceConformation.insidePoint}; // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict b/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict index 081095f584..b784ca84e0 100644 --- a/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict +++ b/tutorials/mesh/foamyHexMesh/simpleShapes/system/foamyHexMeshDict @@ -42,7 +42,7 @@ geometry surfaceConformation { - locationInMesh (0 -0.5 0); + insidePoint (0 -0.5 0); featurePointControls { diff --git a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict index c950d7a56f..2bc279720c 100644 --- a/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict +++ b/tutorials/mesh/foamyQuadMesh/jaggedBoundary/system/foamyQuadMeshDict @@ -26,7 +26,7 @@ geometry surfaceConformation { // The z-coordinate of the plane is taken from here. - locationInMesh (-0.6 0.3 0.0); + insidePoint (-0.6 0.3 0.0); pointPairDistanceCoeff 0.001; diff --git a/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict b/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict index 31e5237e79..84f60a2415 100644 --- a/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict +++ b/tutorials/mesh/foamyQuadMesh/square/system/foamyQuadMeshDict @@ -34,7 +34,7 @@ geometry surfaceConformation { // The z-coordinate of the plane is taken from here. - locationInMesh (0 0 0); + insidePoint (0 0 0); pointPairDistanceCoeff 0.005; diff --git a/tutorials/mesh/snappyHexMesh/flange/system/snappyHexMeshDict b/tutorials/mesh/snappyHexMesh/flange/system/snappyHexMeshDict index f21cdd6e4a..fa519ef954 100644 --- a/tutorials/mesh/snappyHexMesh/flange/system/snappyHexMeshDict +++ b/tutorials/mesh/snappyHexMesh/flange/system/snappyHexMeshDict @@ -141,11 +141,11 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - // This is an outside point locationInMesh (-0.033 -0.033 0.0033); - locationInMesh (-9.23149e-05 -0.0025 -0.0025); // Inside point + // This is an outside point insidePoint (-0.033 -0.033 0.0033); + insidePoint (-9.23149e-05 -0.0025 -0.0025); // Inside point // Whether any faceZones (as specified in the refinementSurfaces) // are only on the boundary of corresponding cellZones or also allow diff --git a/tutorials/mesh/snappyHexMesh/pipe/system/snappyHexMeshDict b/tutorials/mesh/snappyHexMesh/pipe/system/snappyHexMeshDict index ff89f315a8..fa41a6c66f 100644 --- a/tutorials/mesh/snappyHexMesh/pipe/system/snappyHexMeshDict +++ b/tutorials/mesh/snappyHexMesh/pipe/system/snappyHexMeshDict @@ -66,7 +66,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); + insidePoint (1e-5 1e-5 1e-5); } snapControls diff --git a/tutorials/multiphase/interFoam/RAS/DTCHull/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/RAS/DTCHull/system/snappyHexMeshDict index b944e74ab2..7a285738fd 100644 --- a/tutorials/multiphase/interFoam/RAS/DTCHull/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/RAS/DTCHull/system/snappyHexMeshDict @@ -115,10 +115,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.7 0 0); + insidePoint (-0.7 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/RAS/DTCHullMoving/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/RAS/DTCHullMoving/system/snappyHexMeshDict index b944e74ab2..7a285738fd 100644 --- a/tutorials/multiphase/interFoam/RAS/DTCHullMoving/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/RAS/DTCHullMoving/system/snappyHexMeshDict @@ -115,10 +115,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.7 0 0); + insidePoint (-0.7 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/RAS/DTCHullWave/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/RAS/DTCHullWave/system/snappyHexMeshDict index b944e74ab2..7a285738fd 100644 --- a/tutorials/multiphase/interFoam/RAS/DTCHullWave/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/RAS/DTCHullWave/system/snappyHexMeshDict @@ -115,10 +115,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.7 0 0); + insidePoint (-0.7 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/RAS/mixerVesselAMI/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/RAS/mixerVesselAMI/system/snappyHexMeshDict index 8d93323821..d558078123 100644 --- a/tutorials/multiphase/interFoam/RAS/mixerVesselAMI/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/RAS/mixerVesselAMI/system/snappyHexMeshDict @@ -334,10 +334,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (0 0.1 1.0); + insidePoint (0 0.1 1.0); // Whether any faceZones (as specified in the refinementSurfaces) // are only on the boundary of corresponding cellZones or also allow diff --git a/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.1 b/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.1 index 5f32be96b0..66dc76a90f 100644 --- a/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.1 +++ b/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.1 @@ -115,10 +115,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.7 0 0); + insidePoint (-0.7 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.2 b/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.2 index 31911544f5..331e95bf8c 100644 --- a/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.2 +++ b/tutorials/multiphase/interFoam/RAS/planingHullW3/system/snappyHexMeshDict.2 @@ -150,10 +150,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (-0.7 0 0); + insidePoint (-0.7 0 0); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/RAS/propeller/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/RAS/propeller/system/snappyHexMeshDict index b317c011f0..90288d3fc4 100644 --- a/tutorials/multiphase/interFoam/RAS/propeller/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/RAS/propeller/system/snappyHexMeshDict @@ -244,10 +244,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (0.01 -0.5 0.01); + insidePoint (0.01 -0.5 0.01); // Whether any faceZones (as specified in the refinementSurfaces) diff --git a/tutorials/multiphase/interFoam/laminar/cavitatingBullet/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/laminar/cavitatingBullet/system/snappyHexMeshDict index 592675cfa6..b0d6f085f0 100644 --- a/tutorials/multiphase/interFoam/laminar/cavitatingBullet/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/laminar/cavitatingBullet/system/snappyHexMeshDict @@ -162,10 +162,10 @@ castellatedMeshControls // After refinement patches get added for all refinementSurfaces and // all cells intersecting the surfaces get put into these patches. The - // section reachable from the locationInMesh is kept. + // section reachable from the insidePoint is kept. // NOTE: This point should never be on a face, always inside a cell, even // after refinement. - locationInMesh (0 0 -10e-3); + insidePoint (0 0 -10e-3); allowFreeStandingZoneFaces false; } diff --git a/tutorials/multiphase/interFoam/laminar/sloshingCylinder/system/snappyHexMeshDict b/tutorials/multiphase/interFoam/laminar/sloshingCylinder/system/snappyHexMeshDict index f0a19a88ea..5ecbae77be 100644 --- a/tutorials/multiphase/interFoam/laminar/sloshingCylinder/system/snappyHexMeshDict +++ b/tutorials/multiphase/interFoam/laminar/sloshingCylinder/system/snappyHexMeshDict @@ -48,7 +48,7 @@ castellatedMeshControls } } - locationInMesh (1e-5 1e-5 1e-5); + insidePoint (1e-5 1e-5 1e-5); } snapControls