3.1 Berechnung Ausbreitungsgeschwindigkeit

This commit is contained in:
Matthias Biermann
2023-09-27 22:22:27 +02:00
parent 721a66962d
commit 0f735dbb9a
+8 -3
View File
@@ -126,7 +126,7 @@
},
{
"cell_type": "code",
"execution_count": 43,
"execution_count": 47,
"metadata": {},
"outputs": [
{
@@ -139,7 +139,7 @@
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4ec8fb6e1f134b4fb2b4f9572e4d93ad",
"model_id": "6921982258ca4fec9e9b26201f13b17c",
"version_major": 2,
"version_minor": 0
},
@@ -169,7 +169,12 @@
"leerlauf_fig = plot_kurven(leerlauf, title=\"Relfexion bei Leerlauf\", xStart=1120, xStop=1370, xStep=20)\n",
"leerlauf_fig.savefig(\"Reflexion_bei_Leerlauf\", dpi=250)\n",
"\n",
"# Ausbreitungsgeschwindigkeit"
"# Ausbreitungsgeschwindigkeit\n",
"t1 = leerlauf[\"time\"].iloc[596] # ns\n",
"t2 = leerlauf[\"time\"].iloc[621] # ns\n",
"\n",
"dt = t2 - t1 # ns\n",
"v = 10 / (dt/1e9) # m/s"
]
},
{