Lecture 231 Circuits with Series and Parallel Resistors/Impedances
Lecture 232 Solving Circuits with Series and Parallel Combinations The combination of series and parallel impedances can be used to find voltages and currents in circuits. This process can often yield the fastest solutions to networks. This process may not apply to complicated networks.
Lecture 233 Series and Parallel Impedances Impedances are combined to create a simple circuit (usually one source and one impedance), from which a voltage or current can be found Once the voltage or current is found, KCL and KVL are used to work back through the network to find voltages and currents.
Lecture 234 1k 2k 1k 2k 1k V + - V1V1 + - V3V3 + - V2V2 Example: Resistor Ladder Find V 1, V 2, and V 3
Lecture 235 1k 2k 1k 2k 1k V + - V1V1 + - V3V3 + - V2V2 Example: Resistor Ladder Find an equivalent resistance for the network with V 1 across it, then find V 1 using a voltage divider.
Lecture 236 1k V + - V1V1 Example: Resistor Ladder
Lecture 237 1k 2k 1k 2k 1k V + - 5V + - V3V3 + - V2V2 Example: Resistor Ladder Find an equivalent resistance for the network with V 2 across it, then find V 2.
Lecture 238 Example: Resistor Ladder 1k 2k 1k V + - 5V + - V2V2 1k
Lecture 239 1k 2k 1k 2k 1k V + - 5V + - V3V V Example: Resistor Ladder
Lecture 2310 Example: Notch Filter Find V out Use = k 0.1 100 V 0 + - V out 70.4mH 100 F
Lecture 2311 V out 1k 0.1 100 V 0 + - j106 -j6.67 Example: Notch Filter Find the equivalent impedance of the resistor, inductor, and capacitor.
Lecture 2312 V out 1k 100 V 0 Example: Notch Filter Combine resistor and impedance.
Lecture 2313 Example: Notch Filter V out 1k V 0
Lecture 2314 Example: Notch Filter
Lecture 2315 Example: Notch Filter Find V out Use = 377 1k 0.1 100 V 0 + - V out 70.4mH 100 F
Lecture 2316 Example: Notch Filter V out = 1.23V
Lecture 2317 Frequency Response
Lecture 2318 Using MATLAB to Solve Circuits
Lecture 2319 MATLAB MATLAB can perform computations with complex numbers. You can use it as a calculator to compute phasors and impedances for AC SS analysis. You can also use it to automate computations of frequency responses.
Lecture 2320 Using MATLAB Entering a complex number: >> 1+2j ans = i Multiplying complex numbers: >> (1+2j)*(3+4j) ans = i
Lecture 2321 Example: Notch Filter Find V out Use = k 0.1 100 V 0 + - V out 70.4mH 100 F
Lecture 2322 Compute Impedances >> omega = 377 omega = 377 >> xl = j*omega*70.4e-3 xl = i >> xc = 1/(j*omega*100e-6) xc = i
Lecture 2323 Equivalent Capacitor/Inductor Impedance >> zeq = (0.1+xl)*xc /(0.1+xl+xc) zeq = e e+03i
Lecture 2324 Voltage Divider >> vin = 10 vin = 10 >> vout = vin*1e3 /(100+zeq+1e3) vout = i
Lecture 2325 Magnitude and Angle >> abs(vout) ans = >> angle(vout) ans = >> angle(vout)*180/pi ans =