2012-09-11 15:42:55 +00:00
|
|
|
/*--------------------------------*- C++ -*----------------------------------*\
|
|
|
|
| ========= | |
|
2013-12-11 16:09:41 +00:00
|
|
|
| \\ / F ield | foam-extend: Open Source CFD |
|
|
|
|
| \\ / O peration | Version: 3.0 |
|
|
|
|
| \\ / A nd | Web: http://www.extend-project.de |
|
2012-09-11 15:42:55 +00:00
|
|
|
| \\/ M anipulation | |
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
|
|
{
|
|
|
|
version 2.0;
|
|
|
|
format ascii;
|
|
|
|
class volVectorField;
|
|
|
|
location "0";
|
|
|
|
object U;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
dimensions [0 1 0 0 0 0 0];
|
|
|
|
|
|
|
|
internalField uniform (0 0 0);
|
|
|
|
|
|
|
|
boundaryField
|
|
|
|
{
|
|
|
|
bottomBrickDown
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type fixedValue;
|
2012-09-11 15:42:55 +00:00
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
bottomBrickUp
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type directionMixed;
|
|
|
|
refValue uniform (0 0 0);
|
|
|
|
refGradient uniform (0 0 0);
|
|
|
|
valueFraction uniform (0 0 0 0 0 0);
|
2012-09-11 15:42:55 +00:00
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
topBrickDown
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type directionMixed;
|
|
|
|
refValue uniform (0 0 0);
|
|
|
|
refGradient uniform (0 0 0);
|
|
|
|
valueFraction uniform (0 0 0 0 0 0);
|
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
topBrickUp
|
|
|
|
{
|
|
|
|
type tractionDisplacement;
|
|
|
|
U U;
|
|
|
|
rheology rheologyProperties;
|
|
|
|
traction uniform ( 1.4e+08 0 0 );
|
|
|
|
pressure uniform 1e+09;
|
2012-09-11 15:42:55 +00:00
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
bottomBrickLeft
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type tractionDisplacement;
|
|
|
|
U U;
|
|
|
|
rheology rheologyProperties;
|
2012-09-11 15:42:55 +00:00
|
|
|
traction uniform ( 0 0 0 );
|
|
|
|
pressure uniform 0;
|
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
bottomBrickRight
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type tractionDisplacement;
|
|
|
|
U U;
|
|
|
|
rheology rheologyProperties;
|
2012-09-11 15:42:55 +00:00
|
|
|
traction uniform ( 0 0 0 );
|
|
|
|
pressure uniform 0;
|
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
topBrickLeft
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type tractionDisplacement;
|
|
|
|
U U;
|
|
|
|
rheology rheologyProperties;
|
2012-09-11 15:42:55 +00:00
|
|
|
traction uniform ( 0 0 0 );
|
|
|
|
pressure uniform 0;
|
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
topBrickRight
|
|
|
|
{
|
2013-10-14 08:26:40 +00:00
|
|
|
type tractionDisplacement;
|
|
|
|
U U;
|
|
|
|
rheology rheologyProperties;
|
2013-07-18 01:43:15 +00:00
|
|
|
traction uniform ( 0 0 0 );
|
2012-09-11 15:42:55 +00:00
|
|
|
pressure uniform 0;
|
|
|
|
value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
back
|
|
|
|
{
|
|
|
|
type empty;
|
|
|
|
}
|
|
|
|
front
|
|
|
|
{
|
|
|
|
type empty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ************************************************************************* //
|