CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   ParaView (https://www.cfd-online.com/Forums/paraview/)
-   -   [OpenFOAM] Paraview and VTK (https://www.cfd-online.com/Forums/paraview/61108-paraview-vtk.html)

Mattijs Janssens (Mattijs) October 28, 2003 06:54

Paraview and VTK
 
I have a written simple foamToVTK converter for Foam2.2 meshes and data. Let me know if you would like to give it a try and I'll pack it up.

Mattijs Janssens (Mattijs) October 28, 2003 10:45

foamToVTK : forgot to mention
 
foamToVTK : forgot to mention but it works quite nicely with the paraview front-end to vtk.

Also I am looking for someone out there who knows how to bind in a reader into vtk.

Rasmus Hemph February 9, 2004 11:17

I find the converter (foamToV
 
I find the converter (foamToVTK) very useful for post processing in Paraview. However, the conversion algorithm does not seem to work for void fraction in two-phase flow? At least I get strange visual result looking at the 'alpha'-parameter in Paraview. In Ensight7 the same results look as expected.
Any idea as to what might be causing this?

Mattijs Janssens (Mattijs) February 9, 2004 11:33

the foamToVTK converter only
 
the foamToVTK converter only handles volScalarFields and volVectorFields. If your 'alpha' field is one of those (check the header) there should be no problem with it; all volScalarFields are handled in the same way.

Do you have any pics of 'strange' visual results?

Rasmus Hemph February 9, 2004 12:24

Thank you for the swift reply.
 
Thank you for the swift reply. Alpha is indeed a volScalarField. I have posted the pictures temporarily on my webpage

http://www.tfd.chalmers.se/~md8hemra/

The files are converted to VTK with the command
>> foamToVTK . rootcase

//rasmus

Mattijs Janssens (Mattijs) February 9, 2004 13:19

I just tried converting the '
 
I just tried converting the 'damBreak' tutorial case with foamToVTK.

I get proper point gamma (i.e. void fraction on the points) but zero cell wise gamma. (all my cell fields seem to be zero). Need to look into this.

Are you running 2.2 or 2.3?

Rasmus Hemph February 9, 2004 15:38

2.2
 
2.2

Mattijs Janssens (Mattijs) February 10, 2004 05:25

Paraview does not seem to be
 
Paraview does not seem to be able to display cell values on a cut? I take a 2D case, e.g. dambreak. I can colour the read-in object with 'Cell gamma' but if I create a cut I cannot colour the cut with 'Cell gamma'. Point gamma works though.

Can anyone with more paraview experience tell us how to do this?

Mattijs Janssens (Mattijs) February 18, 2004 04:59

There has been some activity
 
There has been some activity on the Paraview/VTK front. Seems that the new paraview1.2.1 can display cell values.

Mattijs Janssens (Mattijs) February 27, 2004 05:13

I have hacked a version of fo
 
I have hacked a version of foamToVTK to write binary format. It might decrease the loading time but I haven't tested it yet on any largish case. Contact me directly if you want to try it out.

Rasmus Hemph February 27, 2004 08:49

I have tried with the new ver
 
I have tried with the new version of paraview without further success. I got hold of the foamToVTKBin-file through Niklas, but could not compile it. Is it for Foam 2.3?
This is the errormessage I get:

tfdpc236:wclean
tfdpc236:wmake
Making dependency list for source file vtkTopo.C
Making dependency list for source file foamToVTKBin.C

SOURCE_DIR=.
SOURCE=vtkTopo.C ; g++ -Dlinux -DlinuxGcc3OptLAM -DscalarMachine -DoptSolvers -DPARALLEL -DUSEMPI -Wall -O2 -DNoRepository -ftemplate-depth-30 -I/users/tfd/md8hemra/foam/foam2.2/src/foam/lnInclude -IlnInclude -I. -I/users/tfd/md8hemra/foam/foam2.2/src/lam-6.5.9/platforms/linuxGcc3OptLAM/include -I/usr/X11/include -DWM_PROJECT_VERSION='"'2.2'"' -DDEBUGList -O0 -g -I/users/tfd/md8hemra/foam/foam2.2/src/cfdTools/lnInclude -I/users/tfd/md8hemra/foam/foam2.2/src/browser/lnInclude -fPIC -c $SOURCE -o Make/linuxGcc3OptLAM/vtkTopo.o
SOURCE_DIR=.
SOURCE=foamToVTKBin.C ; g++ -Dlinux -DlinuxGcc3OptLAM -DscalarMachine -DoptSolvers -DPARALLEL -DUSEMPI -Wall -O2 -DNoRepository -ftemplate-depth-30 -I/users/tfd/md8hemra/foam/foam2.2/src/foam/lnInclude -IlnInclude -I. -I/users/tfd/md8hemra/foam/foam2.2/src/lam-6.5.9/platforms/linuxGcc3OptLAM/include -I/usr/X11/include -DWM_PROJECT_VERSION='"'2.2'"' -DDEBUGList -O0 -g -I/users/tfd/md8hemra/foam/foam2.2/src/cfdTools/lnInclude -I/users/tfd/md8hemra/foam/foam2.2/src/browser/lnInclude -fPIC -c $SOURCE -o Make/linuxGcc3OptLAM/foamToVTKBin.o
foamToVTKBin.C: In function `int main(int, char**)':
foamToVTKBin.C:120: error: 'class Foam::argList' has no member named '
noParallel'
make: *** [Make/linuxGcc3OptLAM/foamToVTKBin.o] Error 1

Mattijs Janssens (Mattijs) February 27, 2004 09:08

Yes, it was written for 2.3.
 
Yes, it was written for 2.3. Try commenting out the whole line with the 'noParalllel()' (foamToVTKBin.C:120).

Rasmus Hemph March 1, 2004 07:59

Ah, now it works! (and conver
 
Ah, now it works! (and converts much faster than before) Also see the velocity vectors which have been lost in translation previously.
Thanks for all help!

A small note to other 2.2 users. I had to add
-I$(FOAM_SRC)/browser/lnInclude and
-lbrowser
to get it to compile.

Mattijs Janssens (Mattijs) March 4, 2004 06:22

There is a new version of foa
 
There is a new version of foamToVTK which does patchFields and lagrangian fields. These are dumped to separate directories, one for each patch and one directory 'lagrangian' containing all the lagrangian data. Contact me directly if you want it.

Mattijs

Mattijs Janssens (Mattijs) August 10, 2004 08:52

... > A Paraview reader modul
 
...
> A Paraview reader module for 2.3 sounds great,
> but how does it work? To test it,
> I ran the icoFoam tutorial case which produces Foam output files.
> I can convert this output to VTK and look at it in paraview,
> but I have not yet been able to open it without converting.
> Paraview seem to be expecting a file with a .foam-extension??
> Will the reader module work for lagrangian particles?


The new Paraview reader module needs in the case directory .foam file. This is a limitation in the way in which Paraview loads data.

It does not handle any lagrangian data. Feel free to add this yourself - all source is in $FOAM_UTILITIES/postProcessing/graphics/PVFoamReader/

Alternatively you can always convert the lagrangian data separately (using e.g. foamToVTK) and load it on top of any Foam reader data.

Mattijs

Rasmus Hemph (Hemph) September 16, 2004 10:29

Hi Mattijs The new reader mo
 
Hi Mattijs
The new reader module for Paraview looks good. I do not yet feel comfortable enough with the source code to add lagrangian support to it, but I hope I get better at it as time goes. Unfortunately, Paraview gets very slow when it has to deal with many files, taking almost 3 seconds between time steps, so it is unusable for me at the moment.

I have however had a chance to improve my VTK knowledge, and have written a small tcl/tk program to visualize my lagrangian particles. The problem is the conversion from the FOAM format to VTK. With the supplied converter, i.e. foamToVTK, I can convert my mesh and particles to VTK, but it takes too much time to be practial (approx 20 minutes) for my current case (2000 time steps). I was wondering about the best way for me to proceed:

-Can the classes used for the PVfoamReader be used to output the simulation results directly to VTK, i.e. make the need for conversion afterwards unnecessary?

-Alternatively. I saw that foamToVTK now supports more options on the commandline. I have played with those, but to my knowledge, I can not output ONLY the lagrangian data, that is, skip the mesh data and only print the position of the particles at each time step. The converter also clears the VTK subdirectory at each conversion. This is not necessary always. Can this be changed?

Mattijs Janssens (Mattijs) September 16, 2004 11:19

Hello Rasmus, 1] reader su
 
Hello Rasmus,

1] reader support. Low on our list of priorities. As for slowness that is part due ofcourse to Foam having to read the meshes and data (though Foam reading is quite fast - especially when using binary or compressed - see your controlDict settings)

2] tcl/tk program: sounds nice. Can I try it?

- "Can the classes used for the PVfoamReader ...". Don't understand fully. You can however do a 'Save Data' to write the vtk objects to a file (and reread it later). I have no experience reading these but am quite interested if you can come up with something..

- foamToVTK. For your purpose just go to the source directories (postProcessing/dataConversion/foamToVTK) and comment out in foamToVTK.C:
- rmDir(fvPath) (line 137 for me)
- all to do with writing fields/meshes
(line 210 to 506)

(I am bit reluctant to add more logic to foamToVTK so you'll have to do it on your own version)

Let me know how you get on.

Mattijs

Mattijs Janssens (Mattijs) September 17, 2004 08:05

Hi Rasmus, many thanks for
 
Hi Rasmus,

many thanks for your tool - is neat. Just wondering: do you need to dump 2000 results or can you do with less? And if you have 2000 already, do you need to convert all 2000? You can use the -time or -latestTime option to convert one time only.

Mattijs

Jason J Beech-Brandt (Jasonb) October 4, 2004 08:53

Hi, I've downloaded and un
 
Hi,

I've downloaded and unpacked paraview-1.6.2 for Solaris as part of foam2.3. However when I try and run paraview I get the following link error

>paraview
ld.so.1: paraview: fatal: libucb.so.1: open failed: No such file or directory
Killed

Adding the directory /usr/ucblib to my LD_LIBRARY_PATH variable gets rid of this problem, however now I am getting a Segmentation Fault after the paraview startup screen appears.

Any ideas?

Cheers

Jason

Henry Weller (Henry) October 4, 2004 09:09

Hi Jason, I compiled paravi
 
Hi Jason,

I compiled paraview 1.6.2 on the UltraSparc machine here running Solaris 2.8 and it went without a hitch and ran fine. I am not sure why you are having problems but it may be related to your version of Solaris being more recent.

Try downloading the ParaView binaries for Solaris from http://www.paraview.org/HTML/Download.html (unfortunately only an old version is available) or the sources and see if you can build and run. If you use the binary installation you will not be able to compile the reader-module because the CMake files are not included but you will be able to run foamToVTK and look at your results that way. If you need further help let us know and I will tell you how we built and installed ParaView

Henry

Jason J Beech-Brandt (Jasonb) October 6, 2004 09:44

Hi Henry, I've downloaded
 
Hi Henry,

I've downloaded and compiled paraview-1.6.3 and that went OK. However when I start paraview I get the following error
>paraview
ErrorMessage
# Error or warning: ERROR: In /deptpc/scratch/jbbrand1/packages/paraview-1.6.3/Utilities/VTKClientServer/vtkClientServerInterpreter.cxx, line 882
vtkClientServerInterpreter (0x114ac8): Cannot load module "PVFoamReader" from "/home/jbbrand1/foam/foam2.3/lib/solarisGcc34OptLAM/libPVFoamReader.so".

ERROR: In /deptpc/scratch/jbbrand1/packages/paraview-1.6.3/GUI/Client/vtkPVXMLPackageParser.cxx, line 661
vtkPVXMLPackageParser (0x7aef18): Error loading Library component PVFoamReader

ErrorMessage end

Despite the error message, paraview appears to work OK on its own.
I have recompiled the libPVFoamReader.so library, so I don't know why I'm getting this error. To be honest with you, I'm not really sure I'm using this in the way is intended, so if I'm missing something I'd appreciate any pointers you could give me.

Thanks

Jason

Henry Weller (Henry) October 7, 2004 06:14

Hi Jason, It is possible t
 
Hi Jason,

It is possible that this problem is due to changes in the module load mechanism between 1.6.2 and 1.6.3 (they are changing the xml stuff very frequently). But it might also be that the xml files weren't rebuilt when you built the reader module so for starters try this:

cd foam2.3/applications/utilities/postProcessing/graphics/PVFoamReader
rm -rf PVFoamReader/solarisGcc34OptLAM
wclean vtkFoam
Allwmake

and see if that helps. If not I will have to build ParaView 1.6.3 here on our linux machine to see if the module loading stuff has changed again

Henry

Jason J Beech-Brandt (Jasonb) October 14, 2004 11:13

Hi Henry, Got caught up wi
 
Hi Henry,

Got caught up with other stuff, but have tried what you suggested above, and am having the same problem as before. Specifically, if I enter

>paraview

I get the error message as before, but paraview continues to work.

However, if use the script

>paraFoam -root- -case-

I get the above message followed by a Segmentation Fault.

I'm quite happy using OpenDx for the time being, so there is no rush to get this working on my account.

Thanks,

Jason

Henry Weller (Henry) October 14, 2004 11:26

Hi Jason, Which version of
 
Hi Jason,

Which version of paraview do you have running? Does the FOAM reader work OK?

Henry

Jason J Beech-Brandt (Jasonb) October 15, 2004 04:07

Hi Henry, I'm running para
 
Hi Henry,

I'm running paraview-1.6.3.

The FOAM reader you refer to is the PVFoamReader.so library? If so, no, as I get the message that "Cannot load module PVFoamReader" when I try and start paraview.

Jason

Mattijs Janssens (Mattijs) October 15, 2004 04:20

Hi Jason, We had this prob
 
Hi Jason,

We had this problem before as well and it turned out the $FOAM_LIBBIN/libPVFoamReader.so
did not link in liblam.so.0. Unfortunately Paraview's error message is not very helpful (should be fixed though in latest paraview)

Have a look at my linux ldd output and see if you have the foam related libraries at least.

linux-gate.so.1 => (0xffffe000)
libvtkClientServer.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/libvtkClientServer.so (0x40012000)
libvtkGraphicsCS.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/libvtkGraphicsCS.so (0x4005b000)
libfoam.so => /home/pinky2/mattijs/foam/foam2.3/lib/linuxGcc34OptLAM/libfoam.so (0x40143000)
libvtkFoam.so => /home/pinky2/mattijs/foam/foam2.3/lib/linuxGcc34OptLAM/libvtkFoam.so (0x40934000)
libvtkGraphics.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/vtk/libvtkGraphics.so (0x409b2000)
libvtkFilteringCS.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/libvtkFilteringCS.so (0x40bd5000)
libvtkFiltering.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/vtk/libvtkFiltering.so (0x40c13000)
libvtkCommonCS.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/libvtkCommonCS.so (0x40c95000)
libvtkCommon.so => /home/pinky2/mattijs/foam/linux/paraview-1.6.2/lib/vtk/libvtkCommon.so (0x40d9f000)
libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x4105e000)
libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x410b2000)
libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x410bb000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x410d3000)
libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x411cf000)
libpthread.so.0 => /lib/tls/libpthread.so.0 (0x411de000)
libdl.so.2 => /lib/libdl.so.2 (0x411ee000)
libm.so.6 => /lib/tls/libm.so.6 (0x411f2000)
libstdc++.so.6 => /home/pinky2/mattijs/foam/linux/gcc-3.4.2/lib/libstdc++.so.6 (0x41214000)
libgcc_s.so.1 => /home/pinky2/mattijs/foam/linux/gcc-3.4.2/lib/libgcc_s.so.1 (0x412e6000)
libc.so.6 => /lib/tls/libc.so.6 (0x412ef000)
libfoamUser.so => /home/pinky2/mattijs/foam/foam2.3/lib/linuxGcc34OptLAM/libfoamUser.so (0x41404000)
libz.so => /usr/lib/libz.so (0x41407000)
libmpi.so.0 => /home/pinky2/mattijs/foam/foam2.3/src/lam-7.0.6/platforms/linuxGcc34OptLAM/lib/libmpi.so.0 (0x41418000)
liblam.so.0 => /home/pinky2/mattijs/foam/foam2.3/src/lam-7.0.6/platforms/linuxGcc34OptLAM/lib/liblam.so.0 (0x41477000)
libutil.so.1 => /lib/libutil.so.1 (0x414bc000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)

Jason J Beech-Brandt (Jasonb) October 15, 2004 04:52

Hi Mattijs, I appear to be
 
Hi Mattijs,

I appear to be missing a couple of foam libraries, specifically

liblam.so.0
libmpi.so.0

If I go to $LAM_ARCH_PATH/lib there are no shared versions of these libraries, only static versions. So I guess I will have to build these shared libraries and then make the PVFoamReader library linking these in?

Jason

Jason J Beech-Brandt (Jasonb) October 21, 2004 09:10

Hi, I've compiled the shar
 
Hi,

I've compiled the shared versions of the lam-mpi libraries and then compiled the libvtkFoam library, linking in these shared lam-mpi libraries. This appears to have fixed the problem I was getting when trying to use Paraview for the Solaris installation.

Jason

Mattijs Janssens (Mattijs) December 10, 2004 11:47

Hi, just 'discovered' a ne
 
Hi,

just 'discovered' a neat trick of Paraview: if you type in a number in a field and type ctrl-enter instead of just enter and it will automatically 'accept' the new data so you don't have to press the Accept button.

Mattijs

Niklas Wikstrom (Wikstrom) December 22, 2004 04:25

I must say I quite like Parav
 
I must say I quite like Paraview, and the integration with OpenFOAM. Have mysteriously missed paraview earlier. Thank's for the introduction!

Rasmus Gjesing (Gjesing) January 7, 2005 08:41

Auto-accept In addition to
 
Auto-accept

In addition to Mattijs trick with ctrl-enter, you can also rigth-click on the accept-button, and choose Auto-accept. This way all changes will occur straight away, like dxFoams Update on changes-function.

Rasmus

Rasmus Gjesing (Gjesing) January 7, 2005 08:47

Hi, Has anyone succeed in
 
Hi,

Has anyone succeed in making streamlines in paraFoam?
I can choose all the settings but no streamlines appears...

Can anyone give me a hint?

/Rasmus

Rasmus Gjesing (Gjesing) February 10, 2005 08:19

Hi, I want to visualize la
 
Hi,

I want to visualize lagrangian particles in paraview. So I searched the forum and found Mattijs explanation.

However, after converting the fields using foamToVTK, I can see the labels and properties of the particles in paraview, but I would also like to be able to see them represented as spheres scaled with their diameters. Anyone how can help me with this?

/Rasmus

Mattijs Janssens (Mattijs) February 10, 2005 09:18

Put 'glyphs' on your points.
 
Put 'glyphs' on your points. Is one of the filters

Mattijs

Wladimyr Mattos da Costa Dourado (Mattos) March 2, 2005 12:11

paraFoam under Mandrake 10.0
 
paraFoam under Mandrake 10.0

Hi Guys!

I have a problem and I ask if somebody can help me.

I tried to run paraFoam such as the following command line:

[wladimyr@geitt4 testcases]% paraFoam icoFoam cavity_gmsh

and the paraview opens the first screen whitout problem, waiting to press accept key to read the data. Then, when I press accept key it crashes and no addition message is printed in any place (I think so :-\ ), only that core file was generated and stored in the case directory. I did use convertion of foam data to paraview using foamToVTK utility and after I can read tha data using paraview without problem. What I must to do in order to use paraFoam directly? If I'm right, some capabilities of paraview I can use only if I run it from paraFoam, is it correct?


It is the cavity tutorial case where the mesh was generated by gmsh (www.geuz.org) and converted by gmshToFoam (nice converter! once more, congratulations!) If someone want it I can send. I suggest that discussion board may offer a repository of test cases and tutorias offered by users.

Tanks in advace for all (and for any!)

mattos March 8, 2005 15:52

ParaFoam Crashes after accept
 
ParaFoam Crashes after accept key pressed

Hi Guys

I have yet a problem with paraFoam in my installation. It craches when I press accept key in paraview source window. (see March, 02). Someone know if it has a solution?

Wladimyr

mattijs March 9, 2005 03:55

Try rebuilding PVFoamReader (s
 
Try rebuilding PVFoamReader (since your paraview already works ok)

Which paraview are you using? It should be the one that comes with OpenFOAM.


Make sure the $ParaView_DIR environment variable is set correctly (set in .OpenFOAM-1.0.2/apps/paraview/cshrc) and go to $FOAM_UTILITIES/postProcessing/graphics/PVFoamReader/
and go ./Allwmake.

This should rebuild the paraFoam reader module.

chris March 9, 2005 04:17

It could be that some entry is
 
It could be that some entry is missing in the case files. How do the files of your cavity_gmsh case differ from those in the cavity example case?

mattos March 9, 2005 12:49

Hi Mattijs and Chris I'm us
 
Hi Mattijs and Chris

I'm using the paraview version which comes with OpenFoam distribution (v1.8.0). I also tried with newer version of paraview and the samething happes. I tried either with my cavity_gmsh case as cavity original case and other one without success. As I said before, I can use paraview with translated data given by foamToVTK utility.

The setup (cshrc files) are correctly set and now I will try Allwmake command.

My cavity_gmsh case is simply a study case to lear how can I use gmsh mesh generator with openfoam. In terms of geometry and conditions it is equal to cavity tutorial case.

Anyway, tank you for your helps!

Regards,

Wladimyr

mattos March 9, 2005 16:10

Hi Guys paraFoam continues
 
Hi Guys

paraFoam continues biting me! Or should I say that I continue to fight against paraFoam? Anyway, these are the output of some commands. I believe that some of them I hope can be used to be used as patch file to correct some mistakes in script and config files. Or my installation is completely wrong!

Can somebody help me? After many blue eyes (see diff comands output), the following lines from Allmake seems very strange:
.
.
.
ParaView is required. Set ParaView_DIR.
.
.
.
make: *** No targets specified and no makefile found. Stop.

I tried to found where I must change to avoid it but I have no idea!

Tanks in advance for any and for all!

Waiting...

Wladimyr


================================
[wladimyr@geitt4 PVFoamReader]% ./Allwmake
make: Nothing to be done for `allFiles'.
make: `lnInclude/uptodate' is up to date.
make: `Make/linuxOpt/dependencies' is up to date.
libso
`/home/wladimyr/OpenFOAM/OpenFOAM-1.0.2/lib/linuxOpt/libvtkFoam.so' is up to date.
-- Check for working C compiler: gcc -- works
-- Check for working CXX compiler: c++ -- works
ParaView is required. Set ParaView_DIR.
-- Configuring done
make: *** No targets specified and no makefile found. Stop.

================================


[wladimyr@geitt4 PVFoamReader]% echo $ParaView_DIR
/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8

================================

[wladimyr@geitt4 PVFoamReader]% echo $ParaView_VERSION
1.8.0

================================

[wladimyr@geitt4 PVFoamReader]% diff CMakeCache.txt.ori CMakeCache.txt
143c143,145
< PARAVIEW_DIR:PATH=PARAVIEW_DIR-NOTFOUND
---
> // PARAVIEW_DIR:PATH=PARAVIEW_DIR-NOTFOUND
> PARAVIEW_DIR:PATH=/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8
>

================================

[wladimyr@geitt4 linuxOpt]% diff CMakeCache.txt.ori CMakeCache.txt
32c32
< CMAKE_CXX_FLAGS:STRING=' '
---
> CMAKE_CXX_FLAGS:STRING=
53c53
< CMAKE_C_FLAGS:STRING=' '
---
> CMAKE_C_FLAGS:STRING=
129c129
< CMAKE_SKIP_RPATH:BOOL=NO
---
> CMAKE_SKIP_RPATH:BOOL=OFF
134c134
< CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
---
> CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
142,143c142,143
< //The directory containing ParaViewConfig.cmake.
< PARAVIEW_DIR:PATH=PARAVIEW_DIR-NOTFOUND
---
> //The directory containing ParaViewConfig.cmake.
> PARAVIEW_DIR:PATH=/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8


================================

[wladimyr@geitt4 paraview-1.8]% diff ParaViewConfig.cmake.ori ParaViewConfig.cmake
4a5,6
> #/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8
>
6,7c8,9
< SET(PARAVIEW_USE_FILE "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ParaViewUse.cmak e")
< SET(PARAVIEW_VTK_DIR "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/vtk")
---
> SET(PARAVIEW_USE_FILE "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ParaViewUse.cmake ")
> SET(PARAVIEW_VTK_DIR "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/vtk")
9c11
< SET(VTKCS_SOURCE_DIR "/home/dm2/henry/OpenFOAM/linuxSrc/paraview-1.8.0/Utilities/VTKClientServer")
---
> SET(VTKCS_SOURCE_DIR "/home/wladimyr/OpenFOAM/linuxSrc/paraview-1.8.0/Utilities/VTKClientServer")
12,15c14,17
< "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/CMake/vtkWrapCli entServer.cmake")
< SET(VTK_WRAP_ClientServer_EXE "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/vtkWrapClientSer ver")
< SET(PARAVIEW_INCLUDE_DIRS "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/include/paraview-1.8")
< SET(PARAVIEW_LIBRARY_DIRS "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8")
---
> "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/CMake/vtkWrapClie ntServer.cmake")
> SET(VTK_WRAP_ClientServer_EXE "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/vtkWrapClientServ er")
> SET(PARAVIEW_INCLUDE_DIRS "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/include/paraview-1.8")
> SET(PARAVIEW_LIBRARY_DIRS "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8")
17,18c19,20
< SET(PARAVIEW_GUI_INCLUDE_DIRS "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/include/paraview-1.8")
< SET(PARAVIEW_KWSYS_INCLUDE_DIRS "/home/dm2/henry/OpenFOAM/linuxSrc/paraview-1.8.0/platforms/linuxOpt/Utilities/K WSys")
---
> SET(PARAVIEW_GUI_INCLUDE_DIRS "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/include/paraview-1.8")
> SET(PARAVIEW_KWSYS_INCLUDE_DIRS "/home/wladimyr/OpenFOAM/linuxSrc/paraview-1.8.0/platforms/linuxOpt/Utilities/KW Sys")
20,21c22,23
< SET(PARAVIEW_GUI_CLIENT_EXECUTABLE "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/bin/paraview")
< SET(PARAVIEW_SERVER_MANAGER_RESOURCES_DIRECTORY "/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ServerManager/Re sources")
---
> SET(PARAVIEW_GUI_CLIENT_EXECUTABLE "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/bin/paraview")
> SET(PARAVIEW_SERVER_MANAGER_RESOURCES_DIRECTORY "/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ServerManager/Res ources")
25c27
< INCLUDE("/home/dm2/henry/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ParaView LibraryDepends.cmake")
---
> INCLUDE("/home/wladimyr/OpenFOAM/linux/paraview-1.8.0/lib/paraview-1.8/ParaViewL ibraryDepends.cmake")


All times are GMT -4. The time now is 11:51.