Lab 3 Thevenin Equiv
.docx
keyboard_arrow_up
School
University of Utah *
*We aren’t endorsed by this school
Course
2200
Subject
Electrical Engineering
Date
Dec 6, 2023
Type
docx
Pages
11
Uploaded by KidFlag12227
ECE 2200/2210
Lab 3: Thévenin Equivalent Circuits and Digital
to Analog Converters
Possible Points:100
Lab Equipment List:
Breadboard and wires
Resistors (560, 1k, 10k, and a few resistors of your choice)
Triple Output DC Power Supply
Digital Multimeter (DMM)
Wires with connectors on one end and alligator clips on the other
In addition, checking out a portable multimeter from the stockroom can be useful.
Partnering:
Everyone must create their own lab report (fill out this document).
Everyone must build their own circuits, but you may use the same measurement equipment.
Discussions are encouraged, and you are also encouraged to answer each other’s questions!
Seek out the TA if you get stuck or need help.
Lab Procedures:
Welcome to Lab 3! This lab is designed to help you understand some of the circuit analysis
techniques we’ve discussed in class in greater detail. Part 1: Thévenin and Norton Equivalent Circuits (53pts)
Thévenin equivalent circuits are a very helpful tool for modeling complicated power supply
systems in a more simple manner, simplifying circuit analysis, and generalizing system behavior.
In this part of the lab, we will first be running some LTSpice simulations to measure the voltage
and current across three different load resistors that are attached to a larger circuit. We will then
use those results to determine the Thévenin and Norton equivalent circuits. Finally, we’ll then
build the Thévenin equivalent circuit on a breadboard and take measurements using the same three
load resistance values to see how well the physical Thévenin equivalent circuit compares to the
simulation of the more complicated circuit. 1.
LTSpice should already be installed on the CADE lab computers. As a result, it will be
easiest to complete this section by first logging into one of the CADE lab computers. 2.
Download the zip file of schematics from the Canvas page for the lab and unzip it
. There
should be three files in the same directory when you unzip it. 3.
Open the provided Lab3_Equivelent.asc file in LTSpice (this is the easiest way to open the
LTSpice program, rather than trying to find the program itself on the computer). This file
contains a single load resistor as well as a block that represents the circuit for which we
will find the Thévenin and Norton equivalent circuits. 1
UNIVERSITY OF UTAH DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING
50 S. Central Campus Dr |
Salt Lake City, UT 84112-9206 | Phone: (801) 581-6941 |
Fax: (801) 581-5281 | www.ece.utah.edu
ECE 2200/2210
4.
For this step, you will be running the LTSpice simulation three times (one simulation for
each different load resistor). Choose three resistors that you will test as loads to the circuit
you just opened in LTSpice. These resistors should have values of 100 ohm, 1 Meg, and
one more resistor with value in between. Also, since you’ll be testing these resistors later
in measurements, make sure the resistors are values that exist in your lab kit. 5.
After choosing your three resistor values, to prepare the simulation, begin by labeling the
top node coming from the A port of X1. To do so, click on the “Label Net” tool from the
toolbar (or press F4): In the empty field, write Va. Place the label so that the box below the letters intersects with
the top node coming from A and going into R
L
.
6.
Next, add the first resistor value. To do this, move your cursor over the R
L
’s schematic
symbol (not its label). Your cursor should turn into a pointing finger. Right click on the
symbol and enter your first value for R
L
in the Resistance [
Ω
] field. Note that no units
are required in LTSpice. However, do place the standard prefix, i.e. k for kilo- and Meg for
mega-, after the number if needed. Don’t worry about Tolerance or Power Rating. 7.
After adding your first value for R
L
, click the run button from the toolbar: A small window will appear providing the voltage and current values in the circuit. Record
this information in the “Resistor 1” column of Table 1. Here you should include units.
8.
Repeat for your other two resistor values and fill in the “Resistor 2” and “Resistor 3”
columns of Table 1. Make sure one of the values is Thévenin resistance (2pts/unit = 16pts)
R value
Resistor 1 =
__ Ω
Resistor 2 =
__ Ω
Resistor 3 =
__ Ω
Open
Circuit
Load
Short
Circuit
Load
Voltage
0 V
Current
0 A
Table 1
9.
Find what the voltage would be when no load resistor is present (for this, you can set R
L
=
∞
in LTSpice) For this, choose a significantly high value i.e. 5000Kohm. Record this
value in Table 1 (i.e. fill in the missing value in the “Open Circuit Load” column).
10. Find what the current would be when the load is a short circuit (a wire, for this, you can set
R
L
= 0 in LTSpice). Show your work below. Record this value in Table 1 (i.e. fill in the
missing value in the “Short Circuit Load” column). (Caution, finding the short circuit
current without knowing what the internals of a circuit are is generally a bad idea, but
thankfully, we know that nothing will physically burn up in a simulation.)
2
UNIVERSITY OF UTAH DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING
50 S. Central Campus Dr |
Salt Lake City, UT 84112-9206 | Phone: (801) 581-6941 |
Fax: (801) 581-5281 | www.ece.utah.edu
ECE 2200/2210
11. Now that you have filled in Table 1, we will create a plot of the Table 1 voltages (y-axis)
vs. the Table 1 resistances (x-axis) using MATLAB. Open MATLAB and create a new .m
file. (The CADE lab computers have MATLAB installed.)
12. At the beginning of your .m file, paste and fill in the following (anything that comes after a
% is a comment and is not read by MATLAB when running the program):
% Fill in your name here
% Date
% Short description of what this code does
clear; % good to clear all variables before starting
close all
; % helpful to close old figures so we know % which plot is our new one
13. At the end of the MATLAB file you just created, add the following. Also fill in the
resistances, voltages, and currents from Table 1:
% Create an array that will hold your resistor values
% separate the resistor values with a comma (e.g. [100, 200, 300])
resistance = [ ]; % ohms
% Create an array that will hold your load voltage values
voltage = [ ]; % Volts
% Create an array that will hold your load current values
current = [ ]; % mA
14. At the end of the same MATLAB file, let’s create the voltage plot. Paste in the following:
% Plot the voltages vs. resistances
yyaxis left
;
plot(resistance, voltage,
'LineWidth'
,2); xlabel(
'Resistance (ohms)'
, 'FontSize'
,14); % label the x-axis
ylabel(
'Voltage (V)'
, 'FontSize'
, 14); % label the left-side y-axis
15. Try running your program. What do you see? If you’ve chosen load resistor values
ranging from ~100 and ~1 Meg as requested, the results for the large resistor values
probably dominate your plot (more than the results for the smaller resistor values). So, try
instead to plot the (x-axis) resistor values on a log scale so you can see more of what is
going on across all resistor values. Replace:
plot(resistance, voltage,
'LineWidth'
,2); with: semilogx(resistance, voltage,
'LineWidth'
,2); 3
UNIVERSITY OF UTAH DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING
50 S. Central Campus Dr |
Salt Lake City, UT 84112-9206 | Phone: (801) 581-6941 |
Fax: (801) 581-5281 | www.ece.utah.edu
ECE 2200/2210
If you ever want to know what a MATLAB command is doing, you can type “help
semilogx” (for example) at the command line.
16. Rerun your program and see how the plot changed. Hopefully you can see more of what is
going on.
17. Now let’s add the currents to the plot. Paste in the following at the end of your .m file:
% add this so the next plot will show up in the same figure
hold on
% Plot the currents vs. resistances
yyaxis right
;
semilogx(resistance, current,
'LineWidth'
,2);
% label the right-side y-axis
ylabel(
'Current (mA)'
, 'FontSize'
, 14); 18. And, we’ll add a title and a legend to the plot. Paste in the following at the end of your
code:
% add a title for your plot
title(
'Load Voltage / Current vs Load Resistance'
, 'FontSize'
,14);
% add a legend
legend(
'Voltage (V)'
, 'Current (mA)'
, 'FontSize'
, 14);
hold of
19. Run your program and see how the results look. Is this what you expect?
20. Lastly, let’s create a separate plot of the power dissipated by the load (as Fig. 2). Paste the
following at the end of your .m file and run the program one last time. % Let's create a separate plot of the power dissipated by the load
figure (2);
% multiply the voltage * current to find the power % dissipated by the load
% don't forget to convert the current to mA % first before multiplying!
power = current.*0.001.*voltage;
% plot the results
semilogx(resistance,power, 'LineWidth'
, 2) % add a title for your plot
title(
'Power Dissipated by the Load'
, 'FontSize'
,14);
xlabel(
'Resistance (ohms)'
, 'FontSize'
,14);
ylabel(
'Power (W)'
, 'FontSize'
, 14); % label the right-side y-axis
21. Paste Fig. 1 below. (3pts)
<put Fig. 1 from your MATLAB code here>
4
UNIVERSITY OF UTAH DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING
50 S. Central Campus Dr |
Salt Lake City, UT 84112-9206 | Phone: (801) 581-6941 |
Fax: (801) 581-5281 | www.ece.utah.edu
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Questions
4. Many electronic circuits use what is called a split or a dual power supply:
15 V
Electronic
circuit
"Ground"
15 V
Determine what a digital voltmeter would indicate if connected between the following points:
a) Red lead on Ä", black lead on ground
b) Red lead on "B", black lead on ground
c) Red lead on Ä", black lead on "B"
d) Red lead on "B", black lead on Ä"
arrow_forward
Draw the voltage tripler circuit and explain its operation. Explain the difference between voltage quadrature and tripler.
arrow_forward
There are 32 solar cells in the solar system, and each one has the qualities listed below: Voc is set at 0.75 volts, while Isc is set at 2 milliamperes. Open circuit voltage and short circuit current will be if all four cells are in series and the groups are linked in parallel.
arrow_forward
Determine the voltage at resistor R2. (assume Zener voltage is 4 volts and LED forward voltage is 2.0 Volts)
arrow_forward
Many electronic circuits use what is called a split or a dual power supply:
15 V
Electronic
dircuit
"Ground"
15 V
Determine what a digital voltmeter would indicate if connected between the following
points:
• Red lead on Ä", black lead on ground
Red lead on "B", black lead on ground
• Red lead on Ã", black lead on "B"
• Red lead on "B", black lead on A"
NOTE: in electronic systems, "ground" is often not associated with an actual earth-soil
contact. It usually only refers to a common point of reference somewhere in the circuit
used to take voltage measurements. This allows us to specify voltages at single points in
the circuit, with the implication that "ground" is the other point for the voltmeter to
connect to.
arrow_forward
just use a sample house tnx
arrow_forward
If PMMC meter have internal resistance of
1002 and full-scale range of 1mA. Assume
we wish to increase the meter range to 2A.
the value of shunt resistor will be:
OR_sh=0.00500
OR_sh= 0.00010
OR_sh=0.11111 0
arrow_forward
leaving a freevway. Current from the opposite side must travel further, weakening the potential on that side. This creates a potent
the motor in that direction, causing the motor to spin.
O Only the side where the switch is closed forms a cormplete circuit, so the motor must spin in that direction.
Answer the questions and submit the photos for questions 2 -9using the circuit from STEP 2.
D2
Yellow
R1
50 Q
R2
50 0
R3
PSB (+
5 V
100 aLW
R4
D1
100 Q
Blue
SW1
Sw2
Question 2
本
arrow_forward
Help me pls. I will upvote
arrow_forward
Analog Meter Reading
arrow_forward
This multiple choice Questions from MEASUREMENTS INSTRUMENTATION course.
arrow_forward
We want to make a resistivity measurement. How should we connect the probes of the multimeter? Drag the connector images to
the correct locations and "Not Connected" images to the rest.
SLIDE SWITCH:
LEFT- OFF
MIDDLE- DC VVOLTS
DC mA
NUMERICAL VALUE
OF VOLTS
OR MA
OR OHMS
DISPLAYED HERE
0.00
OHMS
FIGHT - AC VOLTS
AC mA
OFFOO AC
DC-n
DM 8010
MOVE ROTARY
SWITCH TO
THIS AREA TO
READ OHMS
(SELECT RANGE)
1000
200
20
MOVE ROTARY
SWITCH TO
THIS AREA TO
READ VOLTS
(SELECT RANGE)
20
200
2K
20K.
200
200K
2M
20M
MOVE ROTARY
SWITCH TO
THIS AREA TO
READ mA
(SELECT RANGE)
*20u
200u
200m 20m
10A
mA
COM
PROBES
Windows'u Etkinleştir
Windows'u etkinleştirmek için Ayarlar'a gidin
NOT CONNECTED
arrow_forward
Need with proper explanation. Thank you
arrow_forward
Solev this question it has 4 parts confusing me alot
and X=167 and in part c there's a bit tricky with X by providing a condition so please check
arrow_forward
Make an essay about "What is Voltage Multiplier"
arrow_forward
Determine the voltage at resistor R2. (assume Zener voltage is 4 volts and LED forward voltage is 2.0 Volts)
arrow_forward
Please help me solve for the total resistance, and total current if:Vt = 20 VR1 = 2 ohmsR2 = 5 ohmsR3 = 7 ohmsR4 = 8 ohmsR5 = 3 ohmsR6 = 4 ohmsR7 = 9 ohmsR8 = 6 ohmsR9 = 10 ohmsR10 = 7 ohms
arrow_forward
i need the answer quickly
arrow_forward
If the measured values for resistors #1, #2 and # 3 are 552, 549 and 549 Ohms
calculate the %error (measured difference from expected value as a percentage) for
each resistor. Are they within tolerance (or specification) of manufacturer?
#1 98.4% #2 97.9% #3 97.9% Yes within specification
a.
b. #1 1.6% #2 2.1% #3 2.1% Yes within specification
#1 1.6% #2 2.1% #3 2.1% No outside specification
Ос.
Use Ohm's Law to calculate the equivalent resistance of R12, R23 and R123 (as
specified in the lab manual) using measured resistances #1 552 Ohms, #2 549
Ohms, #3 549 Ohms
R,
R2
R,=
R12
R23
arrow_forward
15 V
Electronic
circuit
"Ground"
15 V
B
Determine what a digital voltmeter would indicate if connected between the following points:
a) Red lead on Ä", black lead on ground
b) Red lead on "B", black lead on ground
c) Red lead on Ä", black lead on "B"
d) Red lead on “B", black lead on Ä"
arrow_forward
Using the diagram below and the component photos from page 4, draw the realistic experimental setup you will use in this lab. Draw the actual apparatus with wires and other electrical elements, connected as they will be on your lab table. Be sure to label components, junctions, and distances as appropriate.
arrow_forward
Please help me solve for the total resistance, total current, and individual voltage if:
VT = 30 VR1 = 7 ohmsR2 = 10 ohmsR3 = 6 ohmsR4 = 4 ohmsR5 = 8 ohmsR6 = 9 ohmsR7 = 5 ohmsR8 = 12 ohmsR9 = 3 ohmsR10 = 8 ohms
arrow_forward
BOX THE ANSWERS. ANSWER QUICKLY
arrow_forward
A) Determine all the electrical parameters of the circuit. B) with the results obtained, indicate the region of operation.
arrow_forward
5
Choose the reason for a huge Loading effect, during the current measurement using an ammeter.
a.
Zero ammeter resistance
b.
Large ammeter resistance
c.
None of the given options
d.
Small ammeter resistance
arrow_forward
R1 of 90 kilo ohm and R2 of 10 kilo ohm are in series across a 43-volt source. A) Draw the schematic diagram. B) What is the voltage drop at R2?
arrow_forward
can you explain how you got the equivalent resistnace for the paralle combination?
arrow_forward
What is the minimum wire size for a 30 amp circuit?
arrow_forward
How open circuit test can be performed and which type of losses can be found using this test
arrow_forward
Figure shows a chopper. The device S1 is the main switching device. S2 is the auxiliary
commutation device. S1 is rated for 400V, 60A. S2 is rated for 400V, 30 A. The load current is 20 A.
The main device operates with a duty ratio of 0.5. The peak current through S1 is
$1
000
200V
2µF = $2
voo
200µH
D
20A
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you
Introductory Circuit Analysis (13th Edition)
Electrical Engineering
ISBN:9780133923605
Author:Robert L. Boylestad
Publisher:PEARSON
Delmar's Standard Textbook Of Electricity
Electrical Engineering
ISBN:9781337900348
Author:Stephen L. Herman
Publisher:Cengage Learning
Programmable Logic Controllers
Electrical Engineering
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Fundamentals of Electric Circuits
Electrical Engineering
ISBN:9780078028229
Author:Charles K Alexander, Matthew Sadiku
Publisher:McGraw-Hill Education
Electric Circuits. (11th Edition)
Electrical Engineering
ISBN:9780134746968
Author:James W. Nilsson, Susan Riedel
Publisher:PEARSON
Engineering Electromagnetics
Electrical Engineering
ISBN:9780078028151
Author:Hayt, William H. (william Hart), Jr, BUCK, John A.
Publisher:Mcgraw-hill Education,
Related Questions
- 4. Many electronic circuits use what is called a split or a dual power supply: 15 V Electronic circuit "Ground" 15 V Determine what a digital voltmeter would indicate if connected between the following points: a) Red lead on Ä", black lead on ground b) Red lead on "B", black lead on ground c) Red lead on Ä", black lead on "B" d) Red lead on "B", black lead on Ä"arrow_forwardDraw the voltage tripler circuit and explain its operation. Explain the difference between voltage quadrature and tripler.arrow_forwardThere are 32 solar cells in the solar system, and each one has the qualities listed below: Voc is set at 0.75 volts, while Isc is set at 2 milliamperes. Open circuit voltage and short circuit current will be if all four cells are in series and the groups are linked in parallel.arrow_forward
- Determine the voltage at resistor R2. (assume Zener voltage is 4 volts and LED forward voltage is 2.0 Volts)arrow_forwardMany electronic circuits use what is called a split or a dual power supply: 15 V Electronic dircuit "Ground" 15 V Determine what a digital voltmeter would indicate if connected between the following points: • Red lead on Ä", black lead on ground Red lead on "B", black lead on ground • Red lead on Ã", black lead on "B" • Red lead on "B", black lead on A" NOTE: in electronic systems, "ground" is often not associated with an actual earth-soil contact. It usually only refers to a common point of reference somewhere in the circuit used to take voltage measurements. This allows us to specify voltages at single points in the circuit, with the implication that "ground" is the other point for the voltmeter to connect to.arrow_forwardjust use a sample house tnxarrow_forward
- If PMMC meter have internal resistance of 1002 and full-scale range of 1mA. Assume we wish to increase the meter range to 2A. the value of shunt resistor will be: OR_sh=0.00500 OR_sh= 0.00010 OR_sh=0.11111 0arrow_forwardleaving a freevway. Current from the opposite side must travel further, weakening the potential on that side. This creates a potent the motor in that direction, causing the motor to spin. O Only the side where the switch is closed forms a cormplete circuit, so the motor must spin in that direction. Answer the questions and submit the photos for questions 2 -9using the circuit from STEP 2. D2 Yellow R1 50 Q R2 50 0 R3 PSB (+ 5 V 100 aLW R4 D1 100 Q Blue SW1 Sw2 Question 2 本arrow_forwardHelp me pls. I will upvotearrow_forward
- Analog Meter Readingarrow_forwardThis multiple choice Questions from MEASUREMENTS INSTRUMENTATION course.arrow_forwardWe want to make a resistivity measurement. How should we connect the probes of the multimeter? Drag the connector images to the correct locations and "Not Connected" images to the rest. SLIDE SWITCH: LEFT- OFF MIDDLE- DC VVOLTS DC mA NUMERICAL VALUE OF VOLTS OR MA OR OHMS DISPLAYED HERE 0.00 OHMS FIGHT - AC VOLTS AC mA OFFOO AC DC-n DM 8010 MOVE ROTARY SWITCH TO THIS AREA TO READ OHMS (SELECT RANGE) 1000 200 20 MOVE ROTARY SWITCH TO THIS AREA TO READ VOLTS (SELECT RANGE) 20 200 2K 20K. 200 200K 2M 20M MOVE ROTARY SWITCH TO THIS AREA TO READ mA (SELECT RANGE) *20u 200u 200m 20m 10A mA COM PROBES Windows'u Etkinleştir Windows'u etkinleştirmek için Ayarlar'a gidin NOT CONNECTEDarrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Introductory Circuit Analysis (13th Edition)Electrical EngineeringISBN:9780133923605Author:Robert L. BoylestadPublisher:PEARSONDelmar's Standard Textbook Of ElectricityElectrical EngineeringISBN:9781337900348Author:Stephen L. HermanPublisher:Cengage LearningProgrammable Logic ControllersElectrical EngineeringISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
- Fundamentals of Electric CircuitsElectrical EngineeringISBN:9780078028229Author:Charles K Alexander, Matthew SadikuPublisher:McGraw-Hill EducationElectric Circuits. (11th Edition)Electrical EngineeringISBN:9780134746968Author:James W. Nilsson, Susan RiedelPublisher:PEARSONEngineering ElectromagneticsElectrical EngineeringISBN:9780078028151Author:Hayt, William H. (william Hart), Jr, BUCK, John A.Publisher:Mcgraw-hill Education,
Introductory Circuit Analysis (13th Edition)
Electrical Engineering
ISBN:9780133923605
Author:Robert L. Boylestad
Publisher:PEARSON
Delmar's Standard Textbook Of Electricity
Electrical Engineering
ISBN:9781337900348
Author:Stephen L. Herman
Publisher:Cengage Learning
Programmable Logic Controllers
Electrical Engineering
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Fundamentals of Electric Circuits
Electrical Engineering
ISBN:9780078028229
Author:Charles K Alexander, Matthew Sadiku
Publisher:McGraw-Hill Education
Electric Circuits. (11th Edition)
Electrical Engineering
ISBN:9780134746968
Author:James W. Nilsson, Susan Riedel
Publisher:PEARSON
Engineering Electromagnetics
Electrical Engineering
ISBN:9780078028151
Author:Hayt, William H. (william Hart), Jr, BUCK, John A.
Publisher:Mcgraw-hill Education,