2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright held by original author
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 or .foam file
42 -nativeReader use the paraview native reader for OpenFOAM
44 * start paraview $ParaView_VERSION with the OpenFOAM libraries
50 unset regionName touchOnly useNativeReader
60 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
61 cd "$2" 2>/dev
/null || usage
"directory does not exist: '$2'"
65 [ "$#" -ge 2 ] || usage
"'$1' option requires an argument"
78 usage
"unknown option/argument: '$*'"
83 # get a sensible caseName
86 if [ -n "$useNativeReader" ]
90 caseFileExt
=".OpenFOAM"
93 caseFile
="$caseName$caseFileExt"
97 if [ -n "$regionName" ]
99 caseFile
="$caseName{$regionName}$caseFileExt"
100 fvControls
="$fvControls/$regionName"
103 if [ -n "$touchOnly" ]
106 echo "created '$caseFile'"
110 # parent directory for normal or parallel results
112 processor
*) parentDir
=".." ;;
116 # check existence of essential files
117 for check
in system
/controlDict
$fvControls/fvSchemes
$fvControls/fvSolution
119 [ -s "$parentDir/$check" ] || usage
"file does not exist: '$parentDir/$check'"
123 case "$ParaView_VERSION" in
125 trap "rm -f paraFoam.pvs $caseFile 2>/dev/null; exit 0" EXIT TERM INT
128 # since we are now in the cwd, %CASE% is '$PWD/$caseFile'
129 sed -e s@
%CASE
%@
$PWD/$caseFile@g \
130 $WM_PROJECT_DIR/bin
/tools
/paraFoam.pvs
> paraFoam.pvs
132 paraview paraFoam.pvs
136 # only create/remove caseFile if it didn't already exist
137 [ -e $caseFile ] ||
{
138 trap "rm -f $caseFile 2>/dev/null; exit 0" EXIT TERM INT
140 echo "created temporary '$caseFile'"
143 paraview
--data="$caseFile"
147 #------------------------------------------------------------------------------