I'm having some difficulty plotting a function on an IntervalMesh. The result produces a Segmentation Fault. I am using dolfin version 1.5.
import dolfin as df
mesh = df.IntervalMesh(100, -20, 20)
fs = df.VectorFunctionSpace(mesh, “CG”, 1, 3)
f = df.Function(fs)
f.assign(df.Constant([0, 0, 1]))
df.plot(f)
Thanks in advance,
-- Mark Vousden