tutorials: multiphaseEuler: Added hydrofoil tutorial

This serves as an example of cavitation modelling with the
multiphaseEuler module. This case also contains validation of the
pressure profile along the hydrofoil against experimental data.

Based on a case contributed by Petteri Peltonen, VTT.
This commit is contained in:
Will Bainbridge
2022-11-15 15:59:44 +00:00
parent 1df33f58c9
commit 9fa8b85056
36 changed files with 1893 additions and 0 deletions

View File

@ -0,0 +1,49 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ 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;
}
}
// ************************************************************************* //