SlideShare a Scribd company logo
1 of 24
ABHISHEK YADAV
DILIP KUMAR
PANKAJ YADAV
SACHI KUMAR
SUMIT SAHU
19EED26
19EED66
19EED50
19EE22
19EED61
8/25/2009 1
GUIDED BY
RISHABH UPADHYAY
SHIVAM SRIVASTAV
Introduction To Microgrid
2
⚫What is Microgrid?
⚫It isa small-scale powersupply network that is designed
to provide power fora small community
.
⚫Itenables local powergeneration for local loads.
⚫Itcomprises of various small powergenerating sources
that makes it highly flexibleand efficient.
Introduction To Microgrid
3
⚫What is Microgrid?
⚫It isconnected to both the local generating unitsand the
utilitygrid thus preventing poweroutages.
⚫Excess powercan be sold to the utilitygrid.
⚫Sizeof the Microgrid may range from housing estate to
municipal regions.
Introduction To Microgrid
⚫Microgrid Components
⚫Distributed Generation
⚫Loads
⚫Immediatestorage
⚫Controller
⚫Point of Common Coupling
4
8/25/2009
Typical Microgrid is shown below:
5
8/25/2009
Pomelo, Indonesia - Village microgrid
6
ARDUINO
{BLOCK DIAGRAM}
METHODOLOGY
1. MOTIVATION:
With the tremendous increase in the power consumption and with the
introduction of electric vehicles, supply of power has got far greater
attention and its interruption will bring the lives ofpeople to halt. To
overcome power cutouts, microgrids are the only solution, and the
continuousincrease in the demand of dc loads has motivated the
researchers to work on dc distribution system. This was our
motivation of working on dc microgrid for better efficiency and
reduced losses.
1.CIRCUIT DIAGRAM
3. Circuit diagram
COMPONENTS
 ARDUINO MICROCONTROLLER
 WINDMILL
 SOLAR PANNEL
 BRIDGE RECTIFIER
 RESISTORS
 CAPACITORS
 4 CHANNEL RELAY
 VOLTAGE REGULATOR
 LED
 TRANSFORMER
 LOAD
Hardware prototype
Microgrid Operating Modes
⚫Grid Connected Mode:
⚫ Utilitygrid is active.
⚫ Staticswitch is closed
⚫ All the feedersare being
supplied byutilitygrid.
12
The Need Of Microgrid
13
⚫Microgrid could be theanswer toourenergycrisis.
⚫Transmission losses gets highly reduced.
⚫Microgrid results in substantial savings and cuts
emissionswithout majorchanges to lifestyles.
⚫Provide high qualityand reliableenergy supply to
critical loads
Interconnected Microgrids
14
Interconnected Microgrids – Power Parks
⚫Practical sizeof Microgrids is limited toa few MVA.
⚫For larger loads, it is desirable to interconnect many
Microgrids to form a larger Microgrid network called
PowerParks.
⚫The advantages of this Microgrid structure insures
greaterstabilityand controllability for the Power Parks.
Environmental Aspects
15
⚫Microgrid encourages the useof the renewable energy
sources.
⚫Large land use impactsareavoided.
⚫CO2 Emissions are reduced.
Conventional Grid vs. Microgrid
16
⚫Efficiencyof conventional grid isvery low as compared
to Microgrid.
⚫Large amountof energy in the formof heat is wasted in
conventional grid.
⚫Power sources in case of Microgrid (often referred toas
Microsources) are small and are located in close
proximityto load.
Advantages & Disadvantages
17
⚫ Microgrid Advantages
⚫ A majoradvantageof a Microgrid, is itsability, during a utility
grid disturbance, to separate and isolate itself from the utility
seamlessly with little or no disruption to the loads within the
Microgrid.
⚫ In peak load periods it prevents utilitygrid failure by
reducing the load on thegrid.
⚫ Significantenvironmental benefits made possible by the use
of low orzeroemission generators.
Advantages & Disadvantages
18
⚫Microgrid Advantages
⚫The useof both electricityand heat permitted by the
close proximityof thegenerator to the user, thereby
increasing theoverall energy efficiency.
⚫Microgrid can act to mitigate theelectricitycosts to its
users bygenerating someorall of itselectricity needs.
Advantages & Disadvantages
19
⚫Microgrid Disadvantages
⚫ Voltage, frequency and power quality are three main
parameters that must be considered and controlled to
acceptablestandardswhilst the powerand energy balance is
maintained.
⚫ Electrical energy needs to be stored in battery banks thus
requiring morespaceand maintenance.
⚫ Resynchronization with the utilitygrid is difficult.
Advantages & Disadvantages
20
⚫Microgrid Disadvantages
⚫ Microgrid protection is oneof the most importantchallenges
facing the implementationof Microgrids.
⚫ Issues such as standbychargesand net metering may pose
obstacles for Microgrid.
⚫ Interconnection standards needs to be developed to ensure
consistency. IEEE P1547, a standard proposed by Institute
of Electrical and Electronics Engineers may end up filling
thevoid.
Future Directions on Microgrid
Research
21
⚫ Toinvestigate full-scale development, field demonstration,
experimental performanceevaluationof frequencyand voltagecontrol
methodsundervariousoperation modes.
⚫ Transition between grid connected and islanded modeson interaction
phenomena between distribution generation and high penetration of
distributed generation.
⚫ Transformationof Microgrid system today into the intelligent,
robust energy delivery system in the future by providing
significantreliability and security benefits.
22
ARDUINO PROGRAMING CODE
const int VOL_PIN = A0;
const int VOL_PIN1 = A1;
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4);
void setup(){
lcd.init(); // initialize the lcd
lcd.init();
// Print a message to the LCD.
lcd.backlight();
Serial.begin( 9600 );
pinMode(5,OUTPUT);
pinMode(6,OUTPUT);
pinMode(7,OUTPUT);
}
void loop(){
int value;
int value1;
float volt;
float volt1;
value = analogRead( VOL_PIN );
value1 = analogRead( VOL_PIN1 );
volt = value * 5.0 / 1023.0;
volt1 = value1 * 5.0 / 1023.0;
Serial.print( "Value: " );
Serial.print( value );
Serial.print( " Volt: " );
Serial.println( volt );
Serial.print( "Value1: " );
Serial.print( value1 );
Serial.print( " Volt1: " );
Serial.println( volt1 );
if (volt1 > 1.8 && volt < 2) {
digitalWrite(5,LOW);
lcd.setCursor(0,0);
lcd.print("WINDMILL ON");
} else
{
digitalWrite(5,HIGH);
lcd.clear();
}
if (volt > 2.5 && volt1 < 1.8) {
digitalWrite(7,LOW);
lcd.setCursor(0,0);
lcd.print("SOLAR ON");
} else
{
digitalWrite(7,HIGH);
lcd.clear();
}
if (volt < 0.99 && volt1 < 0.9) {
digitalWrite(6,LOW);
lcd.setCursor(0,0);
lcd.print("ELECTRICITY ON");
} else
{
digitalWrite(6,HIGH);
lcd.clear();
}
delay( 500 );
}
Thank You
23
Queries?
24

More Related Content

Similar to FINAL_PPT_PROJECT19062023G.pptx

Microgrid Presentation
Microgrid PresentationMicrogrid Presentation
Microgrid PresentationShahab Khan
 
microgrid-presentation-090825235628-phpapp02.pdf
microgrid-presentation-090825235628-phpapp02.pdfmicrogrid-presentation-090825235628-phpapp02.pdf
microgrid-presentation-090825235628-phpapp02.pdfAbhishekYadav177511
 
Microgriid PPT- Smart grid
Microgriid PPT- Smart gridMicrogriid PPT- Smart grid
Microgriid PPT- Smart gridrajatverma369
 
Presentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxPresentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxNIT JAMSHEDPUR
 
Presentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxPresentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxPRABHATKUMAR777729
 
microgrid final (2).pptx
microgrid final (2).pptxmicrogrid final (2).pptx
microgrid final (2).pptxgokari1254
 
dcmicrogridppt-230111113105-ea167125 (1) (1).pdf
dcmicrogridppt-230111113105-ea167125 (1) (1).pdfdcmicrogridppt-230111113105-ea167125 (1) (1).pdf
dcmicrogridppt-230111113105-ea167125 (1) (1).pdfAbhishekYadav177511
 
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMES
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMESA REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMES
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMESIRJET Journal
 
Certsmicrogridwhitepaper
CertsmicrogridwhitepaperCertsmicrogridwhitepaper
CertsmicrogridwhitepaperĐại Lê
 
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...ijtsrd
 
How microgrids deliver resilience and sustainability
How microgrids deliver resilience and sustainabilityHow microgrids deliver resilience and sustainability
How microgrids deliver resilience and sustainabilityJackson Seng
 

Similar to FINAL_PPT_PROJECT19062023G.pptx (20)

Microgrid Presentation
Microgrid PresentationMicrogrid Presentation
Microgrid Presentation
 
microgrid-presentation-090825235628-phpapp02.pdf
microgrid-presentation-090825235628-phpapp02.pdfmicrogrid-presentation-090825235628-phpapp02.pdf
microgrid-presentation-090825235628-phpapp02.pdf
 
Microgriid PPT- Smart grid
Microgriid PPT- Smart gridMicrogriid PPT- Smart grid
Microgriid PPT- Smart grid
 
Microgrids
MicrogridsMicrogrids
Microgrids
 
Micro-grid
Micro-gridMicro-grid
Micro-grid
 
Microgrid
MicrogridMicrogrid
Microgrid
 
Presentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxPresentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptx
 
Presentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptxPresentation on DC Microgrid protection.pptx
Presentation on DC Microgrid protection.pptx
 
Micro grid
Micro gridMicro grid
Micro grid
 
microgrid final (2).pptx
microgrid final (2).pptxmicrogrid final (2).pptx
microgrid final (2).pptx
 
DC MICROGRID PPT.pptx
DC MICROGRID PPT.pptxDC MICROGRID PPT.pptx
DC MICROGRID PPT.pptx
 
DC MICROGRID PPT.pptx
DC MICROGRID PPT.pptxDC MICROGRID PPT.pptx
DC MICROGRID PPT.pptx
 
dcmicrogridppt-230111113105-ea167125 (1) (1).pdf
dcmicrogridppt-230111113105-ea167125 (1) (1).pdfdcmicrogridppt-230111113105-ea167125 (1) (1).pdf
dcmicrogridppt-230111113105-ea167125 (1) (1).pdf
 
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMES
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMESA REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMES
A REVIEW OF DC MICROGRID FOR INDIAN RURAL HOMES
 
Certsmicrogridwhitepaper
CertsmicrogridwhitepaperCertsmicrogridwhitepaper
Certsmicrogridwhitepaper
 
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...
Power Quality Enhancement Techniques in Hybrid AC DC Microgrid Analysis and I...
 
How microgrids deliver resilience and sustainability
How microgrids deliver resilience and sustainabilityHow microgrids deliver resilience and sustainability
How microgrids deliver resilience and sustainability
 
5.3_Helping Customers Make the Most of their Energy_Barton_EPRI/SNL Microgrid
5.3_Helping Customers Make the Most of their Energy_Barton_EPRI/SNL Microgrid5.3_Helping Customers Make the Most of their Energy_Barton_EPRI/SNL Microgrid
5.3_Helping Customers Make the Most of their Energy_Barton_EPRI/SNL Microgrid
 
17 mse008 microgrid
17 mse008 microgrid17 mse008 microgrid
17 mse008 microgrid
 
smartgrid
smartgridsmartgrid
smartgrid
 

More from AbhishekYadav177511

xrextendedrealitycurrentandfuturetrends-190204075425.pptx
xrextendedrealitycurrentandfuturetrends-190204075425.pptxxrextendedrealitycurrentandfuturetrends-190204075425.pptx
xrextendedrealitycurrentandfuturetrends-190204075425.pptxAbhishekYadav177511
 
internetofbehaviour-220419110112.pdf
internetofbehaviour-220419110112.pdfinternetofbehaviour-220419110112.pdf
internetofbehaviour-220419110112.pdfAbhishekYadav177511
 
errahulsharmafeederprotection-141017104620-conversion-gate02.pdf
errahulsharmafeederprotection-141017104620-conversion-gate02.pdferrahulsharmafeederprotection-141017104620-conversion-gate02.pdf
errahulsharmafeederprotection-141017104620-conversion-gate02.pdfAbhishekYadav177511
 
pankaj yadav seminar ppt (1).pptx
pankaj yadav seminar ppt (1).pptxpankaj yadav seminar ppt (1).pptx
pankaj yadav seminar ppt (1).pptxAbhishekYadav177511
 
floatingpowerplant25-03-11-111116233359-phpapp01.pdf
floatingpowerplant25-03-11-111116233359-phpapp01.pdffloatingpowerplant25-03-11-111116233359-phpapp01.pdf
floatingpowerplant25-03-11-111116233359-phpapp01.pdfAbhishekYadav177511
 
Introduction to DC Microgrids (2).pptx
Introduction to DC Microgrids (2).pptxIntroduction to DC Microgrids (2).pptx
Introduction to DC Microgrids (2).pptxAbhishekYadav177511
 

More from AbhishekYadav177511 (8)

xrextendedrealitycurrentandfuturetrends-190204075425.pptx
xrextendedrealitycurrentandfuturetrends-190204075425.pptxxrextendedrealitycurrentandfuturetrends-190204075425.pptx
xrextendedrealitycurrentandfuturetrends-190204075425.pptx
 
1 (9 files merged).ppt
1 (9 files merged).ppt1 (9 files merged).ppt
1 (9 files merged).ppt
 
internetofbehaviour-220419110112.pdf
internetofbehaviour-220419110112.pdfinternetofbehaviour-220419110112.pdf
internetofbehaviour-220419110112.pdf
 
errahulsharmafeederprotection-141017104620-conversion-gate02.pdf
errahulsharmafeederprotection-141017104620-conversion-gate02.pdferrahulsharmafeederprotection-141017104620-conversion-gate02.pdf
errahulsharmafeederprotection-141017104620-conversion-gate02.pdf
 
pankaj yadav seminar ppt (1).pptx
pankaj yadav seminar ppt (1).pptxpankaj yadav seminar ppt (1).pptx
pankaj yadav seminar ppt (1).pptx
 
floatingpowerplant25-03-11-111116233359-phpapp01.pdf
floatingpowerplant25-03-11-111116233359-phpapp01.pdffloatingpowerplant25-03-11-111116233359-phpapp01.pdf
floatingpowerplant25-03-11-111116233359-phpapp01.pdf
 
Presentation1.pptx
Presentation1.pptxPresentation1.pptx
Presentation1.pptx
 
Introduction to DC Microgrids (2).pptx
Introduction to DC Microgrids (2).pptxIntroduction to DC Microgrids (2).pptx
Introduction to DC Microgrids (2).pptx
 

Recently uploaded

Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 

Recently uploaded (20)

Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 

FINAL_PPT_PROJECT19062023G.pptx

  • 1. ABHISHEK YADAV DILIP KUMAR PANKAJ YADAV SACHI KUMAR SUMIT SAHU 19EED26 19EED66 19EED50 19EE22 19EED61 8/25/2009 1 GUIDED BY RISHABH UPADHYAY SHIVAM SRIVASTAV
  • 2. Introduction To Microgrid 2 ⚫What is Microgrid? ⚫It isa small-scale powersupply network that is designed to provide power fora small community . ⚫Itenables local powergeneration for local loads. ⚫Itcomprises of various small powergenerating sources that makes it highly flexibleand efficient.
  • 3. Introduction To Microgrid 3 ⚫What is Microgrid? ⚫It isconnected to both the local generating unitsand the utilitygrid thus preventing poweroutages. ⚫Excess powercan be sold to the utilitygrid. ⚫Sizeof the Microgrid may range from housing estate to municipal regions.
  • 4. Introduction To Microgrid ⚫Microgrid Components ⚫Distributed Generation ⚫Loads ⚫Immediatestorage ⚫Controller ⚫Point of Common Coupling 4
  • 6. 8/25/2009 Pomelo, Indonesia - Village microgrid 6
  • 8. 1. MOTIVATION: With the tremendous increase in the power consumption and with the introduction of electric vehicles, supply of power has got far greater attention and its interruption will bring the lives ofpeople to halt. To overcome power cutouts, microgrids are the only solution, and the continuousincrease in the demand of dc loads has motivated the researchers to work on dc distribution system. This was our motivation of working on dc microgrid for better efficiency and reduced losses.
  • 10. COMPONENTS  ARDUINO MICROCONTROLLER  WINDMILL  SOLAR PANNEL  BRIDGE RECTIFIER  RESISTORS  CAPACITORS  4 CHANNEL RELAY  VOLTAGE REGULATOR  LED  TRANSFORMER  LOAD
  • 12. Microgrid Operating Modes ⚫Grid Connected Mode: ⚫ Utilitygrid is active. ⚫ Staticswitch is closed ⚫ All the feedersare being supplied byutilitygrid. 12
  • 13. The Need Of Microgrid 13 ⚫Microgrid could be theanswer toourenergycrisis. ⚫Transmission losses gets highly reduced. ⚫Microgrid results in substantial savings and cuts emissionswithout majorchanges to lifestyles. ⚫Provide high qualityand reliableenergy supply to critical loads
  • 14. Interconnected Microgrids 14 Interconnected Microgrids – Power Parks ⚫Practical sizeof Microgrids is limited toa few MVA. ⚫For larger loads, it is desirable to interconnect many Microgrids to form a larger Microgrid network called PowerParks. ⚫The advantages of this Microgrid structure insures greaterstabilityand controllability for the Power Parks.
  • 15. Environmental Aspects 15 ⚫Microgrid encourages the useof the renewable energy sources. ⚫Large land use impactsareavoided. ⚫CO2 Emissions are reduced.
  • 16. Conventional Grid vs. Microgrid 16 ⚫Efficiencyof conventional grid isvery low as compared to Microgrid. ⚫Large amountof energy in the formof heat is wasted in conventional grid. ⚫Power sources in case of Microgrid (often referred toas Microsources) are small and are located in close proximityto load.
  • 17. Advantages & Disadvantages 17 ⚫ Microgrid Advantages ⚫ A majoradvantageof a Microgrid, is itsability, during a utility grid disturbance, to separate and isolate itself from the utility seamlessly with little or no disruption to the loads within the Microgrid. ⚫ In peak load periods it prevents utilitygrid failure by reducing the load on thegrid. ⚫ Significantenvironmental benefits made possible by the use of low orzeroemission generators.
  • 18. Advantages & Disadvantages 18 ⚫Microgrid Advantages ⚫The useof both electricityand heat permitted by the close proximityof thegenerator to the user, thereby increasing theoverall energy efficiency. ⚫Microgrid can act to mitigate theelectricitycosts to its users bygenerating someorall of itselectricity needs.
  • 19. Advantages & Disadvantages 19 ⚫Microgrid Disadvantages ⚫ Voltage, frequency and power quality are three main parameters that must be considered and controlled to acceptablestandardswhilst the powerand energy balance is maintained. ⚫ Electrical energy needs to be stored in battery banks thus requiring morespaceand maintenance. ⚫ Resynchronization with the utilitygrid is difficult.
  • 20. Advantages & Disadvantages 20 ⚫Microgrid Disadvantages ⚫ Microgrid protection is oneof the most importantchallenges facing the implementationof Microgrids. ⚫ Issues such as standbychargesand net metering may pose obstacles for Microgrid. ⚫ Interconnection standards needs to be developed to ensure consistency. IEEE P1547, a standard proposed by Institute of Electrical and Electronics Engineers may end up filling thevoid.
  • 21. Future Directions on Microgrid Research 21 ⚫ Toinvestigate full-scale development, field demonstration, experimental performanceevaluationof frequencyand voltagecontrol methodsundervariousoperation modes. ⚫ Transition between grid connected and islanded modeson interaction phenomena between distribution generation and high penetration of distributed generation. ⚫ Transformationof Microgrid system today into the intelligent, robust energy delivery system in the future by providing significantreliability and security benefits.
  • 22. 22 ARDUINO PROGRAMING CODE const int VOL_PIN = A0; const int VOL_PIN1 = A1; #include <Wire.h> #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27,20,4); void setup(){ lcd.init(); // initialize the lcd lcd.init(); // Print a message to the LCD. lcd.backlight(); Serial.begin( 9600 ); pinMode(5,OUTPUT); pinMode(6,OUTPUT); pinMode(7,OUTPUT); } void loop(){ int value; int value1; float volt; float volt1; value = analogRead( VOL_PIN ); value1 = analogRead( VOL_PIN1 ); volt = value * 5.0 / 1023.0; volt1 = value1 * 5.0 / 1023.0; Serial.print( "Value: " ); Serial.print( value ); Serial.print( " Volt: " ); Serial.println( volt ); Serial.print( "Value1: " ); Serial.print( value1 ); Serial.print( " Volt1: " ); Serial.println( volt1 ); if (volt1 > 1.8 && volt < 2) { digitalWrite(5,LOW); lcd.setCursor(0,0); lcd.print("WINDMILL ON"); } else { digitalWrite(5,HIGH); lcd.clear(); } if (volt > 2.5 && volt1 < 1.8) { digitalWrite(7,LOW); lcd.setCursor(0,0); lcd.print("SOLAR ON"); } else { digitalWrite(7,HIGH); lcd.clear(); } if (volt < 0.99 && volt1 < 0.9) { digitalWrite(6,LOW); lcd.setCursor(0,0); lcd.print("ELECTRICITY ON"); } else { digitalWrite(6,HIGH); lcd.clear(); } delay( 500 ); }