1
# Copyright (C) 2008 Anders Logg.
2
# Licensed under the GNU LGPL Version 2.1.
4
# First added: 2008-03-17
5
# Last changed: 2008-03-17
7
# The bilinear form a(v, u) and linear form L(v) for
8
# projection onto piecewise quadratics.
10
# Compile this form with FFC: ffc -l dolfin Projection.form.
12
element = FiniteElement("Lagrange", "tetrahedron", 2)
14
v = TestFunction(element)
15
u = TrialFunction(element)