2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
8 #-------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation; either version 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 # start paraview with the OpenFOAM libraries
32 #------------------------------------------------------------------------------
34 while [ "$#" -ge 1 ]; do echo "$1"; shift; done
37 usage: ${0##*/} [OPTION]
39 -case dir specify alternative case directory
40 -region name specify mesh region name
41 -touch only create the .OpenFOAM file
43 * start paraview $ParaView_VERSION with the OpenFOAM libraries
49 unset regionName touchOnly
59 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
60 cd "$2" 2>/dev
/null || usage
"directory does not exist: '$2'"
64 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
73 usage
"unknown option/argument: '$*'"
78 # get a sensible caseName
80 caseFile
="$caseName.OpenFOAM"
83 if [ -n "$regionName" ]
85 caseFile
="$caseName{$regionName}.OpenFOAM"
86 fvControls
="$fvControls/$regionName"
89 if [ -n "$touchOnly" ]
92 echo "created '$caseFile'"
96 # parent directory for normal or parallel results
98 processor
*) parentDir
=".." ;;
102 # check existence of essential files
103 for check
in system
/controlDict
$fvControls/fvSchemes
$fvControls/fvSolution
105 [ -s "$parentDir/$check" ] || usage
"file does not exist: '$parentDir/$check'"
109 case "$ParaView_VERSION" in
111 trap "rm -f paraFoam.pvs $caseFile 2>/dev/null; exit 0" EXIT TERM INT
114 # since we are now in the cwd, %CASE% is '$PWD/$caseFile'
115 sed -e s@
%CASE
%@
$PWD/$caseFile@g \
116 $WM_PROJECT_DIR/bin
/tools
/paraFoam.pvs
> paraFoam.pvs
118 paraview paraFoam.pvs
122 # only create/remove caseFile if it didn't already exist
123 [ -e $caseFile ] ||
{
124 trap "rm -f $caseFile 2>/dev/null; exit 0" EXIT TERM INT
126 echo "created temporary '$caseFile'"
129 paraview
--data="$caseFile"
133 #------------------------------------------------------------------------------