~johan-hake/dolfin/general-rk-solver

« back to all changes in this revision

Viewing changes to demo/undocumented/auto-adaptive-navier-stokes/python/demo_auto-adaptive-navier-stokes.py

  • Committer: Johan Hake
  • Date: 2013-03-27 15:18:08 UTC
  • mfrom: (7352.1.227 working)
  • Revision ID: hake.dev@gmail.com-20130327151808-b73d4pueq1n432hg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
nu = Constant(0.02)
44
44
 
45
45
# Mesh
46
 
mesh = Mesh("channel_with_flap.xml")
 
46
mesh = Mesh("../channel_with_flap.xml.gz")
47
47
 
48
48
# Define function spaces (Taylor-Hood)
49
49
V = VectorFunctionSpace(mesh, "CG", 2)