intersection with triangle plane for miss
[OpenFOAM-1.5.x.git] / etc / apps / paraview / cshrc
blob3c22ae09ff7528ad5b8aa72e3efc82cb2fe2d8e9
1 #----------------------------------*-sh-*--------------------------------------
2 # =========                 |
3 # \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4 #  \\    /   O peration     |
5 #   \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6 #    \\/     M anipulation  |
7 #------------------------------------------------------------------------------
8 # License
9 #     This file is part of OpenFOAM.
11 #     OpenFOAM is free software; you can redistribute it and/or modify it
12 #     under the terms of the GNU General Public License as published by the
13 #     Free Software Foundation; either version 2 of the License, or (at your
14 #     option) any later version.
16 #     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 #     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 #     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19 #     for more details.
21 #     You should have received a copy of the GNU General Public License
22 #     along with OpenFOAM; if not, write to the Free Software Foundation,
23 #     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 # Script
26 #     paraview/cshrc
28 # Description
29 #     Startup File for Paraview.
30 #     Sourced from OpenFOAM-?.?/etc/cshrc
32 #------------------------------------------------------------------------------
34 setenv CMAKE_HOME $WM_THIRD_PARTY_DIR/cmake-2.4.6/platforms/$WM_ARCH
36 if ( -r $CMAKE_HOME ) then
37     set path=($CMAKE_HOME/bin $path)
38 endif
40 setenv ParaView_VERSION 2.4.4
42 setenv ParaView_INST_DIR $WM_THIRD_PARTY_DIR/ParaView$ParaView_VERSION
43 setenv ParaView_DIR $ParaView_INST_DIR/lib/paraview-2.4
45 if ( -r $ParaView_INST_DIR ) then
46     setenv PV_INTERFACE_PATH $FOAM_UTILITIES/postProcessing/graphics/PVFoamReader/PVFoamReader/Make
48     set path=($ParaView_INST_DIR/bin $path)
49     setenv LD_LIBRARY_PATH ${ParaView_INST_DIR}/lib:${ParaView_INST_DIR}/lib/vtk:${LD_LIBRARY_PATH}
50 endif
52 if ( -r $ParaView_DIR ) then
53     setenv VTK_DIR $ParaView_DIR/VTK
54 endif
56 # -----------------------------------------------------------------------------