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

« back to all changes in this revision

Viewing changes to nfem/ptst/geo_trace_move_tst.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
GEODIR=$SRCDIR
 
24
TOP_SRCDIR=${TOP_SRCDIR-"../.."}
 
25
NPROC_MAX=${NPROC_MAX-"8"}
 
26
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
 
27
 
 
28
status=0
 
29
 
 
30
# ------------------
 
31
# 1D
 
32
# ------------------
 
33
L="
 
34
$GEODIR/line-20-bdry.geo
 
35
"
 
36
for geo in $L; do
 
37
  loop_mpirun "./geo_trace_move_tst -x 0.5 -v  1 -y 1 < $geo >/dev/null 2>/dev/null";
 
38
  if test $? -ne 0; then status=1; fi
 
39
  loop_mpirun "./geo_trace_move_tst -x 0.5 -v -1 -y 0 < $geo >/dev/null 2>/dev/null"
 
40
  if test $? -ne 0; then status=1; fi
 
41
  loop_mpirun "./geo_trace_move_tst -x 0.5 -v 0.25 -y 0.75 < $geo >/dev/null 2>/dev/null"
 
42
  if test $? -ne 0; then status=1; fi
 
43
done
 
44
# ------------------
 
45
# 2D
 
46
# ------------------
 
47
L="
 
48
$GEODIR/carre-10-bdry-v2.geo
 
49
$GEODIR/carre-q-10-dom-v2.geo
 
50
$GEODIR/carre-tq-10-bdry-v2.geo
 
51
"
 
52
for geo in $L; do
 
53
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 -v  1 0 -y 1 0.5 < $geo >/dev/null 2>/dev/null"
 
54
  if test $? -ne 0; then status=1; fi
 
55
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 -v -1 0 -y 0 0.5 < $geo >/dev/null 2>/dev/null"
 
56
  if test $? -ne 0; then status=1; fi
 
57
  loop_mpirun "./geo_trace_move_tst -x 0.5 0   -v  1 0 -y 0.5 0 < $geo >/dev/null 2>/dev/null"
 
58
  if test $? -ne 0; then status=1; fi
 
59
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 -v 0.25 0 -y 0.75 0.5 < $geo >/dev/null 2>/dev/null"
 
60
  if test $? -ne 0; then status=1; fi
 
61
done
 
62
# ------------------
 
63
# 3D
 
64
# ------------------
 
65
L="
 
66
$GEODIR/cube-5-bdry-v2.geo 
 
67
$GEODIR/cube-P-5-dom-v2.geo
 
68
$GEODIR/my_cube_H-5-v2.geo
 
69
$GEODIR/my_cube_TP-5-v2.geo
 
70
$GEODIR/my_cube_PH-5-v2.geo
 
71
$GEODIR/my_cube_TPH-5-v2.geo
 
72
"
 
73
for geo in $L; do
 
74
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 0.5 -v  1 0 0 -y 1   0.5 0.5 < $geo >/dev/null 2>/dev/null"
 
75
  if test $? -ne 0; then status=1; fi
 
76
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 0.5 -v -1 0 0 -y 0   0.5 0.5 < $geo >/dev/null 2>/dev/null"
 
77
  if test $? -ne 0; then status=1; fi
 
78
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 0   -v -1 0 0 -y 0.5 0.5 0   < $geo >/dev/null 2>/dev/null"
 
79
  if test $? -ne 0; then status=1; fi
 
80
  loop_mpirun "./geo_trace_move_tst -x 0.5 0.5 0.5 -v 0.25 0 0 -y 0.75 0.5 0.5 < $geo >/dev/null 2>/dev/null"
 
81
  if test $? -ne 0; then status=1; fi
 
82
done
 
83
 
 
84
exit $status