Skip to content
Snippets Groups Projects

Faster CircularResistiveWall

Merged Keon Hee KIM requested to merge faster_circular_resistive_wall into develop
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -289,7 +289,7 @@ def yokoya_elliptic(x_radius, y_radius):
# less than or equal to 0.8.
qr_th = 0.8
if qr < qr_th:
if qr <= qr_th:
F = np.sqrt(large_semiaxis**2 - small_semiaxis**2)
mu_b = np.arccosh(large_semiaxis / F)
@@ -307,7 +307,7 @@ def yokoya_elliptic(x_radius, y_radius):
yokxdip, yokydip = yokydip, yokxdip
yokxquad, yokyquad = yokyquad, yokxquad
# Beyond the threshold (qr >= qr_th), they may not be valid,
# Beyond the threshold (qr > qr_th), they may not be valid,
# but should converge to Yokoya form factors of parallel plates.
# Fortunately, beyond this threshold, they should show asymptotic behavior,
# so we perform linear interpolation.
Loading