~ubuntu-branches/ubuntu/trusty/rheolef/trusty

« back to all changes in this revision

Viewing changes to doc/pexamples/p_laplacian_newton.sh

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# This file is part of Rheolef.
 
4
#
 
5
# Copyright (C) 2000-2009 Pierre Saramito 
 
6
#
 
7
# Rheolef is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# Rheolef is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with Rheolef; if not, write to the Free Software
 
19
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
20
#
 
21
# -------------------------------------------------------------------------
 
22
SRCDIR=${SRCDIR-"."}
 
23
TOP_SRCDIR=${TOP_SRCDIR-"../.."}
 
24
GEODIR="${TOP_SRCDIR}/nfem/ptst"
 
25
NPROC_MAX=${NPROC_MAX-"8"}
 
26
SBINDIR="${TOP_SRCDIR}/nfem/sbin"
 
27
BINDIR="${TOP_SRCDIR}/nfem/pbin"
 
28
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
 
29
 
 
30
status=0
 
31
 
 
32
#echo "    skipped (not yet)"
 
33
#exit 0
 
34
 
 
35
 
 
36
run "${SBINDIR}/mkgeo_grid_2d -v4 11 11 -a -1 -b 1 -c -1 -d 1 -boundary 2>/dev/null | ${BINDIR}/geo -upgrade - > mesh-2d.geo 2>/dev/null"
 
37
if test $? -ne 0; then exit 1; fi
 
38
 
 
39
progs="p_laplacian_newton"
 
40
approxs="P1 P2 P3"
 
41
pvalues="1.5 2.5" ;# 1.5 => singular matrix for P1 with mumps(np>1) and P2, P3 with mumps and pastix
 
42
for prog in $progs; do
 
43
  for approx in $approxs; do
 
44
    for p in $pvalues; do
 
45
      # Pk approx diverges for p < 2 && k >= 2
 
46
      if test $p = "1.5" && test $approx = "P2" -o $approx = "P3"; then continue; fi
 
47
      loop_mpirun "./$prog mesh-2d.geo $approx $p 1e-10 2>/dev/null | ./p_laplacian_post - -check >/dev/null 2>/dev/null"
 
48
      if test $? -ne 0; then status=1; fi
 
49
    done
 
50
  done
 
51
done
 
52
# --------------------------------------------------------------------
 
53
# clean
 
54
# --------------------------------------------------------------------
 
55
run "/bin/rm -f mesh-2d.geo.geo"
 
56
 
 
57
exit $status