mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
35 lines
984 B
C++
35 lines
984 B
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;
|
|
location "constant";
|
|
object fvOptions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
momentumSource
|
|
{
|
|
type meanVelocityForce;
|
|
active no;
|
|
|
|
meanVelocityForceCoeffs
|
|
{
|
|
selectionMode all;
|
|
fields (U);
|
|
// Note: set mean velocity here
|
|
Ubar ( 0 0 0.0004 );
|
|
relaxation 0.9;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|