OF如何提取某一个平面内有限区域的矩形内的场数据,并要求OF计算时,每隔固定时间输出?
-
@hongfu2233
听起来好像是你的网格很大,后处理很不方便,还没想到可行的方法,对后处理这面没怎么玩。 -
是啊,苦恼中。。。
-
老帖重新挤上来了,有办法解决么?
-
其中最后一个回复提到的新版 OF-v1806 中有一个 bounded plane
使用举例:functions { surfaceSampling { type surfaces; functionObjectLibs ( "libsampling.so" ); enabled true; writeControl timeStep; writeInterval 1; interpolationScheme cellPointFace; surfaceFormat vtk; fields (T); surfaces ( plane1 { type plane; planeType pointAndNormal; pointAndNormalDict { normal (0 1 0); point (0 0 0) ; } bounds (0 -0.006549142588 -0.1) (0.15 0.006549142588 0.1); // mesh bounding box (0 -0.006549142588 -0.1) (0.15 0.006549142588 0.5) } ); } }
可惜的是,OF.org 没有这个。