~njansson/dolfin/hpc

« back to all changes in this revision

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

  • Committer: Anders Logg
  • Date: 2008-05-19 14:45:28 UTC
  • mfrom: (2668.4.3 trunk)
  • mto: (2668.8.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2670.
  • Revision ID: logg@simula.no-20080519144528-yu63r1268tq6408h
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