<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.uni-due.de/agk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lena.S</id>
	<title>Arbeitsgruppe Kuiper - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.uni-due.de/agk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lena.S"/>
	<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=Special:Contributions/Lena.S"/>
	<updated>2026-05-27T04:44:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.10</generator>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=582</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=582"/>
		<updated>2024-06-21T07:36:09Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: /* Über erste Periodendauer: */ Plots ergänzt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;br /&gt;
&lt;br /&gt;
==== Literaturdaten: ====&lt;br /&gt;
Zusammentragung von Daten in M.M Zdrakowich&#039;s Volume 1: Flow around circular cylinders:&lt;br /&gt;
[[File:Experimentelle Daten zum Fluss um einen Zylinder.png|thumb|Zusammentragung von experimentellen Daten aus M.M. Zdrakovich Volume 1: Flow Around Cyrcular Cylinders. Auftragung der Strouhal-Zahl (Ablösefrequenz der Wirbel einer von Karman-Straße) über die Reynolds-Zahl]]&lt;br /&gt;
&lt;br /&gt;
==== Methode 1: Analyse mittels Autokorrelation: ====&lt;br /&gt;
Hier wird die [https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] in ihrer allgemeinen normierten Form verwendet. Es stellt sich heraus, dass eine Periode der Autokorrelationsfunktion der Tangentialgeschwindigkeit mit der Periode der Wirbelablösung übereinstimmt. Im Fall der anderen Größen ist die Periode in der Regel kleiner.&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def cov(a,b):&lt;br /&gt;
     return np.mean(np.dot((a-np.mean(a)),(b-np.mean(b))))&lt;br /&gt;
&lt;br /&gt;
def autokorr(data):&lt;br /&gt;
    autok=[]&lt;br /&gt;
    for tau in range (0,int(len(data))):&lt;br /&gt;
         data_a=data[:len(data)-tau]&lt;br /&gt;
         data_b=data[tau:]&lt;br /&gt;
         temp=cov(data_a,data_b)/np.sqrt(cov(data_a,data_a)*cov(data_b,data_b))&lt;br /&gt;
         autok.append(temp)&lt;br /&gt;
    autok=np.asarray(autok)&lt;br /&gt;
    return autok&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;gallery mode=&amp;quot;nolines&amp;quot; caption=&amp;quot;[https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&amp;quot;&amp;gt;&lt;br /&gt;
File:Re60 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 60 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
File:Index.php?title=File:Re100 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 100 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
[[File:St Re Autokorr T0.png|thumb|Auftragung der Strouhal-Zahl errechnet aus der Periodendauer des ersten signifikaten Peaks der Autokorrelationsfunktion. Mittlung über alle Zellen der Simulation, Fehlerbalken entsprechen der Standardabweichung]]&lt;br /&gt;
&lt;br /&gt;
===== Über erste Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            diffs_mod.append(np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])[0])&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[File:St Re Autokorr.png|thumb|Auftragung der Strouhal-Zahl errechnet aus den mittleren Abständen der Peaks der Autokorrelationsfunktion. Mittlung über alle Zellen der Simulation, Fehlerbalken entsprechen der Standardabweichung]]&lt;br /&gt;
&lt;br /&gt;
===== Über Durchschnittliche Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_anw_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            vs_auto_maxs=np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])&lt;br /&gt;
            diffs_mod=np.hstack((diffs_mod,(vs_auto_maxs[1:]-vs_auto_maxs[:-1])[0]))&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[File:St Re Fourier.png|thumb|Auftragung der Strouhal-Zahl errechnet aus den mittleren Peak-Abständen der Fourier-Transformierten aller Zellen der Simulation  und der Observablen Druck, Dichte und Geschwindigkeit.]]&lt;br /&gt;
&lt;br /&gt;
==== Methode 2: Analyse mittels Fourier-Analyse: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss des Simulationsrandes: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss der Mach-Zahl: ====&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Fourier.png&amp;diff=581</id>
		<title>File:BA-LS-St Re Fourier.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Fourier.png&amp;diff=581"/>
		<updated>2024-06-21T07:20:56Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Noch zu ergänzen&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Autokorr.png&amp;diff=580</id>
		<title>File:BA-LS-St Re Autokorr.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Autokorr.png&amp;diff=580"/>
		<updated>2024-06-21T07:08:26Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-noch zu ergänzen-&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Autokorr_T0.png&amp;diff=579</id>
		<title>File:BA-LS-St Re Autokorr T0.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St_Re_Autokorr_T0.png&amp;diff=579"/>
		<updated>2024-06-21T07:06:15Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;-Noch nach zu tragen-&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=565</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=565"/>
		<updated>2024-06-18T14:32:03Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: Added experimental data&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;br /&gt;
&lt;br /&gt;
==== Literaturdaten: ====&lt;br /&gt;
Zusammentragung von Daten in M.M Zdrakowich&#039;s Volume 1: Flow around circular cylinders:&lt;br /&gt;
[[File:Experimentelle Daten zum Fluss um einen Zylinder.png|center|thumb|Zusammentragung von experimentellen Daten aus M.M. Zdrakovich Volume 1: Flow Around Cyrcular Cylinders. Auftragung der Strouhal-Zahl (Ablösefrequenz der Wirbel einer von Karman-Straße) über die Reynolds-Zahl]]&lt;br /&gt;
&lt;br /&gt;
==== Methode 1: Analyse mittels Autokorrelation: ====&lt;br /&gt;
Hier wird die [https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] in ihrer allgemeinen normierten Form verwendet. Es stellt sich heraus, dass eine Periode der Autokorrelationsfunktion der Tangentialgeschwindigkeit mit der Periode der Wirbelablösung übereinstimmt. Im Fall der anderen Größen ist die Periode in der Regel kleiner.&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def cov(a,b):&lt;br /&gt;
     return np.mean(np.dot((a-np.mean(a)),(b-np.mean(b))))&lt;br /&gt;
&lt;br /&gt;
def autokorr(data):&lt;br /&gt;
    autok=[]&lt;br /&gt;
    for tau in range (0,int(len(data))):&lt;br /&gt;
         data_a=data[:len(data)-tau]&lt;br /&gt;
         data_b=data[tau:]&lt;br /&gt;
         temp=cov(data_a,data_b)/np.sqrt(cov(data_a,data_a)*cov(data_b,data_b))&lt;br /&gt;
         autok.append(temp)&lt;br /&gt;
    autok=np.asarray(autok)&lt;br /&gt;
    return autok&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;gallery mode=&amp;quot;nolines&amp;quot; caption=&amp;quot;[https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&amp;quot;&amp;gt;&lt;br /&gt;
File:Re60 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 60 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
File:Index.php?title=File:Re100 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 100 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über erste Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            diffs_mod.append(np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])[0])&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über Durchschnittliche Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_anw_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            vs_auto_maxs=np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])&lt;br /&gt;
            diffs_mod=np.hstack((diffs_mod,(vs_auto_maxs[1:]-vs_auto_maxs[:-1])[0]))&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Methode 2: Analyse mittels Fourier-Analyse: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss des Simulationsrandes: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss der Mach-Zahl: ====&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:Experimentelle_Daten_zum_Fluss_um_einen_Zylinder.png&amp;diff=564</id>
		<title>File:Experimentelle Daten zum Fluss um einen Zylinder.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:Experimentelle_Daten_zum_Fluss_um_einen_Zylinder.png&amp;diff=564"/>
		<updated>2024-06-18T14:15:01Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Zusammentragung von experimentellen Daten aus M.M. Zdrakovich Volume 1: Flow Around Cyrcular Cylinders. Auftragung der Strouhal-Zahl (Ablösefrequenz der Wirbel einer von Karman-Straße) über die Reynolds-Zahl&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=545</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=545"/>
		<updated>2024-06-17T06:17:38Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;br /&gt;
&lt;br /&gt;
==== Methode 1: Analyse mittels Autokorrelation: ====&lt;br /&gt;
Hier wird die [https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] in ihrer allgemeinen normierten Form verwendet. Es stellt sich heraus, dass eine Periode der Autokorrelationsfunktion der Tangentialgeschwindigkeit mit der Periode der Wirbelablösung übereinstimmt. Im Fall der anderen Größen ist die Periode in der Regel kleiner.&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def cov(a,b):&lt;br /&gt;
     return np.mean(np.dot((a-np.mean(a)),(b-np.mean(b))))&lt;br /&gt;
&lt;br /&gt;
def autokorr(data):&lt;br /&gt;
    autok=[]&lt;br /&gt;
    for tau in range (0,int(len(data))):&lt;br /&gt;
         data_a=data[:len(data)-tau]&lt;br /&gt;
         data_b=data[tau:]&lt;br /&gt;
         temp=cov(data_a,data_b)/np.sqrt(cov(data_a,data_a)*cov(data_b,data_b))&lt;br /&gt;
         autok.append(temp)&lt;br /&gt;
    autok=np.asarray(autok)&lt;br /&gt;
    return autok&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt; &amp;lt;gallery mode=&amp;quot;nolines&amp;quot; caption=&amp;quot;[https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&amp;quot;&amp;gt;&lt;br /&gt;
File:Re60 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 60 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
File:Index.php?title=File:Re100 Autokorr.png|bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 100 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über erste Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            diffs_mod.append(np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])[0])&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über Durchschnittliche Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_anw_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            vs_auto_maxs=np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])&lt;br /&gt;
            diffs_mod=np.hstack((diffs_mod,(vs_auto_maxs[1:]-vs_auto_maxs[:-1])[0]))&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Methode 2: Analyse mittels Fourier-Analyse: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss des Simulationsrandes: ====&lt;br /&gt;
&lt;br /&gt;
==== Einfluss der Mach-Zahl: ====&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Ma001_Autokorr.png&amp;diff=544</id>
		<title>File:BA-LS-Re100 Ma001 Autokorr.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Ma001_Autokorr.png&amp;diff=544"/>
		<updated>2024-06-17T06:07:25Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Autokorrelationsfunktion (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder, umströmt bei Reynolds-Zahl 100 und Mach-Zahl 0.001. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:Re60_Autokorr_St.png&amp;diff=543</id>
		<title>File:Re60 Autokorr St.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:Re60_Autokorr_St.png&amp;diff=543"/>
		<updated>2024-06-17T06:06:55Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Autokorrelationsfunktion (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder, umströmt bei Reynolds-Zahl 60 und Mach-Zahl 0.01. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:Re60_Autokorr.png&amp;diff=542</id>
		<title>File:Re60 Autokorr.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:Re60_Autokorr.png&amp;diff=542"/>
		<updated>2024-06-17T06:06:27Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Autokorrelationsfunktion (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder, umströmt bei Reynolds-Zahl 60 und Mach-Zahl 0.01. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr_St.png&amp;diff=541</id>
		<title>File:BA-LS-Re100 Autokorr St.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr_St.png&amp;diff=541"/>
		<updated>2024-06-17T06:04:10Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder, umströmt bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 100 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr.png&amp;diff=540</id>
		<title>File:BA-LS-Re100 Autokorr.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr.png&amp;diff=540"/>
		<updated>2024-06-17T05:59:56Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] (Verallgemeinerung) angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position r=12,42 und phi=180° hinter einem Zylinder, umströmt bei [https://de.wikipedia.org/wiki/Reynolds-Zahl Reynolds-Zahl] 100 und [https://de.wikipedia.org/wiki/Mach-Zahl Mach-Zahl] 0.01. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=539</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=539"/>
		<updated>2024-06-17T01:37:45Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: /* Methode 1: Analyse mittels Fourier-Transormation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;br /&gt;
&lt;br /&gt;
==== Methode 1: Analyse mittels Autokorrelation: ====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def cov(a,b):&lt;br /&gt;
     return np.mean(np.dot((a-np.mean(a)),(b-np.mean(b))))&lt;br /&gt;
&lt;br /&gt;
def autokorr(data):&lt;br /&gt;
    autok=[]&lt;br /&gt;
    for tau in range (0,int(len(data))):&lt;br /&gt;
         data_a=data[:len(data)-tau]&lt;br /&gt;
         data_b=data[tau:]&lt;br /&gt;
         temp=cov(data_a,data_b)/np.sqrt(cov(data_a,data_a)*cov(data_b,data_b))&lt;br /&gt;
         autok.append(temp)&lt;br /&gt;
    autok=np.asarray(autok)&lt;br /&gt;
    return autok&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;Hier wird die [https://de.wikipedia.org/wiki/Autokorrelation Autokorrelationsfunktion] in ihrer allgemeinen normierten Form verwendet. &amp;lt;gallery mode=&amp;quot;nolines&amp;quot;&amp;gt;&lt;br /&gt;
File:Re100 Autokorr.png|Autokorrelationsfunktion angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position n_r=40 und n_phi=90. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&lt;br /&gt;
File:Re100 Autokorr St.png|Autokorrelationsfunktion angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position n_r=40 und n_phi=90. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (aus Daten von Roshko).&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über erste Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            diffs_mod.append(np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])[0])&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Über Durchschnittliche Periodendauer: =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
def autokorr_anw_mod(vs_r, mesh_grid,stepwidth):&lt;br /&gt;
    phis_min=0&lt;br /&gt;
    phis_max=np.shape(mesh_grid)[1]&lt;br /&gt;
    &lt;br /&gt;
    diffs_mod=[]&lt;br /&gt;
    for rs in range (0,np.shape(mesh_grid)[0]):&lt;br /&gt;
        for phi in range (phis_min,phis_max):&lt;br /&gt;
            vs_auto_maxs=np.asarray(sp.find_peaks(autokorr(vs_r[:,rs,phi]))[0])&lt;br /&gt;
            diffs_mod=np.hstack((diffs_mod,(vs_auto_maxs[1:]-vs_auto_maxs[:-1])[0]))&lt;br /&gt;
    return diffs_mod*stepwidth&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Methode 2: Analyse mittels Fourier-Analyse: ====&lt;br /&gt;
[[File:BA-LS-St-Re-Vgl-Roshko.png|alt=This plot shows the strouhal number for different reynolds numbers in case of eddie shedding behind a spherical cylinder. Three curves are approximately the data collected by Roshko (source: M.M Zdrakovich, Flow around circular cylinders, Vol. 1) and the marks in blue show the results of the simulated data with pluto.|thumb|center|600px|Current Simulation Results]]&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr_St.png&amp;diff=538</id>
		<title>File:BA-LS-Re100 Autokorr St.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr_St.png&amp;diff=538"/>
		<updated>2024-06-17T00:17:50Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Autokorrelationsfunktion angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position n_r=40 und n_phi=90. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr.png&amp;diff=537</id>
		<title>File:BA-LS-Re100 Autokorr.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-Re100_Autokorr.png&amp;diff=537"/>
		<updated>2024-06-17T00:14:34Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Autokorrelationsfunktion angewandt auf die Zeitreihen von Druck, Dichte und Geschwindigkeit an Position n_r=40 und n_phi=90. Maximalstellen markiert durch x kennzeichnen lokal höchste Übereinstimmung der Zeitreihen. Literaturwert als grobe visuelle Orientierung (umgerechnet in Perioden aus Daten von Roshko).&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=536</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=536"/>
		<updated>2024-06-16T23:42:29Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: /* Analyse der Ablösefrequenz: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;br /&gt;
&lt;br /&gt;
==== Mathode 1: Analyse mittels Fourier-Transormation ====&lt;br /&gt;
[[File:BA-LS-St-Re-Vgl-Roshko.png|alt=This plot shows the strouhal number for different reynolds numbers in case of eddie shedding behind a spherical cylinder. Three curves are approximately the data collected by Roshko (source: M.M Zdrakovich, Flow around circular cylinders, Vol. 1) and the marks in blue show the results of the simulated data with pluto.|thumb|center|600px|Current Simulation Results]]&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=475</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=475"/>
		<updated>2024-05-21T22:26:24Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: Added results of simulations: plot of St over Re&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:St-Re-Vgl-Roshko.png|alt=This plot shows the strouhal number for different reynolds numbers in case of eddie shedding behind a spherical cylinder. Three curves are approximately the data collected by Roshko (source: M.M Zdrakovich, Flow around circular cylinders, Vol. 1) and the marks in blue show the results of the simulated data with pluto.|thumb|Current Simulation Results]]&lt;br /&gt;
Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;br /&gt;
&lt;br /&gt;
=== Analyse der Ablösefrequenz: ===&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St-Re-Vgl-Roshko.png&amp;diff=474</id>
		<title>File:BA-LS-St-Re-Vgl-Roshko.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=File:BA-LS-St-Re-Vgl-Roshko.png&amp;diff=474"/>
		<updated>2024-05-21T19:46:01Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This plot shows the strouhal number for different reynolds numbers in case of eddie shedding behind a spherical cylinder. Three curves are approximately the data collected by Roshko (source: M.M Zdrakovich, Flow around circular cylinders, Vol. 1) and the marks in blue show the results of the simulated data with pluto.&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
	<entry>
		<id>https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=281</id>
		<title>BA Lena Schürmann</title>
		<link rel="alternate" type="text/html" href="https://wiki.uni-due.de/agk/index.php?title=BA_Lena_Sch%C3%BCrmann&amp;diff=281"/>
		<updated>2024-04-26T10:57:06Z</updated>

		<summary type="html">&lt;p&gt;Lena.S: Vortragstitel&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vortragstitel im Bachelorseminar: Modellierung und Analyse der Ablösefrequenz von von Kármán-Straßen&lt;/div&gt;</summary>
		<author><name>Lena.S</name></author>
	</entry>
</feed>