SlideShare ist ein Scribd-Unternehmen logo
1 von 17
DIFFERENTIAL RELAY WITH AUTO
TRIP TECHNIC
Project guid :Prof S.M.Wali
INTRODUCTION
 The relays used in power system protection are of different
types. Among them differential relay is very commonly used
relay for protecting transformer and generators from localised
faults.
Differential relays are very sensitive to the faults occurred
within the zone of protection but they are least sensitive to the
faults that occur outside the protected zone. Most of the relays
operate when any quantity exceeds beyond a predetermined
value for example over current relay operates when current
through it exceeds predetermined value. But the principle of
differential relay is somewhat different. It operates depending
upon the difference between two or more similar electrical
quantities. Using microcontroller technology we are detecting
the input and output current using differential current sense
using CT module and trip the circuit using contactor
technology.
PIN DIAGRAM OF ATMEGA328
CONTROLLER
AURDINO CONTROLLER
ARDUINO CONTROLLER :
Arduino/Genuino Uno is a microcontroller board based
on the Atmega 328 It has 14 digital input/output pins (of
which 6 can be used as PWM outputs), 6 analog inputs, a 16
MHz quartz crystal, a USB connection,
Current Transformer
A current transformer is an “instrument transformer” that is
designed to provide current in its secondary, which is
accurately proportional to the current flowing in its primary.
7805 REGULATED POWER SUPPLY
A DC POWER SUPPLY SYSTEM, WHICH MAINTAINS
CONSTANT VOLTAGE IRRESPECTIVE OF FLUCTUATIONS IN
THE MAIN SUPPLY OR VARIATION IN THE LOAD, IS KNOWN
AS REGULATED POWER SUPPLY .THE 7805 IC REFERRED TO
FIXED POSITIVE VOLTAGE REGULATOR, WHICH PROVIDES
FIXED VOLTAGE 5 VOLTS. THE 7805 REGULATOR IS KNOWN
AS FIXED VOLTAGE REGULATOR. FIXED –VOLTAGE
REGULATOR DESIGN HAS BEEN GREATLY SIMPLIFIED BY THE
INTRODUCTION OF 3-TERMINAL REGULATOR ICS SUCH AS
THE 78XX SERIES OF POSITIVE REGULATORS AND THE
79XXX SERIES OF NEGATIVE REGULATORS, WHICH
INCORPORATE FEATURES SUCH AS BUILT-IN FOLD BACK
CURRENT LIMITING AND THERMAL PROTECTION, ETC.
APPLICATIONS:
POWER SYSTEM PROTECTION DETECTION OF ENERGY
TAPPING WITH I/P AND O/P METER DIFFERENTIAL CURRENT
TECHNIQUE AND POWER THEFT PROTECTION
PROTECTION OF TRANSMISSION LINE FAULTS
PROTECTION OF T C
ADVANTAGES:
NO MANPOWER REQUIRED
MORE ACCURACY
EFFECTIVE POWER THEFT CONTROL
DISADVANTAGES
*EXISTING METERS REQUIRED TO SET FOR THE NEW
TECHNOLOGY IS LITTLE DIFFICULT TASK.
*LIMITED OUTPUTS LINIER REGULATED POWER SUPPLIES
ONLY PROVIDE ONE OUTPUT VOLTAGE
*POOR EFFICIENCY THE AVERAGE LINEAR REGULATED
DEVICE ACHIVES AN EFFICIENCY BETWEEN 30% -60% DUE
TO HEAD DISSIPATION
FULL WAVE RECTIFIER:
 a full-wave rectifier is a device that has two or more diodes arranged
so that load current flows in the same direction during each half
cycle of the ac supply.
 Full-wave rectifier, center-tapped design.
Working of Full Wave Rectifier
The input AC supplied to the full wave rectifier is very high. The
step-down transformer in the rectifier circuit converts the high voltage
AC into low voltage AC. The anode of the centre tapped diodes is
connected to the transformer’s secondary winding and connected to
the load resistor. During the positive half cycle of the alternating
current, the top half of the secondary winding becomes positive while
the second half of the secondary winding becomes negative.
CONTACTOR
 Operating principle of Contactors
Symbol of contactor the operating principle of a
contactor is very simple. Whenever the electromagnetic coil is
energized, an electromagnetic field is produced. This
electromagnetic field attracts the metallic rod (armature)
towards the gap in the hollow cylindrical magnet. In
contactors with split electromagnets, the movable half of the
electromagnet is attracted towards the fixed electromagnet.
This action closes the contacts. The contacts remains closed as
long as the electromagnet remains excited. When the coil is de
energized, moving contact is pushed back to its normal
position by the spring. Contactors are designed to open and
close contacts rapidly. Moving contacts may bounce as it
rapidly makes contacts with the fixed contacts.
CONTACTOR
FEATURES OF CONTACTORS
 A contactor is a relay that is used for switching power.
 They usually handle very heavy loads like an electric
motor, lighting and heating equipments and so on.
 Though their output is used for switching very high
loads, they are controlled by a circuit with very less
power.
 According to the loads they handle, they vary in sizes
from a small device to as huge as a yard.
ARDUINO WITH LCD:
DIGITAL (~PWM)
ANALOG IN
ATMEGA328P-PU
1121
~
~
~
~
~
~
microcontrolandos.blogspot.com
TX
RX
PD0/RXD
0
PD1/TXD
1
PD2/INT0
2
PD3/INT1
3
PD4/T0/XCK
4
PD5/T1
5
PD6/AIN0
6
PD7/AIN1
7
PB0/ICP1/CLKO
8
PB1/OC1A
9
PB2/SS/OC1B
10
PB3/MOSI/OC2A
11
PB4/MISO
12
PB5/SCK
13
AREF
PC5/ADC5/SCL
A5
PC4/ADC4/SDA
A4
PC3/ADC3
A3
PC2/ADC2
A2
PC1/ADC1
A1
PC0/ADC0
A0
RESET
DUINO1
ARDUINO UNO R3
D7
14
D6
13
D5
12
D4
11
D3
10
D2
9
D1
8
D0
7
E
6
RW
5
RS
4
VSS
1
VDD
2
VEE
3
LCD1
LM016L
COMPONENTS REQUIRED:
ARDUINO BOARD
LCD
RESISTOR 1K
WORKING OF AUDINO WITH LCD:
LCD CAN BE USED IN TWO MODES- 4 BIT MODE OR 8 BIT MODE. IN 8 BIT MODE
WE REQUIRE 8 DATA PINS AND 3 CONTROL PINS WHEREAS IN 4 BIT MODE, DATA
IS SENT USING 4 DATA PINS AND 3 CONTROL PINS.
R/W PIN IS ALWAYS GROUNDED SO WE REQUIRE ONLY 6 PINS IN 4 BIT MODE,
THUS SAVING NO OF PINS.
FIRST INITIALIZE THE LIBRARY AND THEN DEFINE PINS USING THE COMMAND
LIQUIDCRYSTALLCD(RS, E, D4, D5, D6, D7), PINS ARE ASSIGNED IN THIS
ORDER.
THEN IN SETUP FUNCTION WRITE THE MESSAGE TO
DISPLAY AS LCD.PRINT(“MESSAGE”).
WE CAN PRINT MESSAGE ANYWHERE IN THE LCD BY
SELECTING COLUMN AND ROW, IT’S DONE BY WRITING
LCD.SETCURSOR(COLUMN, ROW). HOWEVER THERE IS ONE
THING TO CONSIDER, THAT’S THE NUMBER OF COLUMNS
AND ROWS START FROM ZERO. FOR EXAMPLE, TO PRINT A
MESSAGE ON 2ND ROW 1ST COLUMN, WRITE
“LCD.SETCURSOR(0,1);” BEFORE THE PRINT COMMAND.
SIMILARLY FOR 5TH COLUMN AND 3RD ROW, WE WRITE
LCD.SETCURSOR(4,2).
YOU CAN USE “LCD.WRITE()” TO SEND CHARACTERS. TO
PRINT ZERO ON 2ND COLUM 2ND ROW, TYPE
LCD.SETCURSOR(1,1); LCD.WRITE(48); WHERE 48 IS THE
DECIMAL EQUIVALENT FOR ACII ‘0’.
COMPONENTS REQUIRED FOR DIFFERENTIAL
RELAY
 Stepdown transformer (230 AC ,secondary 909,750 mA)
 Diodes (fullwave rectifier , ceter tapped rectifier
 Filter capacitor for removing ac component
 5volt regulator 7805
 Atmega328 controller
 LCD
 Reset switch
 Electromagnetic relay
THANK YOU

Weitere ähnliche Inhalte

Ähnlich wie BHH POWER PLANT ppt.pptx

Integrated circuit
Integrated circuitIntegrated circuit
Integrated circuitddsshukla
 
Grid synchronisation
Grid synchronisationGrid synchronisation
Grid synchronisationmanogna gwen
 
Prince jai nproject report
Prince jai nproject reportPrince jai nproject report
Prince jai nproject reportPrince Dungarpur
 
One Touch Electrical Appliances Control Using Microcontroller 89C51
One Touch Electrical Appliances Control Using Microcontroller 89C51One Touch Electrical Appliances Control Using Microcontroller 89C51
One Touch Electrical Appliances Control Using Microcontroller 89C51Pawan Bahuguna
 
Digital Alarm Clock (IC-TMS-8560)
Digital Alarm Clock (IC-TMS-8560)Digital Alarm Clock (IC-TMS-8560)
Digital Alarm Clock (IC-TMS-8560)Chintan Patel
 
Automatic doorbell with object detection
Automatic doorbell with object detectionAutomatic doorbell with object detection
Automatic doorbell with object detectionAnurag Alaria
 
POSITION ANALYSIS OF DIGITAL SYSTEM
POSITION ANALYSIS OF DIGITAL SYSTEMPOSITION ANALYSIS OF DIGITAL SYSTEM
POSITION ANALYSIS OF DIGITAL SYSTEMKEVSER CARPET
 
Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...EG TECHNOLOGIES
 
Analog & Digital Integrated Circuits - Material (Short Answers)
Analog & Digital Integrated Circuits -  Material (Short Answers) Analog & Digital Integrated Circuits -  Material (Short Answers)
Analog & Digital Integrated Circuits - Material (Short Answers) Mathankumar S
 
ppt of Three phase fault analysis with auto reset for temporary fault and tri...
ppt of Three phase fault analysis with auto reset for temporary fault and tri...ppt of Three phase fault analysis with auto reset for temporary fault and tri...
ppt of Three phase fault analysis with auto reset for temporary fault and tri...Vikram Rawani
 
ELECTRONIC CIRCUIT BREAKER
ELECTRONIC CIRCUIT BREAKERELECTRONIC CIRCUIT BREAKER
ELECTRONIC CIRCUIT BREAKERganeshbehera6
 
DTMF base Mobile controlled appliances control
DTMF base Mobile controlled  appliances controlDTMF base Mobile controlled  appliances control
DTMF base Mobile controlled appliances controlGopal Bardhan
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Maulik Sanchela
 
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdf
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdfb658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdf
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdfPARSHOTTAMRAJ
 
Design of embedded based three phase preventor and selector system for indust...
Design of embedded based three phase preventor and selector system for indust...Design of embedded based three phase preventor and selector system for indust...
Design of embedded based three phase preventor and selector system for indust...IAEME Publication
 

Ähnlich wie BHH POWER PLANT ppt.pptx (20)

Integrated circuit
Integrated circuitIntegrated circuit
Integrated circuit
 
Grid synchronisation
Grid synchronisationGrid synchronisation
Grid synchronisation
 
Prince jai nproject report
Prince jai nproject reportPrince jai nproject report
Prince jai nproject report
 
One Touch Electrical Appliances Control Using Microcontroller 89C51
One Touch Electrical Appliances Control Using Microcontroller 89C51One Touch Electrical Appliances Control Using Microcontroller 89C51
One Touch Electrical Appliances Control Using Microcontroller 89C51
 
Digital Alarm Clock (IC-TMS-8560)
Digital Alarm Clock (IC-TMS-8560)Digital Alarm Clock (IC-TMS-8560)
Digital Alarm Clock (IC-TMS-8560)
 
Automatic doorbell with object detection
Automatic doorbell with object detectionAutomatic doorbell with object detection
Automatic doorbell with object detection
 
POSITION ANALYSIS OF DIGITAL SYSTEM
POSITION ANALYSIS OF DIGITAL SYSTEMPOSITION ANALYSIS OF DIGITAL SYSTEM
POSITION ANALYSIS OF DIGITAL SYSTEM
 
Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...Real time parameter estimation for power quality control and intelligent prot...
Real time parameter estimation for power quality control and intelligent prot...
 
Apfc final seminar
Apfc final seminarApfc final seminar
Apfc final seminar
 
Analog & Digital Integrated Circuits - Material (Short Answers)
Analog & Digital Integrated Circuits -  Material (Short Answers) Analog & Digital Integrated Circuits -  Material (Short Answers)
Analog & Digital Integrated Circuits - Material (Short Answers)
 
Amr
AmrAmr
Amr
 
ppt of Three phase fault analysis with auto reset for temporary fault and tri...
ppt of Three phase fault analysis with auto reset for temporary fault and tri...ppt of Three phase fault analysis with auto reset for temporary fault and tri...
ppt of Three phase fault analysis with auto reset for temporary fault and tri...
 
ELECTRONIC CIRCUIT BREAKER
ELECTRONIC CIRCUIT BREAKERELECTRONIC CIRCUIT BREAKER
ELECTRONIC CIRCUIT BREAKER
 
DTMF base Mobile controlled appliances control
DTMF base Mobile controlled  appliances controlDTMF base Mobile controlled  appliances control
DTMF base Mobile controlled appliances control
 
1232d
1232d1232d
1232d
 
Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051Project report on the Digital clock using RTC and microcontroller 8051
Project report on the Digital clock using RTC and microcontroller 8051
 
Presentation
PresentationPresentation
Presentation
 
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdf
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdfb658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdf
b658014a-3762-420f-b315-8d2d0576e752-150428010626-conversion-gate02.pdf
 
embedded system
embedded system  embedded system
embedded system
 
Design of embedded based three phase preventor and selector system for indust...
Design of embedded based three phase preventor and selector system for indust...Design of embedded based three phase preventor and selector system for indust...
Design of embedded based three phase preventor and selector system for indust...
 

Kürzlich hochgeladen

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 

Kürzlich hochgeladen (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

BHH POWER PLANT ppt.pptx

  • 1. DIFFERENTIAL RELAY WITH AUTO TRIP TECHNIC Project guid :Prof S.M.Wali
  • 2. INTRODUCTION  The relays used in power system protection are of different types. Among them differential relay is very commonly used relay for protecting transformer and generators from localised faults. Differential relays are very sensitive to the faults occurred within the zone of protection but they are least sensitive to the faults that occur outside the protected zone. Most of the relays operate when any quantity exceeds beyond a predetermined value for example over current relay operates when current through it exceeds predetermined value. But the principle of differential relay is somewhat different. It operates depending upon the difference between two or more similar electrical quantities. Using microcontroller technology we are detecting the input and output current using differential current sense using CT module and trip the circuit using contactor technology.
  • 3. PIN DIAGRAM OF ATMEGA328 CONTROLLER
  • 4. AURDINO CONTROLLER ARDUINO CONTROLLER : Arduino/Genuino Uno is a microcontroller board based on the Atmega 328 It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz quartz crystal, a USB connection, Current Transformer A current transformer is an “instrument transformer” that is designed to provide current in its secondary, which is accurately proportional to the current flowing in its primary.
  • 6. A DC POWER SUPPLY SYSTEM, WHICH MAINTAINS CONSTANT VOLTAGE IRRESPECTIVE OF FLUCTUATIONS IN THE MAIN SUPPLY OR VARIATION IN THE LOAD, IS KNOWN AS REGULATED POWER SUPPLY .THE 7805 IC REFERRED TO FIXED POSITIVE VOLTAGE REGULATOR, WHICH PROVIDES FIXED VOLTAGE 5 VOLTS. THE 7805 REGULATOR IS KNOWN AS FIXED VOLTAGE REGULATOR. FIXED –VOLTAGE REGULATOR DESIGN HAS BEEN GREATLY SIMPLIFIED BY THE INTRODUCTION OF 3-TERMINAL REGULATOR ICS SUCH AS THE 78XX SERIES OF POSITIVE REGULATORS AND THE 79XXX SERIES OF NEGATIVE REGULATORS, WHICH INCORPORATE FEATURES SUCH AS BUILT-IN FOLD BACK CURRENT LIMITING AND THERMAL PROTECTION, ETC.
  • 7. APPLICATIONS: POWER SYSTEM PROTECTION DETECTION OF ENERGY TAPPING WITH I/P AND O/P METER DIFFERENTIAL CURRENT TECHNIQUE AND POWER THEFT PROTECTION PROTECTION OF TRANSMISSION LINE FAULTS PROTECTION OF T C ADVANTAGES: NO MANPOWER REQUIRED MORE ACCURACY EFFECTIVE POWER THEFT CONTROL
  • 8. DISADVANTAGES *EXISTING METERS REQUIRED TO SET FOR THE NEW TECHNOLOGY IS LITTLE DIFFICULT TASK. *LIMITED OUTPUTS LINIER REGULATED POWER SUPPLIES ONLY PROVIDE ONE OUTPUT VOLTAGE *POOR EFFICIENCY THE AVERAGE LINEAR REGULATED DEVICE ACHIVES AN EFFICIENCY BETWEEN 30% -60% DUE TO HEAD DISSIPATION
  • 9. FULL WAVE RECTIFIER:  a full-wave rectifier is a device that has two or more diodes arranged so that load current flows in the same direction during each half cycle of the ac supply.  Full-wave rectifier, center-tapped design. Working of Full Wave Rectifier The input AC supplied to the full wave rectifier is very high. The step-down transformer in the rectifier circuit converts the high voltage AC into low voltage AC. The anode of the centre tapped diodes is connected to the transformer’s secondary winding and connected to the load resistor. During the positive half cycle of the alternating current, the top half of the secondary winding becomes positive while the second half of the secondary winding becomes negative.
  • 10. CONTACTOR  Operating principle of Contactors Symbol of contactor the operating principle of a contactor is very simple. Whenever the electromagnetic coil is energized, an electromagnetic field is produced. This electromagnetic field attracts the metallic rod (armature) towards the gap in the hollow cylindrical magnet. In contactors with split electromagnets, the movable half of the electromagnet is attracted towards the fixed electromagnet. This action closes the contacts. The contacts remains closed as long as the electromagnet remains excited. When the coil is de energized, moving contact is pushed back to its normal position by the spring. Contactors are designed to open and close contacts rapidly. Moving contacts may bounce as it rapidly makes contacts with the fixed contacts.
  • 12. FEATURES OF CONTACTORS  A contactor is a relay that is used for switching power.  They usually handle very heavy loads like an electric motor, lighting and heating equipments and so on.  Though their output is used for switching very high loads, they are controlled by a circuit with very less power.  According to the loads they handle, they vary in sizes from a small device to as huge as a yard.
  • 13. ARDUINO WITH LCD: DIGITAL (~PWM) ANALOG IN ATMEGA328P-PU 1121 ~ ~ ~ ~ ~ ~ microcontrolandos.blogspot.com TX RX PD0/RXD 0 PD1/TXD 1 PD2/INT0 2 PD3/INT1 3 PD4/T0/XCK 4 PD5/T1 5 PD6/AIN0 6 PD7/AIN1 7 PB0/ICP1/CLKO 8 PB1/OC1A 9 PB2/SS/OC1B 10 PB3/MOSI/OC2A 11 PB4/MISO 12 PB5/SCK 13 AREF PC5/ADC5/SCL A5 PC4/ADC4/SDA A4 PC3/ADC3 A3 PC2/ADC2 A2 PC1/ADC1 A1 PC0/ADC0 A0 RESET DUINO1 ARDUINO UNO R3 D7 14 D6 13 D5 12 D4 11 D3 10 D2 9 D1 8 D0 7 E 6 RW 5 RS 4 VSS 1 VDD 2 VEE 3 LCD1 LM016L
  • 14. COMPONENTS REQUIRED: ARDUINO BOARD LCD RESISTOR 1K WORKING OF AUDINO WITH LCD: LCD CAN BE USED IN TWO MODES- 4 BIT MODE OR 8 BIT MODE. IN 8 BIT MODE WE REQUIRE 8 DATA PINS AND 3 CONTROL PINS WHEREAS IN 4 BIT MODE, DATA IS SENT USING 4 DATA PINS AND 3 CONTROL PINS. R/W PIN IS ALWAYS GROUNDED SO WE REQUIRE ONLY 6 PINS IN 4 BIT MODE, THUS SAVING NO OF PINS. FIRST INITIALIZE THE LIBRARY AND THEN DEFINE PINS USING THE COMMAND LIQUIDCRYSTALLCD(RS, E, D4, D5, D6, D7), PINS ARE ASSIGNED IN THIS ORDER.
  • 15. THEN IN SETUP FUNCTION WRITE THE MESSAGE TO DISPLAY AS LCD.PRINT(“MESSAGE”). WE CAN PRINT MESSAGE ANYWHERE IN THE LCD BY SELECTING COLUMN AND ROW, IT’S DONE BY WRITING LCD.SETCURSOR(COLUMN, ROW). HOWEVER THERE IS ONE THING TO CONSIDER, THAT’S THE NUMBER OF COLUMNS AND ROWS START FROM ZERO. FOR EXAMPLE, TO PRINT A MESSAGE ON 2ND ROW 1ST COLUMN, WRITE “LCD.SETCURSOR(0,1);” BEFORE THE PRINT COMMAND. SIMILARLY FOR 5TH COLUMN AND 3RD ROW, WE WRITE LCD.SETCURSOR(4,2). YOU CAN USE “LCD.WRITE()” TO SEND CHARACTERS. TO PRINT ZERO ON 2ND COLUM 2ND ROW, TYPE LCD.SETCURSOR(1,1); LCD.WRITE(48); WHERE 48 IS THE DECIMAL EQUIVALENT FOR ACII ‘0’.
  • 16. COMPONENTS REQUIRED FOR DIFFERENTIAL RELAY  Stepdown transformer (230 AC ,secondary 909,750 mA)  Diodes (fullwave rectifier , ceter tapped rectifier  Filter capacitor for removing ac component  5volt regulator 7805  Atmega328 controller  LCD  Reset switch  Electromagnetic relay