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/compressible/realFluidPisoFoam/ras/backStep/0.org/epsilon

59 lines
1.6 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-08-16 08:28:04 +00:00
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.1.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField uniform 1120;
boundaryField
{
2013-08-16 08:28:04 +00:00
upperWall
{
type compressible::epsilonWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 1120;
}
2013-08-16 08:28:04 +00:00
lowerWall
{
type compressible::epsilonWallFunction;
Cmu 0.09;
kappa 0.41;
E 9.8;
value uniform 1120;
}
2013-08-16 08:28:04 +00:00
inlet
{
type fixedValue;
value uniform 1120;
}
2013-08-16 08:28:04 +00:00
outlet
{
type inletOutlet;
inletValue uniform 1120;
value uniform 1120;
}
2013-08-16 08:28:04 +00:00
frontAndBack
{
type empty;
}
}
// ************************************************************************* //