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/cavity_IAPWS97/0/epsilon

50 lines
1.5 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2015-08-23 14:26:27 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2016-06-06 12:10:12 +00:00
| \\ / O peration | Version: 4.0 |
| \\ / A nd | Web: http://www.foam-extend.org |
2016-06-21 12:50:08 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
2013-08-16 08:28:04 +00:00
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
2015-08-23 14:26:27 +00:00
dimensions [0 2 -3 0 0 0 0];
2013-08-16 08:28:04 +00:00
internalField uniform 0.000765;
boundaryField
{
2013-08-16 08:28:04 +00:00
movingWall
{
2013-08-16 08:28:04 +00:00
type compressible::epsilonWallFunction;
2015-08-23 14:26:27 +00:00
refValue uniform 0;
value uniform 0.000765;
Cmu 0.09;
kappa 0.41;
E 9.8;
}
2013-08-16 08:28:04 +00:00
fixedWalls
{
2013-08-16 08:28:04 +00:00
type compressible::epsilonWallFunction;
2015-08-23 14:26:27 +00:00
refValue uniform 0;
value uniform 0.000765;
Cmu 0.09;
kappa 0.41;
E 9.8;
}
2013-08-16 08:28:04 +00:00
frontAndBack
{
type empty;
}
}
// ************************************************************************* //