Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using the Matlab program developed in Preparation Problem 5, compute the voltage across, the current through, and the power absorbed by a resistor Rx connected
Using the Matlab program developed in Preparation Problem 5, compute the voltage across, the current through, and the power absorbed by a resistor Rx connected across terminals a-b of Figure 3 (Using the Thevenin equivalent circuit model) for Rx = 0, 100, 200, 500, 800, 1000, 2500, 5000, and 10000 .
The MATLAB program is in the given picture. I'm just not sure how to change the Rx values.
4, 10-3 1000 1100 1200 1300 1400 1500 1600 1700 1800 1900 2000 Rth= 1500; Vth = 10; Rx = 1000:5:2000; Ix = Vth./(Rth+Rx);%current trough Rx Vx = Ix. *Rx;%Voltage across Rx Px = Ix. *Vx;%Power delivered to Px subplot(3,1,1); plot(Rx, Ix);%Plotting Ix vs Rx subplot(3,1,2); plot(Rx,Vx);%Plotting Vx vs Rx subplot(3,1,3); plot(Rx,Px);%Plotting Px vs Rx 1000 1100 1200 1300 1400 1500 1600 1700 1800 1900 2000 0.0166 0.0164 0.0162 0.016 1000 1100 1200 1300 1400 1500 1600 1700 1800 1900 2000
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started