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.
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 3.0.1 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "1";
|
|
object omega;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 -1 0 0 0 0];
|
|
|
|
internalField uniform 3.6;
|
|
|
|
boundaryField
|
|
{
|
|
//- Set patchGroups for constraint patches
|
|
#include "${WM_PROJECT_DIR}/etc/caseDicts/setConstraintTypes"
|
|
wag
|
|
{
|
|
type omegaWallFunction;
|
|
value uniform 3.6;
|
|
Cmu 0.09;
|
|
kappa 0.41;
|
|
E 9.8;
|
|
beta1 0.075;
|
|
// value uniform 3600;
|
|
}
|
|
|
|
Ext
|
|
{
|
|
type fixedValue;
|
|
value uniform 3.6;
|
|
}
|
|
Inlet
|
|
{
|
|
type fixedValue;
|
|
value uniform 3.6;
|
|
}
|
|
Outlet
|
|
{
|
|
type inletOutlet;
|
|
inletValue uniform 3.6;
|
|
value uniform 3.6;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|
|
|