Bickley JetΒΆ

The deeptime.data.bickley_jet() dataset.

 8 # sphinx_gallery_thumbnail_number = 1
 9
10 import matplotlib.pyplot as plt
11 import numpy as np
12
13 from deeptime.data import bickley_jet
14
15 n_particles = 250
16 dataset = bickley_jet(n_particles, n_jobs=8)
17 c = np.copy(dataset[0, :, 0])
18 c /= c.max()
19
20 fig, ax = plt.subplots(1, 1, figsize=(6, 4))
21 ani = dataset.make_animation(c=c, agg_backend=False, interval=75, fig=fig, ax=ax, max_frame=100)

Total running time of the script: ( 0 minutes 14.283 seconds)

Estimated memory usage: 9 MB