Files
OpenFOAM-12/tutorials/multiphaseEuler/hydrofoil/0/nut.liquid
2024-07-06 16:02:47 +01:00

50 lines
1.2 KiB
Plaintext

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0";
object nut.liquid;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField uniform 9.993764000E-07;
boundaryField
{
#includeEtc "caseDicts/setConstraintTypes"
inlet
{
type calculated;
value $internalField;
}
outlet
{
type calculated;
value $internalField;
}
hydrofoil
{
type nutUSpaldingWallFunction;
value $internalField;
}
walls
{
type nutUSpaldingWallFunction;
value $internalField;
}
}
// ************************************************************************* //