CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Installation

Newbie: Install ParaView 3.81 on OF-1.6-ext/OpenSuse 11.2?

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 8, 2011, 03:19
Default Newbie: Install ParaView 3.81 on OF-1.6-ext/OpenSuse 11.2?
  #1
Member
 
sirLentschi
Join Date: Nov 2010
Posts: 78
Rep Power: 15
lentschi is on a distinguished road
Hello,

I am an absolute Newbie on Linux but I set up OF-1.6-ext on OpenSuse 11.2 and it works fine!
Now I want to "install" ParaView 3.81 separately but have no idea to perform this.
I downloaded it from : http://www.paraview.org/paraview/res.../software.html

Now I have a paraview directory with some executables,which I can start by clicking.

But if I want to start paraFoam in my case-dir,then I get this error:

/home/lenama/OpenFOAM/OpenFOAM-1.6-ext/bin/paraFoam: line 100: paraview: command not found

Here is my paraFoam-file:

#!/bin/sh
#------------------------------------------------------------------------------
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration |
# \\ / A nd | Copyright held by original author
# \\/ M anipulation |
#-------------------------------------------------------------------------------
# License
# This file is part of OpenFOAM.
#
# OpenFOAM is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# paraFoam
#
# Description
# start paraview with the OpenFOAM libraries
#
#------------------------------------------------------------------------------
Script=${0##*/}

usage() {
while [ "$#" -ge 1 ]; do echo "$1"; shift; done
cat<<USAGE

usage: $Script [-case dir]

* start paraview $ParaView_VERSION with the OpenFOAM libraries

USAGE
exit 1
}

# parse options
if [ "$#" -gt 0 ]; then
case "$1" in
-h | -help)
usage
;;
-case)
shift
caseDir=$1
[ "$#" -ge 1 ] || usage "'-case' option requires an argument"
cd "$caseDir" 2>/dev/null || usage "directory does not exist: '$caseDir'"
;;
*)
usage "unknown option/argument: '$*'"
;;
esac
fi

# get a sensible caseName
caseName=${PWD##*/}

# parent directory for normal or parallel results
case "$caseName" in
processor*) parentDir=".." ;;
*) parentDir="." ;;
esac

# check existence of essential files
for check in system/controlDict system/fvSchemes system/fvSolution
do
[ -s "$parentDir/$check" ] || usage "file does not exist: '$parentDir/$check'"
done

#caseFile="$caseName.foam"
caseFile="$caseName.OpenFOAM"

case "$ParaView_VERSION" in
2*)
# Clean up on termination and on Ctrl-C
trap "rm -f paraFoam.pvs $caseFile 2>/dev/null; exit 0" EXIT TERM INT
touch $caseFile

# since we are now in the cwd, %CASE% is '$PWD/$caseFile'
sed -e s%CASE%$PWD/$caseFile%g \
$WM_PROJECT_DIR/bin/paraFoam.pvs > paraFoam.pvs

paraview paraFoam.pvs
;;

*)
# Clean up on termination and on Ctrl-C
trap "rm -f $caseFile 2>/dev/null; exit 0" EXIT TERM INT
touch $caseFile
paraview --data=$caseFile
;;

esac
#------------------------------------------------------------------------------

If I type "paraview" in the case-dir, I get this error:

If 'paraview' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf paraview


There must be a problem with the command "paraview" because the system cannot find it.

Has anyone a idea to solve my problem?

Thanks in advance.

Regards Markus

Last edited by lentschi; March 8, 2011 at 05:47.
lentschi is offline   Reply With Quote

Old   March 9, 2011, 02:32
Default
  #2
Member
 
sirLentschi
Join Date: Nov 2010
Posts: 78
Rep Power: 15
lentschi is on a distinguished road
I got it!

I just forgot to set the PATH of ParaView in the bashrc - file!
lentschi is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
install OpenFoam 1.6 by building source: how? niudie OpenFOAM Installation 13 April 26, 2011 00:48
[OpenFOAM] Installation problem with ParaView 3.8.0 on openSUSE 11.2 aero_ ParaView 14 August 2, 2010 18:13
How to install ParaView-3.6.1 in OpenFOAM-1.5-dev and OpenSuse 11.2 pcaron OpenFOAM 0 April 7, 2010 11:06
OpenFOAM 1.6 and ThirdParty Software Paraview dunlopjp OpenFOAM Installation 0 February 24, 2010 11:35
paraFoam reader for OpenFOAM 1.6 smart OpenFOAM Installation 13 November 16, 2009 21:41


All times are GMT -4. The time now is 20:42.