Hello everybody
Is it possible to obtain a mesh from lists of the node coordinates and the element connections?
A simple example for one Element:
nodes = np.array([[0., 0., 0.],
[1., 0., 0.],
[0., 1., 0.],
[0., 0., 1.]])
elements = np.array([[1,2,3,4]])
And I want to do something like this:
from fenics import *
mesh = Mesh(nodes, elements)
Is this possible and how?
Thanks in advance!