Hello,
I begin in Fenics and i need your help please, can you explain me this part of program please, and is array a fonction of fenics or python?
u_e = interpolate(u0, V)
u_e_array = u_e.vector().array()
u_array = u.vector().array()
print 'Max error, t=%-10.3f:' % t, numpy.abs(u_e_array -u_array).max()
t += dt
u_1.assign(u)
Thanks a lot