107 lines
1.8 KiB
C++
107 lines
1.8 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.3.0 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object phaseProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
phases (particles air);
|
|
|
|
particles
|
|
{
|
|
diameterModel constant;
|
|
constantCoeffs
|
|
{
|
|
d 3e-4;
|
|
}
|
|
|
|
alphaMax 0.62;
|
|
}
|
|
|
|
air
|
|
{
|
|
diameterModel constant;
|
|
constantCoeffs
|
|
{
|
|
d 1;
|
|
}
|
|
}
|
|
|
|
blending
|
|
{
|
|
default
|
|
{
|
|
type none;
|
|
residualAlpha 1e-3;
|
|
continuousPhase air;
|
|
}
|
|
}
|
|
|
|
sigma
|
|
(
|
|
(particles and air) 0
|
|
);
|
|
|
|
aspectRatio
|
|
(
|
|
);
|
|
|
|
drag
|
|
(
|
|
(particles in air)
|
|
{
|
|
type GidaspowErgunWenYu;
|
|
residualAlpha 1e-6;
|
|
residualRe 1e-3;
|
|
swarmCorrection
|
|
{
|
|
type none;
|
|
}
|
|
}
|
|
);
|
|
|
|
virtualMass
|
|
(
|
|
(particles in air)
|
|
{
|
|
type constantCoefficient;
|
|
Cvm 0;
|
|
}
|
|
);
|
|
|
|
heatTransfer
|
|
(
|
|
(particles in air)
|
|
{
|
|
type RanzMarshall;
|
|
}
|
|
);
|
|
|
|
lift
|
|
(
|
|
);
|
|
|
|
wallLubrication
|
|
(
|
|
);
|
|
|
|
turbulentDispersion
|
|
(
|
|
);
|
|
|
|
// Minimum allowable pressure
|
|
pMin 10000;
|
|
|
|
|
|
// ************************************************************************* //
|