Files
openfoam/tutorials/basic/overLaplacianDyMFoam/heatTransfer/0.orig/cellDisplacement
2018-12-19 18:07:52 +00:00

60 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1812 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.1";
object cellDisplacement;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 0 0 0 0 0];
internalField uniform (0 0 0);
boundaryField
{
free
{
patchType overset;
type cellMotion;
value uniform (0 0 0);
}
walls
{
type cellMotion;
value uniform (0 0 0);
}
hole
{
type cellMotion;
value uniform (0 0 0);
}
frontAndBack
{
type empty;
}
left1
{
type cellMotion;
value uniform (0 0 0);
}
right1
{
type cellMotion;
value uniform (0 0 0);
}
}
// ************************************************************************* //