Induced Voltage

x 2 4 t 2 + y 2 9 t = 1 \large{\frac{x^{2}}{4t^{2}} + \frac{y^{2}}{9t}} = 1

A conducting loop in the x y xy plane takes the form of the curve given above. The parameter t t denotes time. Suppose that there is a uniform magnetic flux density B B which is normal to the x y xy plane.

If the magnitude of the voltage induced in the loop at time t = 9 t = 9 can be expressed as α π B \alpha \pi B , determine the value of α \alpha .

Details and Assumptions: Neglect units and assume that all physical expressions take their simplest forms.


The answer is 27.

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.

1 solution

Steven Chase
Sep 22, 2016

The curve is an ellipse with semi-axes of length 2 t 2t and 3 t 3\sqrt{t} .
The area of the ellipse is therefore 6 π t 3 2 6\pi t^{\frac{3}{2}} .
The flux linkage is 6 π B t 3 2 6\pi B t^{\frac{3}{2}} , and the time derivative of the flux linkage (the voltage) is 9 π B t 9 \pi B \sqrt{t} .
At t = 9 t = 9 , the voltage is therefore 27 π B 27\pi B .


this question is quite over-rated in my opinion

Rishi Sharma - 4 years, 7 months ago

Log in to reply

In what sense?

Steven Chase - 4 years, 7 months ago

Log in to reply

It is more like a formula based question. find the area and just plug it in the definition and voila you have the answer. I guess it should be a level 3 problem .

Rishi Sharma - 4 years, 7 months ago

Log in to reply

@Rishi Sharma Yeah, I think you're right

Steven Chase - 4 years, 7 months ago

Log in to reply

@Steven Chase right level 3 problem

rajdeep brahma - 2 years, 11 months ago

@Steven Chase Sir how to solve the below integral using python x = 1 x = 3 y = 5 y = 7 z = 11 z = 19 x 2 y 3 z 5 d z d y d x \int_{x=1}^{x=3} \int_{y=5}^{y=7} \int_{z=11}^{z=19} x^{2}y^{3}z^{5} dzdydx
Hope I am not disturbing you.
Thanks in advance.

NJ STAR - 10 months, 3 weeks ago

Log in to reply

Hello. You can evaluate the three integrals separately and then multiply the results together.

Steven Chase - 10 months, 3 weeks ago

The code below shows how to do it by multiplying three single integrals together, and by evaluating a triple integral. Multiplying three single integrals is more efficient and accurate, but the triple integral yields an answer that is reasonably close. The difference comes from the fact that nesting loops is very computationally expensive. To get an answer of comparable accuracy, a huge amount of computation has to go into the triple integral.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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
import math

x1 = 1.0
x2 = 3.0

y1 = 5.0
y2 = 7.0

z1 = 11.0
z2 = 19.0

###############################

x = x1
dx = (x2-x1)/(10.0**6.0)

Ix = 0.0

while x <= x2:

    Ix = Ix + (x**2.0)*dx

    x = x + dx

###############################

y = y1
dy = (y2-y1)/(10.0**6.0)

Iy = 0.0

while y <= y2:

    Iy = Iy + (y**3.0)*dy

    y = y + dy

###############################

z = z1
dz = (z2-z1)/(10.0**6.0)

Iz = 0.0

while z <= z2:

    Iz = Iz + (z**5.0)*dz

    z = z + dz

###############################

dx = (x2-x1)/(400.0)
dy = (y2-y1)/(400.0)
dz = (z2-z1)/(400.0)

Ixyz = 0.0

x = x1

while x <= x2:

    y = y1

    while y <= y2:

        z = z1

        while z <= z2:

            Ixyz = Ixyz + (x**2.0)*(y**3.0)*(z**5.0)*dx*dy*dz

            z = z + dz

        y = y + dy

    x = x + dx

###############################

print (Ix*Iy*Iz)
print Ixyz

#29035914173.6
#29298573361.4

Steven Chase - 10 months, 3 weeks ago

Log in to reply

@Steven Chase Thank you so much.
I think this is explicit euler integration ,BTW can we do it with Midpoint method. ??
Which method gives more accurate answer?

By the way, in your new problem does Z B Z_{B} and Z C Z_{C} are also purely resistive ??
Thanks in advance
Hope I am not disturbing you.

NJ STAR - 10 months, 3 weeks ago

Log in to reply

@Nj Star The midpoint method is more accurate for a given time step. In general, you can use any numerical integration method you want. Accuracy is generally not a concern for me, since I run explicit Euler with very small steps and look for converging results. In the new problem, Z B Z_B and Z C Z_C are generally not purely resistive.

Steven Chase - 10 months, 3 weeks ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...