mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
139 lines
2.6 KiB
Plaintext
139 lines
2.6 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
|
|
|
|
//skipFlowSol;
|
|
//verbose;
|
|
|
|
modelType B; // A or B
|
|
|
|
couplingInterval 100;
|
|
|
|
voidFractionModel dividedMS;
|
|
|
|
locateModel engine;
|
|
|
|
meshMotionModel noMeshMotion;
|
|
|
|
regionModel allRegion;
|
|
|
|
IOModel basicIO;
|
|
|
|
probeModel off;
|
|
|
|
dataExchangeModel twoWayMPI;//twoWayFiles;//oneWayVTK;//
|
|
|
|
averagingModel dense;
|
|
|
|
clockModel off;
|
|
|
|
smoothingModel off;// localPSizeDiffSmoothing;// constDiffSmoothing; //
|
|
|
|
forceModels
|
|
(
|
|
Archimedes
|
|
//volWeightedAverage
|
|
);
|
|
|
|
forceModelsMS
|
|
(
|
|
DiFeliceDragMS
|
|
//GidaspowDragMS
|
|
);
|
|
|
|
momCoupleModels
|
|
(
|
|
implicitCouple
|
|
);
|
|
|
|
turbulenceModelType RASProperties;//LESProperties;//
|
|
|
|
//===========================================================================//
|
|
// sub-model properties
|
|
|
|
implicitCoupleProps
|
|
{
|
|
velFieldName "U";
|
|
granVelFieldName "Us";
|
|
voidfractionFieldName "voidfraction";
|
|
}
|
|
|
|
dividedProps
|
|
{
|
|
alphaMin 0.9;
|
|
scaleUpVol 1.0;
|
|
}
|
|
|
|
volWeightedAverageProps
|
|
{
|
|
scalarFieldNames
|
|
(
|
|
voidfraction
|
|
);
|
|
vectorFieldNames
|
|
(
|
|
);
|
|
upperThreshold 0.999;
|
|
lowerThreshold 0;
|
|
//verbose;
|
|
}
|
|
|
|
DiFeliceDragMSProps
|
|
{
|
|
velFieldName "U";
|
|
densityFieldName "rho";
|
|
voidfractionFieldName "voidfraction";
|
|
granVelFieldName "Us";
|
|
//verbose;
|
|
}
|
|
|
|
GidaspowDragMSProps
|
|
{
|
|
velFieldName "U";
|
|
densityFieldName "rho";
|
|
voidfractionFieldName "voidfraction";
|
|
hydraulicDiameter 0.002;
|
|
}
|
|
|
|
ArchimedesProps
|
|
{
|
|
densityFieldName "rho";
|
|
gravityFieldName "g";
|
|
}
|
|
|
|
engineProps
|
|
{
|
|
treeSearch true;
|
|
}
|
|
|
|
twoWayMPIProps
|
|
{
|
|
maxNumberOfParticles 101000;
|
|
liggghtsPath "../DEM/in.liggghts_resume";
|
|
}
|
|
// ************************************************************************* //
|