Files
openfoam/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/constant/transportProperties
Henry 2c335d360b multiphaseEulerFoam: new solver
including two simple tutorial cases
2011-09-05 19:06:38 +01:00

94 lines
1.9 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
phases
(
air
{
rho 1;
nu 1.6e-05;
kappa 0;
Cp 0;
diameterModel constant;
constantCoeffs
{
d 3e-3;
}
}
water
{
rho 1000;
nu 1e-06;
kappa 0;
Cp 0;
diameterModel constant;
constantCoeffs
{
d 1e-4;
}
}
);
sigmas
(
(air water) 0.07
);
interfaceCompression
(
(air water) 0
);
virtualMass
(
(air water) 0.5
);
drag
(
(air water)
{
type blended;
air
{
type SchillerNaumann;
residualDrag 0;
}
water
{
type SchillerNaumann;
residualDrag 0;
}
residualDrag 1;
}
);
// This is a dummy to support the Smagorinsky model
transportModel Newtonian;
nu nu [ 0 2 -1 0 0 0 0 ] 0;
// ************************************************************************* //