/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2306                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      velocityProfile;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
velocityProfile
{

	type				sets;
	libs				(sampling);
	setFormat			raw;
	
	fields				(U);
	
	sets
	{
    	vel
    	{
        	type        uniform;
        	axis        xyz;

        	//- cavity. Slightly perturbed so not to align with face or edge.
        	start       (-20e-3 0 1550e-4);
        	end         ( 20e-3 0 1550e-4);
        	nPoints     50;
    	}
	}
}
