Beobachtungsvektor Näherung Numerisch: Strecken fertig

This commit is contained in:
2025-12-16 13:57:34 +01:00
parent 3aacff9a49
commit d1a46f8db1
10 changed files with 3589 additions and 3558 deletions

View File

@@ -1,4 +1,6 @@
import sympy as sp
from decimal import Decimal
import math
class Berechnungen:
def __init__(self, a, b):
@@ -54,4 +56,10 @@ class Einheitenumrechnung:
def ppb(ppb):
ppb *= 10 ** (-9)
return ppb
return ppb
def gon_to_rad_Decimal(gon):
gon = Decimal(gon)
pi = Decimal(str(math.pi))
rad = (gon / Decimal(200)) * pi
return rad