Open mohawk811 opened 3 hours ago
You can use norm_name
argument to adjust the normalization. Something like,
plot_2d(eq,'J',log=False, norm_F=True, norm_name="grad(|B|)")
But this might not give proper results, since (as far as I know) we don't have a compute function for "|grad(|B|)|"
or something similar.
Is there a way to still have the 1/2mu0 ?
If you want to use plot_2d
function, I don't think you can because we don't have a compute function for $|\nabla B|/2\mu_0$. If you want you can write your own compute function following this page. But probably the easiest way is to compute $|\nabla B|$ and then divide it by $\mu_0$ and plot it using plt.contourf
instead of plot_2d
.
plot_2d(eq_out,'J',log=False, norm_F=True)
Is there a way to normalize to grad B and not grad B^2?