There are two circular loops of wire
Loop 1 (parallel to the y z plane):
x 1 = 1 y 1 = cos θ 1 z 1 = 2 + sin θ 1 0 ≤ θ 1 ≤ 2 π
Loop 2 (in the x y plane):
x 2 = cos θ 2 y 2 = sin θ 2 z 2 = 0 0 ≤ θ 2 ≤ 2 π
What is the mutual inductance between the two loops?
Details and Assumptions:
1)
Magnetic permeability
μ
0
=
1
2)
All quantities are in standard
S
I
units
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
@Steven Chase Nice solution upvoted.
I got lucky while solving this one, on the last try. This is because of my choice of numerical resolution and problem approach. My first approach is as follows:
r 1 = ( 1 , r cos t 1 , 2 + r sin t 1 ) r 2 = ( cos t 2 , sin t 2 , 0 ) d r 2 = ( − sin t 2 , cos t 2 , 0 ) d t 2
Magnetic field due to an elementary arc of loop 2 at a point in the plane of loop 1:
d B = 4 π 1 ∣ r 1 − r 2 ∣ 3 d r 2 × ( r 1 − r 2 )
The elementary flux through loop 1:
d Φ = d B ⋅ ( r d r d t 1 i ^ ) = f ( r , t 1 , t 2 ) d t 1 d t 2 d r
Φ = ∫ 0 1 ∫ 0 2 π ∫ 0 2 π f ( r , t 1 , t 2 ) d t 1 d t 2 d r ≈ 0 . 0 7 6 3
Simplifications left out. Numerical resolution: d r = 0 . 0 0 1 ; d t 1 = d t 2 = π / 1 0 0 .
The approach that actually worked was:
r 1 = ( 1 , cos t 1 , 2 + sin t 1 ) r 2 = ( r cos t 2 , r sin t 2 , 0 ) d r 1 = ( 0 , − sin t 1 , cos t 1 ) d t 1
Magnetic field due to an elementary arc of loop 1 at a point in the plane of loop 2:
d B = 4 π 1 ∣ r 2 − r 1 ∣ 3 d r 1 × ( r 2 − r 1 )
The elementary flux through loop 2:
d Φ = d B ⋅ ( r d r d t 2 i ^ ) = f ( r , t 1 , t 2 ) d t 1 d t 2 d r
Φ = ∫ 0 1 ∫ 0 2 π ∫ 0 2 π f ( r , t 1 , t 2 ) d t 1 d t 2 d r ≈ 0 . 0 7 4 1
Simplifications left out. Numerical resolution: d r = 0 . 0 0 1 ; d t 1 = d t 2 = π / 1 0 0 .
@Karan Chatrath Nice solution. Upvoted
Problem Loading...
Note Loading...
Set Loading...
Essentially, the idea here is to pass one unit of current through one of the coils, and measure the resulting flux in the other coil. There are two ways to solve this, as indicated below:
ϕ = ∬ S B ⋅ d S = ∬ S ( ∇ × A ) ⋅ d S = ∮ C A ⋅ d ℓ
An integral is required to determine the field B or A from the source. And then integrating over a surface requires two additional integrals, whereas integrating over a boundary curve requires one additional integral. So the left side ultimately requires a triple integral, and the right side requires a double integral. The surfaces and boundary curves are all very well defined in this problem, so that isn't much of a concern. When integrating numerically, for a given amount of computation, you get a better result using the magnetic vector potential method. @Karan Chatrath has shown the triple integral method, and has remarked on the numerical difficulties. For reference, to get an answer close to that of the vector potential method, I divided each spatial parameter into 1 0 0 0 pieces, resulting in a billion loop iterations. Of course, it took forever to run. By contrast, with the vector potential method, I got good results with "just" 2 5 million loop iterations. By "good results", I mean that the answers were all roughly equal with 2 5 million, 1 0 0 million, and 4 0 0 million loop iterations.