mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
172 lines
3.5 KiB
C++
172 lines
3.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object reactingCloud1Properties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
solution
|
|
{
|
|
active true;
|
|
coupled false;
|
|
transient yes;
|
|
cellValueSourceCorrection off;
|
|
|
|
sourceTerms
|
|
{
|
|
schemes
|
|
{
|
|
rho explicit 1;
|
|
U explicit 1;
|
|
Yi explicit 1;
|
|
hs explicit 1;
|
|
}
|
|
}
|
|
|
|
interpolationSchemes
|
|
{
|
|
rho cell;
|
|
U cellPoint;
|
|
mu cell;
|
|
T cell;
|
|
Cp cell;
|
|
p cell;
|
|
}
|
|
|
|
integrationSchemes
|
|
{
|
|
U Euler;
|
|
T Euler;
|
|
}
|
|
}
|
|
|
|
constantProperties
|
|
{
|
|
parcelTypeId 1;
|
|
|
|
rhoMin 1e-15;
|
|
TMin 200;
|
|
pMin 1000;
|
|
minParticleMass 1e-15;
|
|
|
|
rho0 1000;
|
|
T0 350;
|
|
Cp0 4100;
|
|
|
|
youngsModulus 1e9;
|
|
poissonsRatio 0.35;
|
|
|
|
epsilon0 1;
|
|
f0 0.5;
|
|
|
|
Tvap 284;
|
|
Tbp 373;
|
|
Pr 0.7;
|
|
LDevol 0;
|
|
hRetentionCoeff 1;
|
|
|
|
constantVolume false;
|
|
}
|
|
|
|
subModels
|
|
{
|
|
particleForces
|
|
{
|
|
activeForces
|
|
(
|
|
sphereDrag
|
|
gravity
|
|
);
|
|
}
|
|
|
|
injectionModel manualInjection;
|
|
|
|
dispersionModel none;
|
|
|
|
patchInteractionModel standardWallInteraction;
|
|
|
|
heatTransferModel RanzMarshall;
|
|
|
|
compositionModel singleMixtureFraction;
|
|
|
|
phaseChangeModel liquidEvaporation;
|
|
|
|
devolatilisationModel none;
|
|
|
|
surfaceReactionModel none;
|
|
|
|
postProcessingModel none;
|
|
|
|
surfaceFilmModel none;
|
|
|
|
radiation off;
|
|
|
|
manualInjectionCoeffs
|
|
{
|
|
massTotal 5.23599e-10; // 1 droplet of density 1000 kg/m3
|
|
parcelBasisType mass;
|
|
SOI 0;
|
|
positionsFile "reactingCloud1Positions";
|
|
U0 (0 0 0);
|
|
sizeDistribution
|
|
{
|
|
type uniform;
|
|
uniformDistribution
|
|
{
|
|
minValue 100e-06;
|
|
maxValue 100e-06;
|
|
}
|
|
}
|
|
}
|
|
|
|
standardWallInteractionCoeffs
|
|
{
|
|
type rebound;
|
|
}
|
|
|
|
RanzMarshallCoeffs
|
|
{
|
|
BirdCorrection off;
|
|
}
|
|
|
|
singleMixtureFractionCoeffs
|
|
{
|
|
phases
|
|
(
|
|
gas
|
|
{
|
|
}
|
|
liquid
|
|
{
|
|
H2O 1;
|
|
}
|
|
solid
|
|
{
|
|
}
|
|
);
|
|
YGasTot0 0;
|
|
YLiquidTot0 1;
|
|
YSolidTot0 0;
|
|
}
|
|
|
|
liquidEvaporationCoeffs
|
|
{
|
|
enthalpyTransfer enthalpyDifference; // latentHeat;
|
|
|
|
activeLiquids ( H2O );
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|