openfoam监测某个面上的涡量数据
-
请教大家:
openfoam2106版本中如何监测某个面上的涡量值
我的思路是在controdict中加入surfaceSampling和vorticity两个函数,发现确实时间文件里面有了涡量的结果,而且也出现了postprocessing文件夹,但是该文件夹的数据里面只有x y z坐标,而没有涡量的值,请问大家有什么办法吗,具体的Function如下surfaceSampling
{
type surfaces;
libs ( "libsampling.so" );
enabled true;
timeStart 0;
writeControl runTime;
writeInterval 0.06;
interpolationScheme cellPointFace;
surfaceFormat raw;
fields (vorticityField);
surfaces
(
plane
{
type plane;
planeType pointAndNormal;
pointAndNormalDict
{
normal (0 0 1);
point (0 0 0.1) ;
}
bounds (0.1 0.1 0.08) (0.6 0.4 0.12);
}
);
}vorticity1
{
type vorticity;
libs (fieldFunctionObjects);
field U;
result vorticityField;
region region0;
enabled true;
log true;
timeStart 0.25;
timeEnd 1000;
executeControl timeStep;
executeInterval 5;
writeControl runTime;
writeInterval 0.06;
}