openfoam/tutorials/incompressible/lumpedPointMotion/building/steady/system/lumpedPointControllers
2024-06-24 09:58:36 +01:00

45 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2406 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
note "locations and connectivity";
object dictionary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
//- Locations of the lumped points
points
(
(0 0 0.00)
(0 0 0.05)
(0 0 0.10)
(0 0 0.15)
(0 0 0.20)
(0 0 0.25)
(0 0 0.30)
(0 0 0.35)
(0 0 0.40)
(0 0 0.45)
(0 0 0.50)
);
//- Connectivity for motion controllers
controllers
{
vertical
{
pointLabels (0 1 2 3 4 5 6 7 8 9 10);
}
}
// ************************************************************************* //