/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2306                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

pressureOutletStructure
{
	// Mandatory entries (unmodifiable
	type		surfaceFieldValue;
	libs		(fieldFunctionObjects);
	
	// Mandatory entries (runtime modifiable)
	fields		(p);
	operation	areaAverage;
	regionType	sampledSurface;
	name		structureOutlet;
	
	// Defining sampled surface
	sampledSurfaceDict
	{
		type		plane;
		planeType	pointAndNormal;
		pointAndNormalDict
		{
			point	(0.0	0.0	100e-3);
			normal	(0 0 1);
		}
		interpolate	true;
	}
	
	// Optional (inherited) entries
	writeFields	false;
}
