Files
openfoam/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega
2009-02-13 17:28:21 +00:00

48 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField uniform 77200;
boundaryField
{
inlet
{
type turbulentMixingLengthFrequencyInlet;
mixingLength 0.0005;
k k;
value uniform 77200;
}
outlet
{
type zeroGradient;
}
walls
{
type omegaWallFunction;
value uniform 77200;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //