/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v3.0+                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      fvOptions;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
momentumSource
{
	type            vectorSemiImplicitSource;
	active          true;

	vectorSemiImplicitSourceCoeffs
	{
	    volumeMode	specific;
	    injectionRateSuSp
	    {
		U ((10 0 0) 0);
	    }

	    selectionMode   all;//cellZone;
	}
}
/*
momentumSource
{
	type            vectorExplicitSetValue;
	active          true;

	vectorExplicitSetValueCoeffs
	{
	    injectionRate
	    {
		gradP (-10 0 0);
	    }

	    selectionMode   all;//cellZone;
	}
}
*/
