I want to programm an easy visualisation of wave propagation. I tried this with visual python (VPython) but the programm is very slow. I want to use a 2-D visualisation now. Which module could you recommend? Tkinter? Matplotlib?

For the computation i use numpy/scipy because it is fast. Thanks in advance.

EDIT: Do you think matplotlib is a good choice? It looks very strong.

EDIT: I really get stuck. Please help me!

link|improve this question

1  
What kind of visualization? Is it like falstad.com/membrane/j2 What part of the program is slow? Have you measured it? Try pygame.org It uses NumPy as the default package for surfarray/sndarray – J.F. Sebastian Feb 17 '10 at 12:28
For example, see 2D Waves program at geometrian.com/Programs.php – J.F. Sebastian Feb 17 '10 at 12:34
pygame.org/pcr/water/index.php This looks good, but I cant install Numeric (always problems with dependencies :( ) , so I cant use this. – kame Feb 17 '10 at 13:12
pygame itself uses numpy by default. Converting pygame-water from Numeric to numpy might be as simple as: s/from Numeric import/from numpy import/. – J.F. Sebastian Feb 17 '10 at 20:41
feedback

1 Answer

up vote 1 down vote accepted

Try this library:
http://linux.wareseeker.com/Programming/summon-1.8.8.zip/2911b4d847

Python Imaging Library is supposed to be good for 2D graphics:
http://www.pythonware.com/products/pil/

Other Useful Links:
Boost.Python http://www.boost.org/libs/python/doc/
PyOpenGL http://pyopengl.sourceforge.net/

These link's have some good information on them.

I'm not familar with matplotlib but it's got some good review's:

http://sourceforge.net/projects/matplotlib/reviews/

link|improve this answer
I cant install summon on Python 2.6. vsvarsall.bat is missing (?) – kame Feb 16 '10 at 17:45
I didn't find a refresh function for pictures in the PIL-module. – kame Feb 16 '10 at 19:29
I don't know why I'm getting down voted. – chrissygormley Feb 17 '10 at 10:50
Sorry but I think PIL doesn't refreshes the pictures. I wrote above that I want to show wave propagation and not a standing wave. I try to find a solution for many hours now. But nothing works. – kame Feb 17 '10 at 11:11
@kame - That indicates that it is trying to run Visual Studio to compile some C code. See if your can get a prebuilt version, install Visual Studio (There's a free version) or see if you can find the options to compile with the MINGW compiler. Try Stackoverflow for questions like this! – Oddthinking Mar 7 '10 at 6:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.