-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Spatial rotation induces an unphysical blow up of the B field at the centre of a Halbach octupole #606
Comments
Hi @Sylk1-9, Thanks for your interest in the library and for taking the time to explain the issue welll ;) Looks like there is a numerical instability in the CylinderSegment computation. I can reproduce it with a more minimal example: import magpylib as magpy
import numpy as np
from matplotlib import pyplot as plt
cyl_seg = magpy.magnet.CylinderSegment(
magnetization=[1000.0, 0.0, 0.0], dimension=[1.0, 2.0, 1.0, -10, 10]
)
zline = np.linspace((0, 0, -100), (0, 0, 100), 100)
B_zline = cyl_seg.getB(zline)
cyl_seg.rotate_from_angax(90, axis="y", anchor=0)
xline = zline[:, ::-1]
B_xline = cyl_seg.getB(xline)
plt.plot(
zline[:, 2],
np.abs(B_zline),
label=("|Bx| z axis", "|By| z axis", "|Bz| z axis"),
)
plt.plot(
zline[:, 2],
np.abs(B_xline),
label=("|Bx| x axis", "|By| x axis", "|Bz| x axis"),
ls="--",
)
plt.yscale("log")
plt.ylabel("log(|B|)")
plt.xlabel("x | z")
plt.legend()
plt.show() If the line is a sensor which is rotated, there is no issue though: import magpylib as magpy
import numpy as np
from matplotlib import pyplot as plt
cyl_seg = magpy.magnet.CylinderSegment(
magnetization=[1000.0, 0.0, 0.0], dimension=[1.0, 2.0, 1.0, -10, 10]
)
pixel = np.linspace((0, 0, -100), (0, 0, 100), 100)
sens = magpy.Sensor(pixel=pixel)
B_zline = cyl_seg.getB(sens)
cyl_seg.rotate_from_angax(90, axis="y", anchor=0)
sens.rotate_from_angax(90, axis="y", anchor=0)
B_xline = cyl_seg.getB(sens)
plt.plot(
pixel[:, 2],
np.abs(B_zline),
label=("|Bx| z axis", "|By| z axis", "|Bz| z axis"),
)
plt.plot(
pixel[:, 2],
np.abs(B_xline),
label=("|Bx| x axis", "|By| x axis", "|Bz| x axis"),
ls="--",
)
plt.yscale("log")
plt.ylabel("log(|B|)")
plt.xlabel("x | z")
plt.legend()
plt.show() @OrtnerMichael, can you have take at this? |
Hi @Sylk1-9 Not sure what is meant by "blowing up". When I run your code I get this: What do you get ? When I run your first code I get this and not what you show. Your second code does not compile - its missing the
i get the same as you do. You sure about the first code? What operating system did you run this on ? |
Hum, indeed, I should have included the plot directly. Mine is very different from yours, when I run the code of my initial post. About @Alexboiboi code examples, I get the exact two same figures as he got as well. |
forgot to remove the line. Fixed it in the comment now. |
Seems to be an issue of recognizing the right CylinderSegment cases. magpylib/magpylib/_src/fields/field_BH_cylinder_segment.py Lines 2416 to 2421 in 6cd0211
adding observers[np.abs(observers)<1e-12] = 0. between L2417-L2418 solves the issue. It may need deeper analysis for robustness though... |
agreed !!! lets keep this issue open until this is fixed ! |
Magpylib version
4.x (Latest)
What happened?
Issue :
When computing the magnetic B field right in the centre of a Halbach octupole that has been spatially rotated, the result blows up.
The expected magnetics field should be zero though.
Code example :
The octupole is made of 32 individual
CylinderSegment
, distributed circularly.The following code example build such octupole, with z as the axis of symmetry.
The B field vector is then computed for values distributed along the z axis. The result is close to zero, as expected.
However, rotating the same octupole around the y axis, then computing the B field vector for values distributed along the x axis (the new axis of symmetry), and the B field amplitude blows up to unphysical values.
Precisions and tests :
Using the
magpy
routinerotate_from_angax
or thescipyspatial.transform.Rotation
routinefrom_rotvec
provide similar resultsStrangely, playing with the radii, height, or magnetization of the disc segments doesn't change the position at which the B field explodes. It is always located around 50mm before or after the centre of the octupole, along the axis of symetry.
The issue only appears when computing the magnetic field on the symmetry axis. Outside, the results between both orientations are similar.
Code example
Additional context
The text was updated successfully, but these errors were encountered: