3 Dec
2015
3 Dec
'15
4:07 p.m.
On 03/12/15 16:05, Angwenyi David wrote:
I am actually trying to visualize the output in the tutorials. We already have for example: File(“poisson_mixed.pvd”) << u I have done: output = File(“poisson_mixed.pvd”) output << u del output
And after that, I cannot locate the file poisson_mixed.pvd
This file is created in the directory you started the python process in. You can find that from within the python process with: import os print os.path.abspath(os.path.curdir) Cheers, Lawrence