kleine Anpassungen

This commit is contained in:
2025-12-14 16:13:55 +01:00
parent 946d028fae
commit 4139fbc354
4 changed files with 90 additions and 38 deletions

View File

@@ -13,7 +13,7 @@ import GHA_triaxial.numeric_examples_panou as nep
def gha1_num_old(ell: ellipsoide.EllipsoidTriaxial, point, alpha0, s, num):
phi, lamb, h = ell.cart2geod("ligas3", point)
phi, lamb, h = ell.cart2geod(point, "ligas3")
x, y, z = ell.geod2cart(phi, lamb, 0)
p, q = ell.p_q(x, y, z)
@@ -50,7 +50,7 @@ def buildODE(ell):
return ODE
def gha1_num(ell, point, alpha0, s, num):
phi, lam, _ = ell.cart2geod("ligas3", point)
phi, lam, _ = ell.cart2geod(point, "ligas3")
x0, y0, z0 = ell.geod2cart(phi, lam, 0)
p, q = ell.p_q(x0, y0, z0)