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.
58 lines
1.5 KiB
C++
58 lines
1.5 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 (0.184 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);
|
|
type MRFnoSlip;
|
|
value uniform (0 0 0);
|
|
}
|
|
|
|
Ext
|
|
{
|
|
type zeroGradient;
|
|
//type MRFnoSlip;
|
|
//value uniform (0 0 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ************************************************************************* //
|