34 lines
1019 B
C++
34 lines
1019 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#includeEtc "caseDicts/postProcessing/pressure/pressureDifference.cfg"
|
|
|
|
region1
|
|
{
|
|
regionType sampledSurface;
|
|
|
|
sampledSurfaceDict
|
|
{
|
|
type sampledTriSurfaceMesh;
|
|
regionType cells;
|
|
interpolate true;
|
|
surface $triSurface1;
|
|
}
|
|
}
|
|
|
|
region2
|
|
{
|
|
$region1;
|
|
sampledSurfaceDict
|
|
{
|
|
surface $triSurface2;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|