~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/demo/pde/stokes/stabilized/cpp/plot.py

  • Committer: Johannes Ring
  • Date: 2008-03-05 22:43:06 UTC
  • Revision ID: johannr@simula.no-20080305224306-2npsdyhfdpl2esji
The BIG commit!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from dolfin import *
2
 
 
3
 
# Plot velocity
4
 
u = Function("velocity.xml")
5
 
plot(u)
6
 
 
7
 
# Plot pressure
8
 
p = Function("pressure.xml")
9
 
plot(p)