Files
OpenFOAM-12/tutorials/modules/multiphaseEuler/LBend/constant/phaseProperties

105 lines
1.6 KiB
C++

/*--------------------------------*- 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;
location "constant";
object phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
type basicMultiphaseSystem;
phases (solids gas);
solids
{
type purePhaseModel;
diameterModel constant;
constantCoeffs
{
d 462e-6;
}
alphaMax 0.65;
residualAlpha 1e-5;
}
gas
{
type purePhaseModel;
diameterModel none;
residualAlpha 1e-5;
}
blending
{
default
{
type continuous;
phase gas;
}
}
surfaceTension
{
gas_solids
{
type constant;
sigma 0;
}
}
drag
{
solids_dispersedIn_gas
{
type GidaspowErgunWenYu;
}
}
virtualMass
{
solids_dispersedIn_gas
{
type constantCoefficient;
Cvm 0;
}
}
heatTransfer
{
solids_dispersedIn_gas
{
type RanzMarshall;
residualAlpha 1e-4;
}
}
phaseTransfer
{}
lift
{}
wallLubrication
{}
turbulentDispersion
{}
interfaceCompression
{}
// ************************************************************************* //