~ubuntu-branches/ubuntu/wily/rheolef/wily

« back to all changes in this revision

Viewing changes to doc/pexamples/vorticity.sh

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito, Pierre Saramito, Sylvestre Ledru
  • Date: 2013-04-30 11:29:51 UTC
  • mfrom: (1.2.1) (11.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130430112951-g69nuqin77t75dek
Tags: 6.4-1
[ Pierre Saramito ]
* New upstream release 6.4 (major changes):
  - new powerful c++ expressions for FEM specifications
  - configure script improved (portability increased)
  - minor bug fixes
* control:
  - all architectures are considered (armel & armhf are back)
  - no more circular-dependency librheolef-dev <--> rheolef
* rules: add security compiler flags (hardening and -W,-l,relro)
* watch: include an updated version, thanks to B. Martens <bartm@debian.org>
* copyright: various file format fixes

[ Sylvestre Ledru ]
*  Standards-Version updated to 3.9.4

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
BINDIR="${TOP_SRCDIR}/nfem/pbin"
 
26
SBINDIR="${TOP_SRCDIR}/nfem/sbin"
 
27
NPROC_MAX=${NPROC_MAX-"8"}
 
28
ROUNDER="$BINDIR/field - -field -round"
 
29
. "${TOP_SRCDIR}/config/loop_mpirun.sh"
 
30
 
 
31
#echo "    not yet (skiped)"
 
32
#exit 0
 
33
 
 
34
tol="1e-7"
 
35
 
 
36
status=0
 
37
# --------------------------------------------------------------------
 
38
# do meshes
 
39
# --------------------------------------------------------------------
 
40
run "${SBINDIR}/mkgeo_grid_2d -v4 10 2>/dev/null | ${BINDIR}/geo -upgrade - > mesh-2d.geo 2>/dev/null"
 
41
if test $? -ne 0; then exit 1; fi
 
42
 
 
43
run "${SBINDIR}/mkgeo_grid_3d -v4 3 2>/dev/null | ${BINDIR}/geo -upgrade - > mesh-3d.geo 2>/dev/null"
 
44
if test $? -ne 0; then exit 1; fi
 
45
 
 
46
if false; then 
 
47
#TODO: stokes axi
 
48
run "${SBINDIR}/mkgeo_grid_2d -v4 10 -rz 2>/dev/null | ${BINDIR}/geo -upgrade - > mesh-rz.geo 2>/dev/null"
 
49
if test $? -ne 0; then exit 1; fi
 
50
fi
 
51
# --------------------------------------------------------------------
 
52
# run tests
 
53
# --------------------------------------------------------------------
 
54
for mesh in mesh-2d mesh-3d; do
 
55
  loop_mpirun "./stokes_cavity $mesh 2>/dev/null | \$RUN ./vorticity 2>/dev/null | $ROUNDER $tol 2>/dev/null | diff stokes-cavity-vorticity-$mesh.field - >/dev/null"
 
56
  if test $? -ne 0; then status=1; fi
 
57
done
 
58
# --------------------------------------------------------------------
 
59
# clean
 
60
# --------------------------------------------------------------------
 
61
run "/bin/rm -f mesh-2d.geo mesh-3d.geo mesh-rz.geo"
 
62
 
 
63
exit $status