Files
OpenFOAM-12/tutorials/multiphaseEuler/injection/constant/fvModels
2024-07-06 16:02:47 +01:00

39 lines
979 B
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
location "constant";
object fvModels;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
massSource
{
type massSource;
phase air;
points
(
(0.075 0.2 0.05)
);
massFlowRate
{
type scale;
scale squarePulse;
start 0.1;
duration 5;
value 1e-3;
}
}
// ************************************************************************* //