我如何在Fenics中生成以下网格。我的域名是[-1,1] * [ - 1,1]。我尝试了以下
mesh = Rectangle(-1,-1,1,1)
但这不起作用。任何帮助表示赞赏。感谢。
答案 0 :(得分:1)
现在点数完成了:
from dolfin import*
mesh_density = 10
p1 = Point(0,0)
p2 = Point(1,1)
mesh = RectangleMesh(p1,p2,mesh_density,mesh_density)
假设您使用Fenics 1.6
答案 1 :(得分:-2)
您必须查找命令RectangleMesh
: