mirror of
https://gitlab.gwdg.de/j.hahn02/university.git
synced 2026-01-01 06:44:25 -05:00
new week
This commit is contained in:
19
S2/AnaMech/other/Hahn_Blatt5A5.py
Normal file
19
S2/AnaMech/other/Hahn_Blatt5A5.py
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user