所以,我正在运行这个 openfoam 模拟,我需要一个表面上的 areaAverage 速度和压力,目前正在读取整个平面,我不想在 sampleSurfaceDict 中指定我自己的,
new_plane
{
type faceSource;
functionObjectLibs ("libfieldFunctionObjects.so");
enabled true;
outputControl timeStep;
log true;
valueOutput true;
source sampledSurface;
//setFormat raw;
surfaceFormat vtk;
sampledSurfaceDict
{
type plane; // always triangulated
basePoint (0 -1.5 0);
normalVector (0 -1 0);
}
operation areaAverage;
fields
(
p
U
);
}
有类型圈吗?或指定半径的方法?在 sampledSurfaceDict
sampledSurfaceDict
{
type plane; // always triangulated
basePoint (0 -1.5 0);
normalVector (0 -1 0);
}
有人知道planeEquationDict吗?