Einfache Berechnung der Gefällestrecke mit Ein und Auslauf

This commit is contained in:
2024-11-20 11:28:59 +01:00
parent 96434f6ae9
commit 0d613df418
2 changed files with 405 additions and 0 deletions
@@ -0,0 +1,44 @@
# Gefällestrecke mit Einlauf
![Alt text](bilder/SkizzeGefälleStreckeMitEinlauf.svg "Skizze von Gefällestrecke und Einlauf")
Bekannt:
$$
L_1, H_0, H_1, \alpha, \Delta H_{EA}, L_{EA}
$$
Gesucht:
$$
L_G, \Delta H_G
$$
Beziehungen:
$$
\frac{\Delta{H_G}}{L_G} = tan(\alpha) [1]
$$
$$
\Delta{H_F} = H_1 - H_0 + \Delta{H_S} [2]
$$
$$
L_1 = L_G + L_{EA} [3]
$$
$$
H_0 = H_1 + \Delta H_{EA} + \Delta H_G [4]
$$
aus [1]
$$
\Delta{H_G} = tan(\alpha) \cdot L_G
= tan(\alpha) \cdot L_1 - L_{EA}
$$
aus [3]
$$
L_G = L_1 - L_{EA}
$$