Files
CFDEMcoupling-PFM/tutorials/cfdemSolverRhoPimple/VortexShedding/CFD/constant/couplingProperties
danielque 6147878a1b add vortex shedding test case [ci skip]
add test case based on OpenFOAM tutorial by J. Guerrero to compare p, U,
T, rho from compressible rhoPimpleFoam solver to cfdemSolverRhoPimple
2021-12-23 16:54:55 +01:00

105 lines
1.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object couplingProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// sub-models & settings
modelType "A"; // A or B
couplingInterval 20;
voidFractionModel centre;
locateModel engine;
meshMotionModel noMeshMotion;
regionModel allRegion;
IOModel off;
probeModel off;
dataExchangeModel twoWayMPI;
averagingModel dilute;
clockModel off;
smoothingModel off;
forceModels
(
gradPForce
viscForce
noDrag
);
energyModels
(
);
chemistryModels
(
off
);
momCoupleModels
(
deactivateCouple
);
thermCondModel SyamlalThermCond;
turbulenceModelType "turbulenceProperties";
// sub-model properties
SyamlalThermCondProps
{
}
gradPForceProps
{
pFieldName "p";
voidfractionFieldName "voidfraction";
velocityFieldName "U";
interpolation true;
}
viscForceProps
{
velocityFieldName "U";
interpolation true;
}
engineProps
{
treeSearch true;
}
centreProps
{
alphaMin 0.01;
}
twoWayMPIProps
{
liggghtsPath "../DEM/in.liggghts_run";
}
// ************************************************************************* //