46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM Extend Project: Open Source CFD |
|
|
| \\ / O peration | Version: 1.6-ext |
|
|
| \\ / A nd | Web: www.extend-project.de |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class pointVectorField;
|
|
location "0.01";
|
|
object pointDisplacement;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 1 0 0 0 0 0];
|
|
|
|
internalField uniform (0 0 0);
|
|
|
|
boundaryField
|
|
{
|
|
stationaryWalls
|
|
{
|
|
type fixedValue;
|
|
value uniform (0 0 0);
|
|
}
|
|
atmosphere
|
|
{
|
|
type fixedValue;
|
|
value uniform (0 0 0);
|
|
}
|
|
floatingObject
|
|
{
|
|
type sixDoFRigidBodyDisplacement;
|
|
centreOfMass (0.5 0.5 0.5);
|
|
momentOfInertia (0.08622222 0.08622222 0.144);
|
|
mass 9.6;
|
|
rhoInf 1;
|
|
report on;
|
|
value uniform (0 0 0);
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|