Files
CFDEMcoupling-PFM/tutorials/cfdemSolverIBTorque/CFD/0/phiIB
Achuth1992 25b57b978c Tutorial case for the two-way coupled immersed boundary solver.
Consists of a comparison of the angular velocity damping when the two-
way coupling is considered.
2018-10-08 16:57:32 +02:00

49 lines
1.3 KiB
C++
Executable File

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object phiIB;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -1 0 0 0 0];
internalField uniform 0;
boundaryField
{
inlet
{
//type zeroGradient;
type fixedValue;
value uniform 0;
}
channelWall
{
type zeroGradient;
}
outlet
{
type fixedValue;
value uniform 0;
//type zeroGradient;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //