You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
object Urel;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
velocity (4.544 0 0);
dimensions [0 1 -1 0 0 0 0];
internalField uniform $velocity;
boundaryField
{
//- Set patchGroups for constraint patches
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
Inlet
{
type fixedValue;
value uniform $velocity;
}
Outlet
{
type pressureInletOutletVelocity;
value uniform $velocity;
}
wag
{
type fixedValue;
value uniform (0 0 0);
}
Ext
{
type zeroGradient;
}
}
// ************************************************************************* //