Hi,
I am relatively new to FEniCs.
I changed to the new version 2016.2.0, but now my program does not work anymore.
The problem is the following formulation:
V = VectorFunctionSpace(mesh, 'CG', 1)
F = FunctionSpace(mesh, 'CG', 1)
MS = MixedFunctionSpace([V, V, F, F])
My question is:
Is there another formulation to use a mixed function space?
Or is it possible to change back to an older FEniCS version?
I unfortunately did not find a way to do this.
Here is a part of the code:
from ufl import *
from ufl.classes import *
from mshr import *
import numpy as np
from dolfin import *
disc = Cylinder(Point(np.array([0.0,0.0,0.0])), Point(np.array([0.0, 0.0, 1.0])), 10.0, 10.0)
mesh = generate_mesh (disc, 30)
V = VectorFunctionSpace(mesh, 'CG', 1)
F = FunctionSpace(mesh, 'CG', 1)
MS = MixedFunctionSpace([V, V, F, F])
Thanks in advance