dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #16452
Screwed up sub-functions on Python
Something is wrong with sub-functions in Python. For the mixed-poisson
demo, doing
(sigma, u) = problem.solve().split()
plot(u)
the plot looks as expected. Doing
U = problem.solve()
plot(U[1])
the plot is wrong. Also, it's not possible to do
f = File("u.pvd")
f << U[1]
I get the message
TypeError: in method 'File___lshift__', argument 2 of type
'dolfin::FunctionPlotData const &'
Garth
Follow ups