I'm trying to convert a Python code into a C++ one, so I need to generate an .h file from a .ufl file.
I write on the command line:
ffc -l dolfin Def.ufl
It looks ok and it works, but I have no clue about how to extract a functional from the .ufl file.
From the .ufl file
Energy = blablabla
F = derivative(F, u, v)
J = derivative(F, u, t)
I only get Def::ResidualForm and Def::JacobianForm.
How can I find Energy? Am I missing something?