184_notes:b_sup_comp

This is an old revision of the document!


In the previous page of notes, we talked about how you can use superposition to calculate the magnetic field from a current rather than thinking about each individual moving charge. We ended up with an equation for the magnetic field where

$$\vec{B}_{tot}= \int \frac{\mu_0}{4 \pi}\frac{I \cdot d\vec{l}\times \hat{r}}{r^2}$$

This equation tells us that if we split a line of current ($I$) into small chunks of length ($d\vec{l}$), we can calculate the magnetic field at an observation point from that chunk of length (using the $\vec{r}$). The integral then allows us to add the magnetic field from each little chunk to find the net magnetic field at the observation point.

While calculating the integral will give you an exact value for the magnetic field, it is possible to end up with an integral that is difficult or impossible to solve. Instead we can use the fact that the magnetic field obeys the principle of superposition to define a powerful algorithm for computing the magnetic field at any given location from any shape of current/wire. This is very similar to what we did with the electric field from a line before. In these notes, you will read about how you can structure code to calculate the magnetic field from any shape of current-carrying wire.

As we said before, the principle of superposition states that the magnetic field at any given location in space is determined by vector sum of the magnetic field due to the current in each part of wire.

$$\vec{B}_{net} = \sum \vec{B}_i = \vec{B}_1 + \vec{B}_2 + \vec{B}_3 + \dots$$

where $\vec{B}_1$ would be the magnetic field from one piece of the wire, $\vec{B}_2$ would be the magnetic field from a second piece of the wire, and so on. This idea of adding together the magnetic field from each chunk of the wire will form the basis of what we want the computer to calculate for us.

For most real-world situations, the magnetic field integral cannot be solved analytically. That is, you could most likely write down the integral, but it cannot be computed because there's no anti-derivative for the function that you would be trying to integrate. So we have to think of another approach – one that makes use of the principle of superposition, which we know the electric field obeys.

Let's think through the process for computing the magnetic field due to the current in any kind of wire:

  1. Split the total length of the wire into small chunks of length (this is the equivalent of setting the $d\vec{l}$)
  2. Compute the magnetic field due to that chunk at the observation location
  3. Write down or otherwise keep track of that value
  4. Move to the another chunk of the wire
  5. Compute the magnetic field due to the new chunk at the observation location
  6. Add that new value to the old value from steps 3 and 4
  7. Repeat steps 5-7 for another chunk; and continue repeating until you've done this for all chunks of the wire

These somewhat monotonous steps will give us an approximate value for the magnetic field at the point of interest. The smaller the chunks, the better the approximation. You can probably see why setting up a computer to do this makes a lot of sense. Computers are really good at doing the same calculation over and over again!

So if we want to compute the magnetic field at a given location due to any length/shape of wire, the algorithm is just splitting the wire into chunks, computing the magnetic field of each chunk, and adding all the contributions together. This is a form of numerical integration, which is a powerful technique in computational science. As a tool for thinking through these computational algorithms, we will sometimes write out the steps we want the computer to take in plain words rather than code - this is called pseudocode. The pseudocode for the magnetic field algorithm above is the following:

Choose an observation location (or locations)
Choose size of chunks
Choose starting chunk
Set net magnetic field to zero

For all the chunks in the current-carrying wire:
   
   Determine vector distance between chunk and observation location
   Compute magnetic field due to that chunk
   Add contribution of chunk to net magnetic field

You can also use pseudocode (and may have already) to help you plan and understand the code you are writing.

  • 184_notes/b_sup_comp.1520363579.txt.gz
  • Last modified: 2018/03/06 19:12
  • by dmcpadden