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.
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object thermophysicalProperties.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture pureMixture;
|
|
transport const;
|
|
thermo eConst;
|
|
equationOfState rhoConst;
|
|
specie specie;
|
|
energy sensibleInternalEnergy;
|
|
}
|
|
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
molWeight 18.015;
|
|
}
|
|
equationOfState
|
|
{
|
|
rho 998.4;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cv 4180;
|
|
Hf 40e3;
|
|
}
|
|
transport
|
|
{
|
|
mu 9.9768e-04;
|
|
Pr 2.289;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|