mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
48 lines
1.3 KiB
C++
Executable File
48 lines
1.3 KiB
C++
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.3.x |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "system";
|
|
object fvOptions;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
injector1
|
|
{
|
|
active true;
|
|
timeStart 0;
|
|
duration 75;
|
|
selectionMode cellSet;
|
|
cellSet c0;
|
|
}
|
|
|
|
options
|
|
{
|
|
bla
|
|
{
|
|
type scalarSemiImplicitSource;
|
|
// $injector1;
|
|
|
|
scalarSemiImplicitSourceCoeffs
|
|
{
|
|
$injector1;
|
|
volumeMode absolute;
|
|
injectionRateSuSp
|
|
{
|
|
T (0.000001 0.0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|