41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | foam-extend: Open Source CFD |
|
||
|
| \\ / O peration | Version: 4.1r |
|
||
|
| \\ / A nd | Web: http://www.foam-extend.org |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format coherent;
|
||
|
class volVectorField;
|
||
|
location "0";
|
||
|
object U;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
dimensions [0 1 -1 0 0 0 0];
|
||
|
|
||
|
internalField uniform (0 0 0);
|
||
|
|
||
|
boundaryField
|
||
|
{
|
||
|
movingWall
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform (1 0 0);
|
||
|
}
|
||
|
|
||
|
fixedWalls
|
||
|
{
|
||
|
type fixedValue;
|
||
|
value uniform (0 0 0);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|