Patch contributed by Juho Peltola, VTT The new JohnsonJacksonSchaefferFrictionalStress model is included and the LBend tutorial case to demonstrate the need for the changes to the frictional stress models. Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=2058
120 lines
2.0 KiB
C++
120 lines
2.0 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 phaseProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
type heatAndMomentumTransferTwoPhaseSystem;
|
|
|
|
phases (solids gas);
|
|
|
|
solids
|
|
{
|
|
type purePhaseModel;
|
|
|
|
diameterModel constant;
|
|
|
|
constantCoeffs
|
|
{
|
|
d 462e-6;
|
|
}
|
|
|
|
residualAlpha 1e-5;
|
|
}
|
|
|
|
gas
|
|
{
|
|
type purePhaseModel;
|
|
|
|
diameterModel constant;
|
|
constantCoeffs
|
|
{
|
|
d 1;
|
|
}
|
|
residualAlpha 1e-5;
|
|
}
|
|
|
|
blending
|
|
{
|
|
default
|
|
{
|
|
type none;
|
|
residualAlpha 1e-6;
|
|
continuousPhase gas;
|
|
}
|
|
}
|
|
|
|
surfaceTension
|
|
(
|
|
(gas and solids)
|
|
{
|
|
type constant;
|
|
sigma 0;
|
|
}
|
|
);
|
|
|
|
aspectRatio
|
|
(
|
|
);
|
|
|
|
drag
|
|
(
|
|
(solids in gas)
|
|
{
|
|
type GidaspowErgunWenYu;
|
|
residualAlpha 1e-5;
|
|
residualRe 1e-5;
|
|
swarmCorrection
|
|
{
|
|
type none;
|
|
}
|
|
}
|
|
);
|
|
|
|
virtualMass
|
|
(
|
|
(solids in gas)
|
|
{
|
|
type constantCoefficient;
|
|
Cvm 0;
|
|
}
|
|
);
|
|
|
|
heatTransfer
|
|
(
|
|
(solids in gas)
|
|
{
|
|
type RanzMarshall;
|
|
residualAlpha 1e-4;
|
|
}
|
|
);
|
|
|
|
lift
|
|
(
|
|
);
|
|
|
|
wallLubrication
|
|
(
|
|
);
|
|
|
|
turbulentDispersion
|
|
(
|
|
);
|
|
|
|
// Minimum allowable pressure
|
|
pMin 10000;
|
|
|
|
|
|
// ************************************************************************* //
|