Hello,
I am trying to update an existing code to adhere to the 2016.1.0 FEniCS version. In order to solve a complex valued EM problem in older versions, I created a mixed space for the real and imaginary parts. Both subspaces were the N1curl1 space and in the new version, I get a deprecation warning that leads me to try the following syntax:
Vr = FunctionSpace(mesh, "Nedelec 1st kind H(curl)", 1)
Vi = FunctionSpace(mesh, "Nedelec 1st kind H(curl)", 1)
Vc = Vr * Vi # for real and imaginary parts
V = FunctionSpace(mesh, Vc)
which produces the following error:
*** Error: Unable to create function space.
*** Reason: Illegal argument, not a finite element: <Function space of dimension 48904 (<Mixed element: (<N1curl1 on a tetrahedron>, <N1curl1 on a tetrahedron>)>)>.
*** Where: This error was encountered inside functionspace.py.
Any suggestions?