~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to nfem/ptst/form_mult_field_tst.cc

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-02-08 10:00:06 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110208100006-jg8rarizvhdm8e82
Tags: 5.92-1
* New upstream release:
  - "rheolef" suffix added to all unix manuals (Closes: #607117)
  - minor source code fixes for g++-4.5 (Closes: #607184)
  - minor reference manual fix (Closes: #607038)
* debian/control: libboost-iostreams-dev dependency added, as required
  by the new upstream version.
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///
 
2
/// This file is part of Rheolef.
 
3
///
 
4
/// Copyright (C) 2000-2009 Pierre Saramito <Pierre.Saramito@imag.fr>
 
5
///
 
6
/// Rheolef is free software; you can redistribute it and/or modify
 
7
/// it under the terms of the GNU General Public License as published by
 
8
/// the Free Software Foundation; either version 2 of the License, or
 
9
/// (at your option) any later version.
 
10
///
 
11
/// Rheolef is distributed in the hope that it will be useful,
 
12
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
/// GNU General Public License for more details.
 
15
///
 
16
/// You should have received a copy of the GNU General Public License
 
17
/// along with Rheolef; if not, write to the Free Software
 
18
/// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
///
 
20
/// =========================================================================
 
21
#include "rheolef.h"
 
22
#include "rounder.h"
 
23
using namespace rheolef;
 
24
using namespace std;
 
25
size_t N;
 
26
Float f (const point& x) { return 1+(0.5/N)*(x[0]*(1-x[0])+x[1]*(1-x[1])+x[2]*(1-x[2])); }
 
27
int main(int argc, char**argv) {
 
28
  environment parallel(argc, argv);
 
29
  geo omega (argv[1]);
 
30
  Float prec = (argc > 3) ? atof(argv[3]) : 1e-10;
 
31
  N = omega.dimension();
 
32
  space Xh (omega, "P1");
 
33
  if (omega.dimension() >= 3) {
 
34
      Xh.block("back");
 
35
      Xh.block("front");
 
36
  }
 
37
  if (omega.dimension() >= 2) {
 
38
      Xh.block("top");
 
39
      Xh.block("bottom");
 
40
  }
 
41
  Xh.block("left");
 
42
  Xh.block("right");
 
43
  field fh = interpolate(Xh, f);
 
44
  form m (Xh, Xh, "mass");
 
45
  field gh = m*fh;
 
46
  pcout << setprecision(15) << compose(rounder(prec),gh);
 
47
}