Animating particles in a flow
This article demonstrates matplotlib's animation module by animating marker particles in a fluid flow around a cylinder. It's a bit long because it ties together a number of different ideas:
- stream functions
- numerical integration
- plotting and animation
Before we really start, let's copy a function from a ...
more ...