~ubuntu-branches/ubuntu/raring/rheolef/raring-proposed

« back to all changes in this revision

Viewing changes to doc/pexamples/robin2.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito, Pierre Saramito, Sylvestre Ledru
  • Date: 2012-05-14 14:02:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120514140209-dzbdlidkotyflf9e
Tags: 6.1-1
[ Pierre Saramito ]
* New upstream release 6.1 (minor changes):
  - support arbitrarily polynomial order Pk
  - source code supports g++-4.7 (closes: #671996)

[ Sylvestre Ledru ]
* update of the watch file

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
  form a  (Xh, Xh, "grad_grad");
11
11
  form ab (Xh, Xh, "mass", omega["boundary"]);
12
12
  a = a + ab;
13
 
  field lh = riesz(Xh, f(d)) + riesz(Xh, "boundary", g(d));
 
13
  field lh = riesz(Xh, f(d)) + riesz(Xh, g(d), "boundary");
14
14
  field uh (Xh);
15
15
  solver sa (a.uu());
16
16
  uh.set_u() = sa.solve (lh.u() - a.ub()*uh.b());