Assuming the given AC circuit has reached steady state, determine the power dissipated on the resistor (in Watts) if its resistance is R = 1 Ω , and the following RMS voltage values are known: E = 5 V , U 1 = 8 V , and U 2 = 5 V .
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.
The unknown impedances are as follows:
Z L = 0 + j X L Z C = 0 − j X C
Determine X L and X C such that U 1 has a magnitude of 8 and U 2 has a magnitude of 5 . I used a hill-climbing algorithm for this. Code and results are attached.
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 |
|
Wow, I didn't expect a solution like this at all! Yet, I learned something new. Thank You very much!
Log in to reply
Thanks, glad you liked it. This was the most obvious method from my perspective. It was a nice problem too.
Problem Loading...
Note Loading...
Set Loading...
Let the P.D. across the resistance be X, inductance be Y and capacitance be Z. Then X 2 + Y 2 = 8 2 =64, X 2 + Z 2 = 5 2 =25, and X 2 + ( Y − Z ) 2 = 5 2 =25. Solving we get X 2 =12. Therefore the power dissipated across the resistance is R 1 2 =12 Watts (since R=1 Ohm)