×

I am doing Prof.Nagendra Krishna Pura’s Basics electrical circuits course provided by NPTEL. In week 6, I learnt about maximum power transfer theorem.

states that – A resistive load, being connected to a DC network, receives maximum power when the load resistance is equal to the internal resistance known as (Thevenin’s equivalent resistance) of the source network as seen from the load terminals. The Maximum Power Transfer theorem is used to find the load resistance for which there would be the maximum amount of power transfer from the source to the load.

To verify this theorem, I have taken Vth as 10V and Rth as 5K ohms connected in series with the load resistance RL. Now I am varying the RL to get the maximum power

For doing this I have written a python program and plotted the graph power(mW) vs RL(Kohms)

# Maximum power transfer thorem using pyplot

from matplotlib import pyplot as plt

Rth = 5e3

Vth = 10

RL = [x*1e3 for x in range(21) if x >0]

Vth_across_RL = [res/(Rth+res) for res in RL ]

I = [Vth*1e3/(Rth+res) for res in RL]

def power(Vtholtage_list,current_list):

power_list = []

for i in range(len(Vtholtage_list)):

p = Vtholtage_list[i]*current_list[i]

power_list.append(p)

return power_list

#print(power(Vth_across_RL, I))

power_list =[x*1e3  for x in power(Vth_across_RL, I)]

RL_kohms = [x/1e3 for x in RL]

plt.plot(RL_kohms,power_list)

plt.xlabel(“Resistance in Kohms”)

plt.ylabel(“Power in mW”)

plt.show()

From the graph I observed that when the load resistance (RL) is equal to the Thevenin resistance (Rth) of the circuits then I able to draw the maximum power from the source.

Author

prathap7618@gmail.com

Related Posts

Ardiuno Projects

~ Sivaraman Arduino projects are done for the learning of embedded systems programming. In simple terms, this supports make projects that are...

Read out all

Cycle Safety light

For quite a long time (year and a half), kids in the electronics lab have been working on breadboard circuits which they...

Read out all

Ambient light sensor using a photoresistor and Arduino Uno

This project is about using a photoresistor along with an Arduino Uno board to determine the brightness of a room which is...

Read out all

Smart dustbin using Arduino

The smart dustbin is built on a microcontroller-based platform Arduino Uno board which is interfaced with the Servo motor and ultrasonic sensor....

Read out all

A Session with Mr. Thiyaragaraja Kumar

An enthusiast researcher Mr. Thiyaragaraja Kumar visited STEM land on 20th June 2022 to exhibit the projects made by him and to...

Read out all

Interfacing BO Motor with Arduino

~ Vimal, Abilash, Prabha We had learnt to interface a toy DC motor with the arduino platform. The idea is to design...

Read out all