1
# Copyright (C) 2005-2006 Anders Logg.
2
# Licensed under the GNU GPL Version 2.
5
# Last changed: 2006-03-28
7
# The bilinear form a(v, U) and linear form L(v) for
10
# Compile this form with FFC: ffc poisson.form.
12
element = FiniteElement("Lagrange", "triangle", 1)
14
v = TestFunction(element)
15
U = TrialFunction(element)
17
a = dot(grad(v), grad(U))*dx