ENH: topoSet: allow transformation of input locations

This commit is contained in:
mattijs 2024-06-12 15:11:44 +01:00
parent bb483951b7
commit 5873ec1b22
2 changed files with 36 additions and 7 deletions

View File

@ -34,6 +34,16 @@ cellSet_doc
// or // or
min (0 0 0); min (0 0 0);
max (1 1 1); max (1 1 1);
// Optional the cell centres can be transformed before being used. This
// can be used to simulate moving selections in transient simulations.
// Any solidBodyMotionFunction can be used. Note: the same optional
// transformation can be used for any selection requiring face centres
// or point locations.
solidBodyMotionFunction linearMotion
{
velocity (-0.1 -0.1 0);
}
} }
@ -58,6 +68,8 @@ cellSet_doc
radius 5.0; radius 5.0;
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the cell centres
} }
//- Select based on faceSet //- Select based on faceSet
@ -117,6 +129,8 @@ cellSet_doc
{ {
source nearestToCell; source nearestToCell;
points ((0 0 0) (1 1 1)(2 2 2)); points ((0 0 0) (1 1 1)(2 2 2));
// See boxToCell for optional transformation of the cell centres
} }
@ -162,6 +176,8 @@ cellSet_doc
i (0.2 0.2 0); i (0.2 0.2 0);
j (-0.2 0.2 0); j (-0.2 0.2 0);
k (10 10 10); k (10 10 10);
// See boxToCell for optional transformation of the cell centres
} }
@ -170,6 +186,8 @@ cellSet_doc
source searchableSurfaceToCell; source searchableSurfaceToCell;
surfaceType triSurfaceMesh; // Type of surface surfaceType triSurfaceMesh; // Type of surface
surfaceName blob.obj; // Name for surface object surfaceName blob.obj; // Name for surface object
// See boxToCell for optional transformation of the cell centres
} }
@ -188,6 +206,8 @@ cellSet_doc
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the cell centres
} }
@ -209,6 +229,7 @@ cellSet_doc
useSurfaceOrientation false; // use closed surface inside/outside useSurfaceOrientation false; // use closed surface inside/outside
// test (ignores includeCut, // test (ignores includeCut,
// outsidePoints) // outsidePoints)
// See boxToCell for optional transformation of the cell centres
} }
@ -257,6 +278,8 @@ faceSet_doc
// or // or
min (0 0 0); min (0 0 0);
max (1 1 1); max (1 1 1);
// See boxToCell for optional transformation of the face centres
} }
@ -286,6 +309,8 @@ faceSet_doc
radius 5.0; radius 5.0;
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the face centres
} }
@ -352,6 +377,8 @@ faceSet_doc
source searchableSurfaceToFace; source searchableSurfaceToFace;
surfaceType triSurfaceMesh; // Type of surface surfaceType triSurfaceMesh; // Type of surface
surfaceName blob.obj; // Name for surface object surfaceName blob.obj; // Name for surface object
// See boxToCell for optional transformation of the face centres
} }
@ -362,6 +389,8 @@ faceSet_doc
radius 5.0; radius 5.0;
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the face centres
} }
@ -410,6 +439,8 @@ pointSet_doc
// or // or
min (0 0 0); min (0 0 0);
max (1 1 1); max (1 1 1);
// See boxToCell for optional transformation of the points
} }
@ -436,6 +467,7 @@ pointSet_doc
radius 5.0; radius 5.0;
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the points
} }
@ -465,6 +497,7 @@ pointSet_doc
{ {
source nearestToPoint; source nearestToPoint;
points ((0 0 0) (1 1 1)); points ((0 0 0) (1 1 1));
// See boxToCell for optional transformation of the points
} }
@ -486,6 +519,7 @@ pointSet_doc
source searchableSurfaceToCell; source searchableSurfaceToCell;
surfaceType triSurfaceMesh; // Type of surface surfaceType triSurfaceMesh; // Type of surface
surfaceName blob.obj; // Name for surface object surfaceName blob.obj; // Name for surface object
// See boxToCell for optional transformation of the points
} }
@ -496,6 +530,7 @@ pointSet_doc
radius 5.0; radius 5.0;
// optional // optional
innerRadius 1.0; innerRadius 1.0;
// See boxToCell for optional transformation of the points
} }
@ -508,6 +543,7 @@ pointSet_doc
// (requires closed surface with consistent // (requires closed surface with consistent
// normals) // normals)
includeOutside false; // ,, outside ,, includeOutside false; // ,, outside ,,
// See boxToCell for optional transformation of the points
} }

View File

@ -28,9 +28,6 @@ multiSolidBodyMotionSolverCoeffs
one one
{ {
solidBodyMotionFunction linearMotion; solidBodyMotionFunction linearMotion;
origin (0.005 0.005 0.005);
axis (0 0 1);
omega 0;
velocity (-0.1 -0.1 0); velocity (-0.1 -0.1 0);
} }
two two
@ -39,7 +36,6 @@ multiSolidBodyMotionSolverCoeffs
origin (0.005 0.005 0.005); origin (0.005 0.005 0.005);
axis (0 0 1); axis (0 0 1);
omega 20.0; omega 20.0;
velocity (-0.1 0 0);
} }
} }
} }
@ -50,9 +46,6 @@ multiSolidBodyMotionSolverCoeffs
linearMotionCoeffs linearMotionCoeffs
{ {
velocity (0.1 0 0); velocity (0.1 0 0);
origin (0.009 0.005 0.005);
axis (0 0 1);
omega -100.0;
} }
} }
} }