mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
212 lines
3.4 KiB
Plaintext
Executable File
212 lines
3.4 KiB
Plaintext
Executable File
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / 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
|
|
|
|
modelType "A"; // A or B
|
|
|
|
couplingInterval 10;
|
|
|
|
voidFractionModel divided;
|
|
|
|
locateModel engine;//turboEngineM2M;//
|
|
|
|
meshMotionModel noMeshMotion;
|
|
|
|
regionModel allRegion;
|
|
|
|
IOModel "off";
|
|
|
|
dataExchangeModel twoWayMPI;
|
|
|
|
averagingModel dense;
|
|
|
|
clockModel standardClock;
|
|
|
|
smoothingModel off;
|
|
|
|
probeModel off;
|
|
|
|
forceModels
|
|
(
|
|
BeetstraDrag
|
|
gradPForce
|
|
viscForce
|
|
);
|
|
|
|
//useDDTvoidfraction;
|
|
|
|
energyModels
|
|
(
|
|
heatTransferGunn
|
|
);
|
|
|
|
chemistryModels
|
|
(
|
|
off
|
|
);
|
|
|
|
thermCondModel SyamlalThermCond;
|
|
|
|
momCoupleModels
|
|
(
|
|
implicitCouple
|
|
);
|
|
|
|
|
|
turbulenceModelType "turbulenceProperties";
|
|
|
|
|
|
//===========================================================================//
|
|
// sub-model properties
|
|
|
|
implicitCoupleProps
|
|
{
|
|
velFieldName "U";
|
|
granVelFieldName "Us";
|
|
voidfractionFieldName "voidfraction";
|
|
}
|
|
|
|
ArchimedesProps
|
|
{
|
|
densityFieldName "rho";
|
|
gravityFieldName "g";
|
|
}
|
|
gradPForceProps
|
|
{
|
|
pFieldName "p";
|
|
densityFieldName "rho";
|
|
voidfractionFieldName "voidfraction";
|
|
velocityFieldName "U";
|
|
//interpolation;
|
|
}
|
|
|
|
viscForceProps
|
|
{
|
|
velocityFieldName "U";
|
|
densityFieldName "rho";
|
|
//interpolation true;
|
|
}
|
|
volWeightedAverageProps
|
|
{
|
|
scalarFieldNames
|
|
(
|
|
voidfraction
|
|
);
|
|
vectorFieldNames
|
|
(
|
|
);
|
|
upperThreshold 0.999;
|
|
lowerThreshold 0;
|
|
verbose;
|
|
}
|
|
totalMomentumExchangeProps
|
|
{
|
|
implicitMomExFieldName "Ksl";
|
|
explicitMomExFieldName "none";
|
|
fluidVelFieldName "U";
|
|
granVelFieldName "Us";
|
|
densityFieldName "rho";
|
|
}
|
|
BeetstraDragProps
|
|
{
|
|
velFieldName "U";
|
|
granVelFieldName "Us";
|
|
densityFieldName "rho";
|
|
voidfractionFieldName "voidfraction";
|
|
phi 1;
|
|
}
|
|
|
|
heatTransferGunnProps
|
|
{
|
|
partTempName "Temp";
|
|
partHeatFluxName "convectiveHeatFlux";
|
|
calcPartTempField true;
|
|
partRefTemp 293;
|
|
verbose true;
|
|
}
|
|
|
|
SyamlalThermCondProps
|
|
{
|
|
}
|
|
|
|
|
|
fieldTimeAverageProps
|
|
{
|
|
startTime 5.0;
|
|
|
|
scalarFieldNames
|
|
(
|
|
"voidfraction"
|
|
);
|
|
|
|
vectorFieldNames
|
|
(
|
|
"Us"
|
|
);
|
|
}
|
|
|
|
centreProps
|
|
{
|
|
alphaMin 0.10;
|
|
}
|
|
|
|
engineProps
|
|
{
|
|
treeSearch true;
|
|
}
|
|
|
|
turboEngineM2MProps
|
|
{
|
|
turboEngineProps
|
|
{
|
|
treeSearch true;
|
|
}
|
|
}
|
|
|
|
dividedProps
|
|
{
|
|
alphaMin 0.08;
|
|
scaleUpVol 1.0;
|
|
weight 1.0;
|
|
verbose;
|
|
}
|
|
|
|
|
|
|
|
twoWayMPIProps
|
|
{
|
|
maxNumberOfParticles 50000;
|
|
liggghtsPath "../DEM/in.liggghts_run";
|
|
}
|
|
|
|
|
|
particleProbeProps
|
|
{
|
|
particleIDsToSample "0";
|
|
}
|
|
// ************************************************************************* //
|