This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/multiphase/cavitatingFoam/ras/throttle/0/omega

54 lines
1.4 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2014-06-01 11:15:18 +00:00
| \\ / O peration | Version: 3.1 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
2010-10-18 13:08:03 +00:00
location "0";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2010-10-18 13:08:03 +00:00
dimensions [0 0 -1 0 0 0 0];
internalField uniform 77200;
boundaryField
{
inlet
{
type turbulentMixingLengthFrequencyInlet;
2010-10-18 13:08:03 +00:00
mixingLength 0.0005;
k k;
value uniform 77200;
}
outlet
{
type zeroGradient;
}
walls
{
2010-10-18 13:08:03 +00:00
type omegaWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
beta1 0.075;
value uniform 77200;
}
frontBack
{
type empty;
}
}
// ************************************************************************* //