27 lines
935 B
C++
27 lines
935 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Web: www.OpenFOAM.org
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Writes the height of an 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.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
type interfaceHeight;
|
|
libs ("libfieldFunctionObjects.so");
|
|
|
|
executionControl writeTime;
|
|
writeControl writeTime;
|
|
|
|
alpha alpha.water;
|
|
locations
|
|
(
|
|
(0 0 0)
|
|
);
|
|
|
|
// ************************************************************************* //
|