This commit is contained in:
2025-05-22 11:48:37 +02:00
parent c34ad20166
commit 6dc2fcf4df
22 changed files with 1824 additions and 25 deletions

View File

@@ -0,0 +1,19 @@
# Hilfreiche Pakete
import numpy as np
import matplotlib.pyplot as plt
theta = np.linspace(-np.pi, np.pi, 1000)
cs = 1 / np.sin(theta/2)**4
plt.semilogy(theta*180/np.pi, cs)
plt.xlabel(r"Streuwinkel $\theta$ [deg]")
plt.ylabel(r"$\csc^4(\theta/2)$")
plt.title("Differentieller Wirkungsquerschnitt für $U(r) = \\alpha/r^2$")
plt.show()
# Task
# Calculate the differential Wirkungsquerschnitt ds/dOm fuer das repulsive
# Potential V(r) = a/r^2, a > 0
# Plotte den Wirkungsquerschnitt als funktion des Raumwinkels theta