Skip to content
Snippets Groups Projects

Faster CircularResistiveWall

Merged Keon Hee KIM requested to merge faster_circular_resistive_wall into develop
1 unresolved thread
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -301,7 +301,7 @@ def yokoya_elliptic(x_radius, y_radius):
ip_range = np.arange(50)
il_range = np.arange(50)
ip, il = np.meshgrid(ip_range, il_range, indexing='ij')
ip, il = np.meshgrid(ip_range, il_range, indexing="ij")
ff_values = np.array(function_ff(small_semiaxis_th, F_th, mu_b_th, ip, il))
L_values = np.array(function_L(mu_b_th, ip, il))
@@ -341,7 +341,7 @@ def yokoya_elliptic(x_radius, y_radius):
ip_range = np.arange(50)
il_range = np.arange(50)
ip, il = np.meshgrid(ip_range, il_range, indexing='ij')
ip, il = np.meshgrid(ip_range, il_range, indexing="ij")
ff_values = np.array(function_ff(small_semiaxis, F, mu_b, ip, il))
L_values = np.array(function_L(mu_b, ip, il))
Loading