FoamFile
{
	version    2.0;
	format    ascii;
	class    volVectorField;
	location    0;
	object    U;
}

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (10 0 0);

boundaryField
{
	wall_bottom
	{
		type	noSlip;
	}
	wall_car
	{
		type	noSlip;
	}
	outlet
	{
		type	zeroGradient;
	}
	top
	{
		type	symmetry;
	}
	sym2
	{
		type	symmetry;
	}
	sym1
	{
		type	symmetry;
	}
    inlet
    {
		type	fixedValue;
		value	uniform (10 0 0);
    }


}
