/usr/share/doc/python-ufl-doc/demo/PowAD.ufl is in python-ufl-doc 1.6.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #
# Author: Martin Sandve Alnes
# Date: 2008-10-03
#
element = FiniteElement("Lagrange", triangle, 1)
v = TestFunction(element)
u = TrialFunction(element)
w = Coefficient(element)
L = w**5*v*dx
a = derivative(L, w)
|