Skip to content
Snippets Groups Projects
Commit 9b62f724 authored by Roger Wolf's avatar Roger Wolf
Browse files

adding technical information in new format

parent de40153c
No related branches found
No related tags found
No related merge requests found
# Technische Daten für den Vorversuch Datenverarbeitung am Beispiel des Pendels:
Für diesen Vorversuch stehen Ihnen die folgenden zusätzlichen Informationen zur Verfügung:
- Der Abstand zwischen dem Schwerpunkt des Smartphones und der Aufhängung des Pendels (für Aufgabe 2) während dieser Messung betrug $\ell=(0,6285\pm0,0005)\hspace{0.05cm}{\mathrm{m}}$.
- Für Aufgabe 3 haben wir die folgenden Parameter durch externe Messungen bestimmt:
- Das Trägheitsmoment des gesamten Pendels haben wir mit Hilfe des [Satzes von Steiner](https://de.wikipedia.org/wiki/Steinerscher_Satz) und den geometrischen Abmessungen und (z.T. geschätzten) Massenbelegungen der Einzelteile des Pendels bestimmt. Dabei haben wir den Pendelstab, das Smartphone und die Konstruktionen für die Auflagekeile (siehe Datenblatt zum P1-Versuch [Pendel](https://gitlab.kit.edu/kit/etp-lehre/p1-praktikum/students/-/tree/main/Pendel)) berücksichtigt. Der Wert betrug $\Theta=\left(0,2352\pm^{0,0026}_{0,0024}\right)\hspace{0.05cm}{\mathrm{kg\hspace{0.05cm}m^{2}}}$. Die Unsicherheiten haben wir durch Fehlerfortpflanzung abgeschätzt.
- Die Gesamtmasse des Pendels haben wir aus den Massen der Einzelteile abgeschätzt. Sie betrug $M=\left(0,789\pm0,005\right)\hspace{0.05cm}{\mathrm{kg}}$.
- Den Abstand zwischen Schwerpunkt und Aufhängung des (gesamten) Pendels haben wir ebenfalls aus den Einzelteilen bestimmt. Er betrug $s=\left(0,473\pm0,007\right)\hspace{0.05cm}{\mathrm{m}}$.
- Für die Unsicherheiten auf die $x$- und $y$-Werte der Datenreihe können Sie die folgenden Angaben verwenden:
- $\Delta t = 0.0125\hspace{0.055cm}\mathrm{s}$,
- $\Delta a = 0,02\hspace{0.05cm}\mathrm{m/s^{2}}$.
"""
Parameters required for "Aufgabe 2".
The only parameter required for the model of the mathematical pendulum of task
2 is the length of the pendulum. We take this to be the distance l of the
center of mass of the smartphone from the pivotal point of the pendulum. The
value of l is given in SI units.
"""
l = 0.6285 # Distance of the center of mass of the smartphone from the pivotal point of the pendulum (in m)
l_UPPER = 0.6280 # +uncertainty
l_LOWER = 0.6290 # -uncertainty
__version__ = 1.0
"""
Parameters required for "Aufgabe 3".
The momentum of inertia (Theta), mass (M), and distance (s) between the center
of mass of the complete pendulum and the pivotal point of the pendulum. All
quantities have been derived from direct parameter estimates and rounded within
their estimated uncertainties. They have been derived assuming simplified
shapes of the corresponding objects, e.g. the smartphone has been approximated
by a homogeneous box. All quantities are given in SI units.
"""
Theta = 0.23523 # Momentum of inertia in kg*m**2
Theta_UPPER = 0.2378 # +uncertainty
Theta_LOWER = 0.2328 # -uncertatiny
M = 0.789 # Mass of the pendulum in kg
M_UPPER = 0.794 # +uncertainty
M_LOWER = 0.784 # -uncertainty
s = 0.473 # Distance of the center of mass from the pivotal point of the pendulum in m
s_UPPER = 0.480 # +uncertainty
s_LOWER = 0.466 # -uncertainty
__version__ = 1.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment