问题描述
我想在gmsh 4.6.0中的圆柱体在沿其高度的特定圆形位置处使用更精细的网格。我在下面的.geo代码中获得了部分成功:
SetFactory("OpenCASCADE");
//Create a circle
Circle(1) = {0,6,1,2*Pi};
Curve Loop(1) = {1};
Plane Surface(1) = {1};
//Extrude into a cylinder 4 units along Z-direction and 6 units along -Z direction
Extrude {0,4} {
Surface{1};
}
Extrude {0,-6} {
Surface{1};
}
//Convert Circle 1 into transfinite line so that a fine mesh can be obtained in its vicinity
Transfinite Line{1}=100;
除在挤出圆柱体的生成器线与圆相交的点(此处为粗网格)以外,网格可以很好地显示(当我执行2D或3D网格时)。关于如何克服该问题并在Circle(1)周围获得均匀精细的网格的任何想法吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)