27 lines
1.1 KiB
C++
27 lines
1.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Web: www.OpenFOAM.org
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Reports the height of the interface above a set of locations. For each
|
|
location, it writes the vertical distance of the interface above both the
|
|
location and the lowest boundary. It also writes the point on the interface
|
|
from which these heights are computed. It uses an integral approach, so if
|
|
there are multiple interfaces above or below a location then this method
|
|
will generate average values.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#includeEtc "caseDicts/postProcessing/probes/interfaceHeight.cfg"
|
|
|
|
alpha alpha.water;
|
|
locations
|
|
(
|
|
(0 0 0)
|
|
);
|
|
|
|
// ************************************************************************* //
|