--- jupytext: text_representation: extension: .md format_name: myst format_version: 0.13 jupytext_version: 1.13.7 kernelspec: display_name: Python 3 (ipykernel) language: python name: python3 --- # End of shaft angle sensor End of shaft angle sensing is a classical example for a magnetic position system. The goal is to determine the angular position of a rotating shaft. A magnet, typically a diametrically magnetized cylinder, is mounted at the end of the shaft. A 2D sensor is mounted below. When the shaft rotates the two sensor outputs will be $s_1=B_0 sin(\varphi)$ and $s_2=B_0 cos(\varphi)$, so that the angle is uniquely given by $\varphi = arctan(s_1/s_2)$. In the example below we show such a typical end-of-shaft system with a 2-pixel sensor, that is commonly used to eliminate external stray fields. In addition, we assume that the magnet is not perfectly mounted at the end of the shaft, but slightly displaced to the side, which results in a wobble motion. Such tolerances are easily implemented with Magpylib, they can be visualized and their influence on the sensor output signal can be tested quickly. ```{code-cell} ipython3 import numpy as np import plotly.graph_objects as go import magpylib as magpy # create magnet magnet = magpy.magnet.Cylinder( magnetization=(1000,0,0), dimension=(6,2), position=(0,0,1.5), style_label='Magnet', style_color='.7', ) # create shaft dummy with 3D model shaft = magpy.misc.CustomSource( position=(0,0,7), style_color='.7', style_model3d_showdefault=False, style_label='Shaft' ) shaft_trace = magpy.graphics.model3d.make_Prism( backend='plotly', base=20, diameter=10, height=10, opacity=0.3, ) shaft.style.model3d.add_trace(shaft_trace) # shaft rotation / magnet wobble motion displacement = 1 angles = np.linspace(0, 360, 72) coll = magnet + shaft magnet.move((displacement, 0, 0)) coll.rotate_from_angax(angles, 'z', anchor=0, start=0) # create sensor gap = 3 sens = magpy.Sensor( position=(0,0,-gap), pixel=[(1,0,0), (-1,0,0)], style_pixel_size=0.5, style_size=1.5, ) # show 3D animation of wobble motion fig1 = go.Figure() magpy.show(magnet, sens, shaft, animation=True, backend='plotly', canvas=fig1) fig1.update_layout(scene_camera_eye_z=-1.1) fig1.show() # show sensor output in plotly fig2 = go.Figure() B = sens.getB(magnet) for px,dash in zip([0,1], ['solid', 'dash']): for i,xy,col in zip([0,1], ['x','y'], ['red', 'green']): fig2.add_trace(go.Scatter(x=angles, y=B[:,px,i], name=f"pixel{px}-B{xy}", line=dict(color=col, dash=dash), )) fig2.update_layout( xaxis_title='angle [deg]', yaxis_title='field [mT]' ) fig2.show() ```