~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to sandbox/ilmarw/test/Poisson.form

  • Committer: Garth N. Wells
  • Date: 2008-05-18 16:30:38 UTC
  • mto: (2668.7.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2670.
  • Revision ID: gnw20@cam.ac.uk-20080518163038-xvhapfk7y87a962s
merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
element = FiniteElement("Lagrange", "tetrahedron", 1)
2
 
 
3
 
v = TestFunction(element)
4
 
u = TrialFunction(element)
5
 
 
6
 
a = dot(grad(v), grad(u))*dx