Hello everyone,
I'm having trouble with Fenics, I'm very new to it and just finished installing it on my Mac.
I tried to load a script from a Fenics course (so it's certainly working), but it doesn't work : it tells me
File "test.py", line 4
SyntaxError: Non-ASCII character '\xe2' in file test.py on line 4, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
Here is the script :
from fenics import *
# Create mesh and define function space
mesh = UnitSquareMesh(8, 8)
V = FunctionSpace(mesh, ’P’, 1)
# Define boundary condition
u_D = Expression(’1 + x[0]*x[0] + 2*x[1]*x[1]’, degree=2)
def boundary(x, on_boundary):
return on_boundary
bc = DirichletBC(V, u_D, boundary)
# Define variational problem
u = TrialFunction(V)
v = TestFunction(V)
f = Constant(-6.0)
a = dot(grad(u), grad(v))*dx
L = f*v*dx
# Compute solution
u = Function(V)
solve(a == L, u, bc)
# Plot solution
u.rename(’u’, ’solution’)
plot(u)
plot(mesh)
# Save solution to file in VTK format
vtkfile = File(’poisson.pvd’)
vtkfile << u
# Compute error in L2 norm
error_L2 = errornorm(u_D, u, ’L2’)
# Compute maximum error at vertices
vertex_values_u_D = u_D.compute_vertex_values(mesh)
vertex_values_u = u.compute_vertex_values(mesh)
import numpy as np
error_max = np.max(np.abs(vertex_values_u_D - vertex_values_u))
# Print errors
print(’error_L2 =’, error_L2)
print(’error_max =’, error_max)
# Hold plot
interactive()
Thanks a lot for your help !