Hi, I'm trying to work through the demo files to learn Fenics and I am confused with the biharmonic demo.py file, which claims to use "discontinuous galerkin" but the Function space call is "CG":
mesh = UnitSquareMesh(32, 32)
V = FunctionSpace(mesh, "CG", 2)
https://fenicsproject.org/documentation/dolfin/2016.1.0/python/demo/documented/biharmonic/python/documentation.html
It would seem the solution will be continuous using continuous elements--am I missing something here? If so, what would it mean to use the function space:
V = FunctionSpace(mesh, "DG", 2)
(this does not work if changed in the code).
Thanks for any help.