mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
78 lines
1.8 KiB
C++
78 lines
1.8 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: 6
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
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;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|