mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
331 lines
5.7 KiB
Plaintext
331 lines
5.7 KiB
Plaintext
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.4 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "";
|
|
case "";
|
|
instance "";
|
|
local "";
|
|
|
|
class dictionary;
|
|
object couplingProperties;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
//===========================================================================//
|
|
// sub-models & settings
|
|
|
|
//syncMode false;
|
|
//verbose;
|
|
|
|
modelType "A"; // A or B
|
|
|
|
couplingInterval 100;//1000;
|
|
|
|
voidFractionModel divided;//centre;//
|
|
|
|
locateModel engine;//turboEngineM2M;//
|
|
|
|
meshMotionModel noMeshMotion;
|
|
|
|
regionModel allRegion;
|
|
|
|
IOModel basicIO;
|
|
|
|
probeModel off;
|
|
|
|
dataExchangeModel twoWayMPI;//twoWayM2M;//twoWayFiles;//oneWayVTK;//
|
|
|
|
averagingModel dilute;//dense;////
|
|
|
|
clockModel off;//standardClock;//off;
|
|
|
|
smoothingModel off;// localPSizeDiffSmoothing;// constDiffSmoothing; //
|
|
|
|
forceModels
|
|
(
|
|
//GidaspowDrag
|
|
//BeetstraDrag
|
|
//DiFeliceDrag
|
|
gradPForce
|
|
viscForce
|
|
//KochHillDrag
|
|
//DEMbasedDrag
|
|
//RongDrag
|
|
//Archimedes
|
|
//volWeightedAverage
|
|
//totalMomentumExchange
|
|
//particleCellVolume
|
|
//fieldTimeAverage
|
|
//LaEuScalarTemp
|
|
);
|
|
|
|
energyModels
|
|
(
|
|
//energyModel
|
|
//heatTransferGunn
|
|
//reactionHeat
|
|
);
|
|
|
|
thermCondModel off;//SyamlalThermCond;//thermCondModel;
|
|
|
|
chemistryModels
|
|
(
|
|
species
|
|
);
|
|
|
|
momCoupleModels
|
|
(
|
|
implicitCouple
|
|
);
|
|
|
|
turbulenceModelType "turbulenceProperties";//"LESProperties";//
|
|
|
|
//===========================================================================//
|
|
// sub-model properties
|
|
reactionHeatProps
|
|
{
|
|
reactionHeatName "reactionHeat";
|
|
}
|
|
|
|
speciesProps
|
|
{
|
|
ChemistryFile "$casePath/CFD/constant/foam.inp";
|
|
tempFieldName "T";
|
|
partTempName "partTemp";
|
|
densityFieldName "rho";
|
|
partRhoName "partRho";
|
|
voidfractionFieldName "voidfraction";
|
|
totalMoleFieldName "N";
|
|
partMoleName "partN";
|
|
pressureFieldName "p";
|
|
partPName "partP";
|
|
Nevery 10;
|
|
}
|
|
|
|
SyamlalThermCondProps
|
|
{
|
|
voidfractionFieldName "voidfraction";
|
|
rhoFieldName "rho";
|
|
}
|
|
|
|
LaEuScalarTempProps
|
|
{
|
|
velFieldName "U";
|
|
tempFieldName "T";
|
|
voidfractionFieldName "voidfraction";
|
|
partTempName "Temp";
|
|
partHeatFluxName "convectiveHeatFlux";
|
|
lambda 0.0256;
|
|
Cp 1007;
|
|
}
|
|
|
|
localPSizeDiffSmoothingProps
|
|
{
|
|
lowerLimit 0.1;
|
|
upperLimit 1e10;
|
|
dSmoothingLength 1.5e-3;
|
|
Csmoothing 1.0;
|
|
}
|
|
|
|
constDiffSmoothingProps
|
|
{
|
|
lowerLimit 0.1;
|
|
upperLimit 1e10;
|
|
smoothingLength 1.5e-3;
|
|
}
|
|
|
|
implicitCoupleProps
|
|
{
|
|
velFieldName "U";
|
|
granVelFieldName "Us";
|
|
voidfractionFieldName "voidfraction";
|
|
}
|
|
|
|
ArchimedesProps
|
|
{
|
|
gravityFieldName "g";
|
|
}
|
|
|
|
gradPForceProps
|
|
{
|
|
pFieldName "p";
|
|
voidfractionFieldName "voidfraction";
|
|
velocityFieldName "U";
|
|
interpolation true;
|
|
}
|
|
|
|
viscForceProps
|
|
{
|
|
velocityFieldName "U";
|
|
interpolation true;
|
|
}
|
|
|
|
volWeightedAverageProps
|
|
{
|
|
scalarFieldNames
|
|
(
|
|
voidfraction
|
|
);
|
|
vectorFieldNames
|
|
(
|
|
);
|
|
upperThreshold 0.999;
|
|
lowerThreshold 0;
|
|
verbose true;
|
|
}
|
|
|
|
totalMomentumExchangeProps
|
|
{
|
|
implicitMomExFieldName "Ksl";
|
|
explicitMomExFieldName "none";
|
|
fluidVelFieldName "U";
|
|
granVelFieldName "Us";
|
|
}
|
|
|
|
GidaspowDragProps
|
|
{
|
|
verbose true;
|
|
velFieldName "U";
|
|
voidfractionFieldName "voidfraction";
|
|
interpolation true;
|
|
phi 1;
|
|
}
|
|
|
|
DEMbasedDragProps
|
|
{
|
|
velFieldName "U";
|
|
voidfractionFieldName "voidfraction";
|
|
}
|
|
|
|
DiFeliceDragProps
|
|
{
|
|
//verbose true;
|
|
velFieldName "U";
|
|
voidfractionFieldName "voidfraction";
|
|
granVelFieldName "Us";
|
|
interpolation true;
|
|
}
|
|
|
|
KochHillDragProps
|
|
{
|
|
//verbose true;
|
|
velFieldName "U";
|
|
voidfractionFieldName "voidfraction";
|
|
interpolation true;
|
|
//forceSubModels
|
|
//(
|
|
// ImExCorr
|
|
//);
|
|
implForceDEM true;
|
|
//implForceDEMaccumulated true;
|
|
//explicitCorr true;
|
|
}
|
|
|
|
BeetstraDragProps
|
|
{
|
|
velFieldName "U";
|
|
gravityFieldName "g";
|
|
rhoParticle 2000.;
|
|
voidfractionFieldName "voidfraction";
|
|
interpolation ;
|
|
useFilteredDragModel ;
|
|
useParcelSizeDependentFilteredDrag ;
|
|
k 0.05;
|
|
aLimit 0.0;
|
|
// verbose true;
|
|
}
|
|
|
|
RongDragProps
|
|
{
|
|
verbose true;
|
|
velFieldName "U";
|
|
voidfractionFieldName "voidfraction";
|
|
interpolation true;
|
|
implForceDEM true;
|
|
implForceDEMaccumulated true;
|
|
granVelFieldName "Us";
|
|
}
|
|
|
|
virtualMassForceProps
|
|
{
|
|
velFieldName "U";
|
|
}
|
|
|
|
particleCellVolumeProps
|
|
{
|
|
upperThreshold 0.999;
|
|
lowerThreshold 0.;
|
|
verbose true;
|
|
}
|
|
|
|
fieldStoreProps
|
|
{
|
|
scalarFieldNames
|
|
(
|
|
);
|
|
|
|
vectorFieldNames
|
|
(
|
|
"U"
|
|
);
|
|
}
|
|
|
|
oneWayVTKProps
|
|
{
|
|
couplingFilename "vtk_out%4.4d.vtk";
|
|
maxNumberOfParticles 30000;
|
|
}
|
|
|
|
twoWayFilesProps
|
|
{
|
|
maxNumberOfParticles 10100;
|
|
}
|
|
|
|
centreProps
|
|
{
|
|
alphaMin 0.1;
|
|
}
|
|
|
|
engineProps
|
|
{
|
|
treeSearch true;
|
|
}
|
|
|
|
turboEngineM2MProps
|
|
{
|
|
turboEngineProps
|
|
{
|
|
treeSearch true;
|
|
}
|
|
}
|
|
|
|
dividedProps
|
|
{
|
|
alphaMin 0.01;
|
|
scaleUpVol 1.0;
|
|
}
|
|
|
|
twoWayMPIProps
|
|
{
|
|
liggghtsPath "../DEM/in.liggghts_run";
|
|
}
|
|
|
|
twoWayM2MProps
|
|
{
|
|
maxNumberOfParticles 10100;
|
|
liggghtsPath "../DEM/in.liggghts_run";
|
|
}
|
|
// ************************************************************************* //
|