Zum Inhalt springen

Datei:Lamb–Oseen vortex animation.gif

Seiteninhalte werden in anderen Sprachen nicht unterstützt.
Zur Beschreibungsseite auf Commons
aus Wikipedia, der freien Enzyklopädie

Lamb–Oseen_vortex_animation.gif (400 × 400 Pixel, Dateigröße: 3,46 MB, MIME-Typ: image/gif, Endlosschleife, 250 Bilder, 27 s)

Diese Datei und die Informationen unter dem roten Trennstrich werden aus dem zentralen Medienarchiv Wikimedia Commons eingebunden.

Zur Beschreibungsseite auf Commons


Beschreibung

Beschreibung
English: Animation of the Lamb–Oseen vortex equation in air, aging up to 25 seconds.

Viewed window size is 20 cm in width (out of an infinite air space). Floating particles show the movement of the fluid as well as local vorticity; the growing boundary between the rotational vortex core and the irrotational exterior can be clearly seen.

Viscosity = 1.5e-5 m^2/s (air under standard conditions), Circulation = 1e-2 m^2/s.

See also File:Rankine_vortex_animation.gif for the same done with a Rankine vortex.
Datum
Quelle Eigenes Werk
Urheber Nanite

Source

 
Dieser Plot wurde mit Matplotlib erstellt.
 
Diese Grafik wurde mit ImageMagick erstellt.

Python source code. Requires matplotlib ImageMagick. Possibly does not run in Windows.

#!/usr/bin/env python3

import numpy as np
from scipy.special import expi
from matplotlib import pyplot as plt
from matplotlib import collections

twopi = 2*np.pi

# kinematic viscosity m^2/s
viscosity = 1.5e-5

# fixed circulation of the lamb-onseen vortex, m^2/s
circulation = 10e-3

# radial range in which to place particles, m
rmax = 0.2
rmark = 0.003 # radius of 'marker'
# number of particles
N = 600

# radial coordinate of particles, this does not change over time
# place them with sqrt of uniform 1D-distributed so they are uniform in 2D
part_r = rmax * np.sqrt(np.linspace(0, 1, N+1)[1:])
# precalculate some things
invr2 = 1/part_r**2
neg_tprime = -part_r**2 / (4 * viscosity) # negative of transition time for this radius
# angular coordinate of particles, set them randomly.
part_th = twopi*np.random.rand(N)
# rotation of particles - start them all out as horizontal
part_rot = np.zeros((N,))

dt = 0.01
i = 0

frames = []
frametimes = []
nextframetime = 0

fig = plt.figure()
fig.set_size_inches(4,4)
ax = plt.axes((0,0,1,1))
ax.set_xlim(-0.7*rmax, +0.7*rmax)
ax.set_ylim(-0.7*rmax, +0.7*rmax)
ax.set_aspect('equal')
ax.set_axis_off()

linesegs = np.empty((2*N, 2, 2))

while True:
    i += 1
    t = i*dt
    if t > 25:
        break

    # use finite difference to increment angular coordinate and rotation of particles.
    # we oould calculate these in closed form in terms of Ei(x) function, but this
    # is easy and good enough.
    part_th += (-dt * circulation / twopi) * np.expm1(neg_tprime/t) * invr2
    # note the rotation of particle is half of the vorticity.
    part_rot += (dt * circulation / (4*twopi*viscosity * t)) * np.exp(neg_tprime/t)

    # only show every tenth frame
    if i % 10 == 0:
        frame = f"frames/frame{i}.png"
        frames.append(frame)
        frametimes.append(t)

        [c.remove() for c in ax.lines]
        [c.remove() for c in ax.collections]
        [c.remove() for c in ax.texts]
        x = part_r*np.cos(part_th)
        y = part_r*np.sin(part_th)
        cr = rmark*np.cos(part_rot)
        sr = rmark*np.sin(part_rot)
        # first line segments of the crosses
        linesegs[0::2, 0, 0] = x + cr
        linesegs[0::2, 0, 1] = y + sr
        linesegs[0::2, 1, 0] = x - cr
        linesegs[0::2, 1, 1] = y - sr
        # second line segments of the crosses - perpendicular
        # note that having them distinct length or shade makes it visually MUCH easier to see
        # distinction between the rotational core and irrotational exterior, due to distinct texture.
        linesegs[1::2, 0, 0] = x - sr
        linesegs[1::2, 0, 1] = y + cr
        linesegs[1::2, 1, 0] = x + sr
        linesegs[1::2, 1, 1] = y - cr
        linecoll = collections.LineCollection(linesegs, linewidths=1, colors=((0., 0., 0.), (0.75, 0.75, 0.75)),
                               linestyle='solid')
        ax.add_collection(linecoll)

        [c.remove() for c in fig.texts]
        fig.text(0.01,0.01,f't = {t:.02f} s', fontsize='x-large', bbox=dict(facecolor='w', alpha=1))
        fig.savefig(frame)

# gif frame times are in centiseconds
delays = list(np.diff(np.round(np.array(frametimes) * 100)))
# show the last frame for a bit extra time
delays.append(delays[-1] + 200)

print(len(frames), len(delays))
assert(len(delays) == len(frames))

### Assemble animation using ImageMagick ###
calllist = 'convert'.split()
for delay,frame in zip(delays,frames):
    calllist += ['-delay',str(int(delay))]
    calllist += [frame]
calllist += '-loop 0 -layers Optimize _animation.gif'.split()
f = open('anim_command.txt','w')
f.write(' '.join(calllist)+'\n')
f.close()

print("composing into animated gif...", end='')
import sys, subprocess, os
sys.stdout.flush()
subprocess.call(calllist)
print("      done")
os.rename('_animation.gif','animation.gif')

Lizenz

Ich, der Urheber dieses Werkes, veröffentliche es unter der folgenden Lizenz:
Creative Commons CC-Zero Diese Datei wird unter der Creative-Commons-Lizenz CC0 1.0 Verzicht auf das Copyright zur Verfügung gestellt.
Die Person, die das Werk mit diesem Dokument verbunden hat, übergibt dieses weltweit der Gemeinfreiheit, indem sie alle Urheberrechte und damit verbundenen weiteren Rechte – im Rahmen der jeweils geltenden gesetzlichen Bestimmungen – aufgibt. Das Werk kann – selbst für kommerzielle Zwecke – kopiert, modifiziert und weiterverteilt werden, ohne hierfür um Erlaubnis bitten zu müssen.

Kurzbeschreibungen

Ergänze eine einzeilige Erklärung, was diese Datei darstellt.

In dieser Datei abgebildete Objekte

Motiv

Dateiversionen

Klicke auf einen Zeitpunkt, um diese Version zu laden.

Version vomVorschaubildMaßeBenutzerKommentar
aktuell15:43, 8. Jun. 2020Vorschaubild der Version vom 15:43, 8. Jun. 2020400 × 400 (3,46 MB)NaniteUploaded own work with UploadWizard

Keine Seiten verwenden diese Datei.

Globale Dateiverwendung

Die nachfolgenden anderen Wikis verwenden diese Datei: