Off-axis Magnetic Field of Current loop (MATLAB?)

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 17K views
dave_western
Messages
5
Reaction score
0
I have checked the forums for similar problems and have only seen that one would use 'MATLAB' to perform this integration.

All I want to do is find the 3 components of the magnetic field at a point (x, y, z) off of the axis of a current loop (given current, radius and that the loop lies on the xy plane centered at the origin).

Can someone point me in the right direction to even get started on this problem? I have been told that this is achievable in Excel!

Any help would be awesome!
 
Physics news on Phys.org
I was hoping that would be the case, but I haven't had any luck finding a numerical approximation for a circle.

Diameter=1m
Centered on origin
Lying on x-y plane

Can anyone help?
 
I don't think you're understanding this correctly. When robphy said that you have to do numerical approximations, what he meant was that the solution to that problem cannot be solved analytically. Furthermore, you won't have a simple, closed form solution. What you will have is an infinite series.

So you have to solve the differential equation numerically and obtain an approximate answer based on where you truncate the series. It doesn't mean that you find a "numerical approximation for a circle".

Please refer to Jackson's classic text on this where this example is illustrated using Green's function technique.

Zz.
 
i use simple code written in fortran for calculating magnetic fields in the space due to any shaped current carrying loop,,,,,just give the input file with geometry of the loop as a summation of straight and arcs and ask the magnetic field in the space in RZT or XYZ system,,,that's it...i use to calculate the fields due to PF and TF coil system in a tokamak
 
This was posted years ago, but incase someone else is searching through this (as I was), you can use Matlab quite easily to calculate this.

You can use the equations found here:

http://www.netdenizen.com/emagnet/offaxis/iloopoffaxis.htm

They are simple equations which you just plug in the values for the variables. The only confusing thing is the complete elliptic integrals which Matlab can also calculate for you.

Use the Matlab function [K,E] = ellipke(k^2) to calculate the complete elliptic integrals of the first and second kind, E(k) and K(k).

Remember to give k^2 as the argument in Matlab function. If you're confused type "help ellipke" in the Matlab command line.