~ubuntu-branches/ubuntu/trusty/ffc/trusty

« back to all changes in this revision

Viewing changes to demo/NeumannProblem.ufl

  • Committer: Bazaar Package Importer
  • Author(s): Johannes Ring
  • Date: 2010-02-03 20:22:35 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100203202235-fe8d0kajuvgy2sqn
Tags: 0.9.0-1
* New upstream release.
* debian/control: Bump Standards-Version (no changes needed).
* Update debian/copyright and debian/copyright_hints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
v = TestFunction(element)
12
12
u = TrialFunction(element)
13
 
f = Function(element)
14
 
g = Function(element)
 
13
f = Coefficient(element)
 
14
g = Coefficient(element)
15
15
 
16
16
a = inner(grad(v), grad(u))*dx
17
17
L = inner(v, f)*dx + inner(v, g)*ds