Files
OpenFOAM-6/tutorials/multiphase/interFoam/RAS/mixerVesselAMI/0/epsilon
Henry Weller 9221dd0d0f tutorials: Removed 0.orig directories in favor of <field>.orig
The new automated <field>.orig reading has made 0.orig directories and
associated scripting redundant.
2018-02-15 20:14:27 +00:00

79 lines
2.0 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 binary;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField uniform 0.007;
boundaryField
{
vessel
{
type epsilonWallFunction;
value uniform 0.007;
}
gasInlet
{
type fixedValue;
value uniform 0.007;
}
outlet
{
type inletOutlet;
inletValue uniform 0.007;
value uniform 0.007;
}
shaftRotating
{
type epsilonWallFunction;
value uniform 0.007;
}
shaft
{
type epsilonWallFunction;
value uniform 0.007;
}
sparger
{
type epsilonWallFunction;
value uniform 0.007;
}
stirrer
{
type epsilonWallFunction;
value uniform 0.007;
}
baffles
{
type epsilonWallFunction;
value uniform 0.007;
}
AMI1
{
type cyclicAMI;
value uniform 0;
}
AMI2
{
type cyclicAMI;
value uniform 0;
}
}
// ************************************************************************* //