我有个问题。我想在立方体中创建一个圆环,然后创建网格。早些时候一切正常,但突然不再。我的 .geo- 文件是:
SetFactory("OpenCASCADE");
L = 2;
R = 0.2;
r = 0.1;
Box(1) = {-L/2,-L/2,-L/2,L,L,L}; //tag=1
//+
Torus(2) = {0, 0, 0, R, r, 2*Pi}; //tag=2
//+
Rotate {{1, 0, 0}, {0, 0, 0}, Pi/2}{
Volume{2};
}
Physical Volume(1) = {2}; //Torus
//+
Physical Volume(2) = {1}; //Surroundings
//+
Physical Surface(3) = {7}; //Internal boundary
//+
Physical Surface(4) = {1, 2, 3, 4, 5, 6}; //External boundary
如果我现在只想使用“Mesh 3;”创建网格,我会收到错误消息
错误:第 1 卷中没有元素 2。
这不是问题之前我做错了什么?
谢谢你和最好的问候,卡莉