Funktionales Modell Tachymeter überarbeitet

This commit is contained in:
2025-12-22 11:24:03 +01:00
parent ac03826d3e
commit b652f432b5
12 changed files with 13576 additions and 5316 deletions

View File

@@ -24,7 +24,7 @@ class Berechnungen:
def B(self, z, x, y):
hilfswinkel = self.hilfswinkel(z, x, y)
B = sp.atan2((z + self.e_strich_quadrat_wert * self.b_wert * sp.sin(hilfswinkel) ** 3), (self.P(x, y) - self.e_strich_quadrat_wert * self.a_wert * sp.cos(hilfswinkel) ** 3))
B = sp.atan2((z + self.e_strich_quadrat_wert * self.b_wert * sp.sin(hilfswinkel) ** 3), (self.P(x, y) - self.e_quadrat_wert * self.a_wert * sp.cos(hilfswinkel) ** 3))
return B
def L(self, x, y):