Magnetic Field Simulation¶
Class to simulate the interaction between magnets and sensors using Magpylib.
Source code in lib/MagSim.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
|
add_sensor(sensor_pixels, sensor_position, sensor_orientation=None, style_label='Sensor', stl_file=None, stl_offset=None)
¶
Adds a sensor to the simulation, with an optional STL file for 3D model representation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sensor_pixels
|
list
|
List of pixel coordinates for the sensor. |
required |
sensor_position
|
list
|
3D position of the sensor [x, y, z]. |
required |
sensor_orientation
|
Rotation
|
Orientation of the sensor as Euler angles. Defaults to no rotation. |
None
|
style_label
|
str
|
Label for the sensor. Defaults to "Sensor". |
'Sensor'
|
stl_file
|
str
|
Path to the STL file representing the sensor. Defaults to None. |
None
|
stl_offset
|
list
|
Offset to apply to the STL model. Defaults to None. |
None
|
Source code in lib/MagSim.py
add_magnet(shape, polarization, dimension, position, orientation=None, style_magnetization=None)
¶
Adds a magnet of a specific shape to the simulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
shape
|
str
|
Shape of the magnet ("cylinder", "cube", "sphere", or "cylinder_segment"). |
required |
polarization
|
tuple
|
Polarization vector of the magnet. |
required |
dimension
|
tuple or float
|
Dimensions of the magnet (e.g., diameter, length). |
required |
position
|
list
|
3D position of the magnet [x, y, z]. |
required |
orientation
|
Rotation
|
Orientation of the magnet. Defaults to no rotation. |
None
|
style_magnetization
|
dict
|
Style parameters for the magnet visualization. Defaults to None. |
None
|
Source code in lib/MagSim.py
set_magnet_path(path_positions, path_orientations, magnet_index=0)
¶
Set the movement and rotation path for a specific magnet in the simulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path_positions
|
list
|
List of positions for the magnet path. |
required |
path_orientations
|
list
|
List of orientations for the magnet path. |
required |
magnet_index
|
int
|
Index of the magnet to apply the path to. Defaults to 0. |
0
|
Raises:
Type | Description |
---|---|
IndexError
|
If the magnet_index is out of range. |
Source code in lib/MagSim.py
set_sensor_path(path_positions, path_orientations, sensor_index=0)
¶
Set the movement and rotation path for a specific sensor in the simulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path_positions
|
list
|
List of positions for the sensor path. |
required |
path_orientations
|
list
|
List of orientations for the sensor path. |
required |
sensor_index
|
int
|
Index of the sensor to apply the path to. Defaults to 0. |
0
|
Raises:
Type | Description |
---|---|
IndexError
|
If the sensor_index is out of range. |
Source code in lib/MagSim.py
get_magnetic_field_at_sensors(sensor_index=0)
¶
Compute the magnetic field at the position of a specific sensor for each timestep.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sensor_index
|
int
|
Index of the sensor. Defaults to 0. |
0
|
Returns:
Type | Description |
---|---|
np.ndarray: Magnetic field components (Bx, By, Bz) at each timestep. |
Raises:
Type | Description |
---|---|
IndexError
|
If the sensor_index is out of range. |
Source code in lib/MagSim.py
display_simulation(animation=True, backend='plotly')
¶
Display the magnet and sensor simulation with optional animation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
animation
|
bool
|
Whether to animate the simulation. Defaults to True. |
True
|
backend
|
str
|
The backend for rendering the simulation. Defaults to "plotly". |
'plotly'
|
Source code in lib/MagSim.py
_bin_color_to_hex(x)
staticmethod
¶
Converts binary RGB value to hexadecimal color.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
int
|
Binary RGB value. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
Hexadecimal color code. |
Source code in lib/MagSim.py
trace_from_stl(stl_file, stl_offset=None)
¶
Generate a Magpylib 3D model trace from an STL file, applying an optional offset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
stl_file
|
str
|
Path to the STL file. |
required |
stl_offset
|
list
|
3D offset to apply to the STL vertices. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
dict |
Trace dictionary for rendering the STL model in Magpylib. |
Source code in lib/MagSim.py
display_with_outputs(backend='plotly', animation=True, show=True)
¶
Display the magnetic field components (Bx, By, Bz) and the 3D model in a multi-column layout.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
backend
|
str
|
The backend for rendering the simulation. Defaults to "plotly". |
'plotly'
|
animation
|
bool
|
Whether to animate the simulation. Defaults to True. |
True
|
show
|
bool
|
Whether to display the plot immediately. Defaults to True. |
True
|
Returns:
Type | Description |
---|---|
plotly.graph_objects.Figure: The generated figure. |
Source code in lib/MagSim.py
stream_plot(plane='XY', plane_limits=(-0.05, 0.05), resolution=100, timestep=0, save_path=None, show=True)
¶
Generate and optionally save a magnetic field stream plot for a specified plane at a specific timestep.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plane
|
str
|
Plane to generate the plot ('XY', 'XZ', or 'YZ'). Defaults to 'XY'. |
'XY'
|
plane_limits
|
tuple
|
Range of the plane axes. Defaults to (-0.05, 0.05). |
(-0.05, 0.05)
|
resolution
|
int
|
Grid resolution for the plot. Defaults to 100. |
100
|
timestep
|
int
|
Timestep to plot. Set to -1 for the last timestep. Defaults to 0. |
0
|
save_path
|
str
|
Path to save the plot. Defaults to None. |
None
|
show
|
bool
|
Whether to display the plot. Defaults to True. |
True
|
Raises:
Type | Description |
---|---|
ValueError
|
If the timestep or plane is out of range. |
Source code in lib/MagSim.py
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
|
save_b_field(filepath, sensor_index=0)
¶
Save the magnetic field (B_field) data to a CSV file with x path positions in the first column.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filepath
|
str
|
Path to save the CSV file. |
required |
sensor_index
|
int
|
Index of the sensor to get magnetic field data for. Defaults to 0. |
0
|
Raises:
Type | Description |
---|---|
IndexError
|
If the sensor_index is out of range. |