G5 Report
G5 Report
By
Guide
CERTIFICATE
This is to certify that Project entitled “IOT BASED GRID AUTOMATION”, which
is being submitted herewith for the partial fulfillment of the award of B.Tech., is the re-
sult of the work completed by MAYUR BONDE, CHETAN PATIL, ANANTA
PATIL, YOMIT CHOPADE under my supervision and guidance within the four walls
of the institute during the academic year 2021-22 and the same has not submitted else-
where for the award of any degree.
Date:
Place: Jalgaon
Dr. S. R. Sughandhi
Principal Examiner
DECLARATION
We hereby declare that the project entitled, “IOT BASED GRID AUTOMATION”
was carried out and written by us under the guidance of Prof. Rahul V. Patil assistant
Professor, Department of Electrical Engineering, Khandesh College Education Society’s
College of Engineering and Management, Jalgaon.
This work has not been previously formed the basis for the award of any degree or diploma
or certificate nor has been submitted elsewhere for the award of any degree or diploma
or certificate.
Date:
Place: Jalgaon
iii
Abstract
Internet of Things (IoT) is widely used in smart energy monitoring, industrial automation,
and a variety of applications. At various stages of Smart Grid, IoT devices are deployed
to monitor and control grid statistics for reliable and efficient delivery of power. Although
IoT integration in the smart grid domain provides manifold benefits, the challenges in
IoT-smart grid integration needs to be solved for the efficient operation of the grid.
Transformer is a static device, which converts power from one level to another level. The
aim of the proposed work is to protect the transformer under overload condition by load
sharing. Due to over load on transformer, the efficiency drops and winding get overheated
and may get burnt. Thus, by sharing load on transformer, the transformer is protected.
This will be done by connecting another transformer in parallel through a microcontroller
on the other hand through the Arduino. The both controllers compare the load on the first
transformer with the reference value. When the load exceeds the capacity of transformer,
the second transformer will share the remaining load. Load sharing provides suffcient
protection to distribution transformer under overloaded conditions. Due to overload on
transformer, the efficiency drops and windings get overheated and may burn. By sharing
a load current on transformer for each phase the transformer was protected. Therefore,
the objective of this study was to protect transformers from overloaded conditions by
sharing the load.
iv
Contents
Certificate i
Declaration ii
Acknowledgement iii
Abstract iv
List of Abbreviations ix
1 INTRODUCTION 1
1.1 NEED FOR THE NEW SYSTEM . . . . . . . . . . . . . . . . . . . . . 1
1.2 DETAILED PROBLEM IDENTIFICATION . . . . . . . . . . . . . . . . 2
1.3 PRESENTLY AVAILABLE SYSTEM . . . . . . . . . . . . . . . . . . . 3
1.4 SCOPE OF THE WORK . . . . . . . . . . . . . . . . . . . . . . . . . . 3
2 LITERATURE SURVEY 4
2.1 REVIEW ON IMPLEMENTATION OF SMART GRID . . . . . . . . . 4
2.2 REVIEW ON IOT APPLICATION . . . . . . . . . . . . . . . . . . . . . 5
3 PROPOSED WORK 7
3.1 NEED OF THE SYSTEM . . . . . . . . . . . . . . . . . . . . . . . . . . 7
3.2 METHOD USED FOR REQUIREMENT ANALYSIS . . . . . . . . . . . 8
3.3 DATA REQUIREMENTS . . . . . . . . . . . . . . . . . . . . . . . . . . 8
3.4 FUNCTIONALITY OF THE SYSTEM . . . . . . . . . . . . . . . . . . . 9
3.5 HARDWARE REQUIREMENT . . . . . . . . . . . . . . . . . . . . . . . 9
3.5.1 ATMEGA328 MICROCONTROLLER . . . . . . . . . . . . . . . 9
3.5.2 CT SENSOR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.6 WIFI MODULE esP8266 . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.6.1 RELAY MODULE . . . . . . . . . . . . . . . . . . . . . . . . . . 15
v
3.6.2 TRANSFORMERS . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.7 SOFTWARE REQUIREMENT . . . . . . . . . . . . . . . . . . . . . . . 16
3.7.1 ARDUINO UNO . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.7.2 ARDUINO IDE . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
3.7.3 NETWORK IP SCANNER APPLICATION . . . . . . . . . . . . 18
4 DESIGN OF SYSTEM 19
4.1 SYSTEM ARCHITECTURE . . . . . . . . . . . . . . . . . . . . . . . . 19
4.1.1 BLOCK DIAGRAM . . . . . . . . . . . . . . . . . . . . . . . . . 19
4.1.2 WORKING OF THE SYSTEM . . . . . . . . . . . . . . . . . . . 20
4.1.3 FLOWCHART OF SYSTEM . . . . . . . . . . . . . . . . . . . . 21
4.1.4 CIRCUIT DIAGRAM . . . . . . . . . . . . . . . . . . . . . . . . 22
4.2 SYSTEM MODELLING . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
4.2.1 HARDWARE DESIGN . . . . . . . . . . . . . . . . . . . . . . . . 22
4.2.2 SOFTWARE DESIGN . . . . . . . . . . . . . . . . . . . . . . . . 33
4.3 COST OF COMPONENTS . . . . . . . . . . . . . . . . . . . . . . . . . 36
6 CONCLUSION 41
6.1 INTRODUCTION . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
6.2 CONCLUSIONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
6.3 FUTURE SCOPE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
References 43
Appendix 46
vi
List of Figures
3.1 Internal block diagram of microcontroller . . . . . . . . . . . . . . . . . . 10
3.2 Pin diagram of microcontroller . . . . . . . . . . . . . . . . . . . . . . . . 12
3.3 Current Sensor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
3.4 Wifi Module ESP8266 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.5 Relay Module . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.6 230v/230v Tansformer . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
3.7 Arduino Uno . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
3.8 Blynk System Principle . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
vii
List of Tables
4.1 Cost of components . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
viii
List of Abbreviations
WSN: Wireless Sensor Network
ix
Chapter 1
INTRODUCTION
1.1 NEED FOR THE NEW SYSTEM
Power travels from the power plant to house through an amazing system called the
power distribution grid. For power to be useful in a home or business, it comes off
the transmission grid and is stepped-down to the distribution grid. This may happen
in several phases. The place where the conversion from ”transmission” to ”distribution”
occurs is in a power substation. It has transformers that step transmission voltages (in the
tens or hundreds of thousands of volts range) down to distribution voltages (typically less
than 10,000 volts). It has a ”bus” that can split the distribution power off in multiple
directions. It often has circuit breakers and switches so that the substation can be
disconnected from the transmission grid or separate distribution lines can be disconnected
from the substation when necessary. Transformer is the vital component in the electric
power transmission and distribution system. The problem of overloads, voltage variation
and heating effects is very common. It takes lot of time to its repair and also involves lot of
expenditure. This work is all about protecting the transformer under overload condition.
Due to overload the efficiency gets reduced and the secondary winding gets overheated
or it may be burnt. So, by reducing the extra load, the transformer can be protected.
This can be done by operating another transformer in parallel with main transformer
through comparator and change over relay. The comparator compares the load on the
first transformer with a reference value. When the load exceeds the reference value,
the second transformer will automatically be connected in parallel with first transformer
and share the extra load. Therefore, two transformers work efficiently under overload
condition and the damage can be prevented.
For home appliances, commercial and industrial loads, the transmitted voltage must
be steeped down to a distribution level. This may happen in several phases. In sub-s-
tations the voltage gets stepped down from transmission level (in the tens or hundreds
of thousands of volts range) to the distribution level (typically less than 10,000 volts).
In this work, a slave transformer shares the load of master transformer in the case of
over load and over temperature. A sensor circuit is designed to log the data from master
1
CHAPTER 1. INTRODUCTION
This project aims to solve this problem using IOT as the means of communication and
also tackling various other issues which a smart system can deal with to avoid unnecessary
losses to the Energy producers. Apart from monitoring the Grid it is very important to
monitor energy consumption and even theft of electricity to make proper use of electricity.
The amount of electricity consumed and the estimated cost of the usage needs to be
updated on the webpage along with the Energy Grid information.
4
CHAPTER 2. LITERATURE SURVEY
distributions centers, transmission towers, and consumer premises [21]. At the distri-
bution level of the SG, monitoring of electrical parameters like voltage, current, active
power, power factor, etc has a crucial role in improving grid efficiency. Moreover, reliable
communication infrastructure is required to send received information to the consumer
gadget or utility company. A WSN based power monitoring for a single-phase electric
system is developed in [22]. The authors have used power sensing and communication
modules to send load consumption data at periodic intervals to the utility. Furthermore,
a power theft algorithm is proposed that can help utility companies to detect power theft.
However, the developed system is costly and not suitable for implementation on a large
scale [22].
7
CHAPTER 3. PROPOSED WORK
others for safety and knowledge. User can understand the working efficiency of various
transformers. With the help of IOT user can control the all the load. User need to know
the ratings of the transformers and should check the webpage time to time although the
microcontroller automatically shifts the load, but if any damage happens to the system
or devices then in this case The user can monitor the system.
byte-oriented 2-wire Serial Interface, an SPI serial port, a 6-channel 10-bit ADC (8 chan-
nels in TQFP and QFN/MLF packages), a programmable Watchdog Timer with internal
Oscillator, and five software selectable power saving modes. The Idle mode stops the
CPU while allowing the SRAM, /Counters, USART, 2-wire Serial Interface, SPI port,
and interrupt system to continue functioning. The Power-down mode saves the register
contents but freezes the Oscillator, disabling all other chip functions until the next inter-
rupt or hardware reset. In Power-save mode, the asynchronous timer continues to run,
allowing the user to maintain a timer base while the rest of the device is sleeping. The
ADC Noise Reduction mode stops the CPU and all I/O modules except asynchronous
timer and ADC, to minimize switching noise during ADC conversions. In Standby mode,
the crystal/resonator Oscillator is running while the rest of the device is sleeping. This
allows very fast start-up combined with low power consumption. The device is manu-
factured using Atmel’s high density non-volatile memory technology. The On-chip ISP
Flash allows the program memory to be reprogrammed In-System through an SPI serial
interface, by a conventional non-volatile memory programmer, or by an On-chip Boot
program running on the AVR core. The Boot program can use any interface to download
the application program in the Application Flash memory. Software in the Boot Flash
section will continue to run while the Application Flash section is updated, providing
true Read-While-Write operation. By combining an 8-bit RISC CPU with In-System
Self-Programmable Flash on a monolithic chip, the Atmel ATmega328P is a powerful mi-
crocontroller that provides a highly flexible and cost effective solution to many embedded
control applications. The internal block diagram of microcontroller is shown in figure 3.1
The ATmega328P AVR is supported with a full suite of program and system develop-
ment tools including: C Compilers, Macro Assemblers, Program Debugger/Simulators,
In-Circuit Emulators, and Evaluation kits.
Features
• I/O and Packages - 23 Programmable I/O Lines - 28-pin PDIP, o Operating Voltage:
- 1.8 - 5.5V for ATmega328P
• Temperature Range: - -40C to 85C
• Speed Grade: - ATmega328P: 0 - 4 MHz @ 1.8 - 5.5V, 0 - 10 MHz @ 2.7 - 5.5V, 0
- 20 MHz @ 4.5 - 5.5V
• Low Power Consumption at 1 MHz, 1.8V, 25C for ATmega48P/88P/168P: - Active
Mode: 0.3 mA - Power-down Mode: 0.1 ?A - Power-save Mode: 0.8 ?A (Including
32 kHz RTC)
Pin Descriptions
3.5.2 CT SENSOR
class concerned, followed by the letter ”P” (referring to protection). The CT accuracy
primary limit current defines the highest fault current magnitude at which the CT will
meet the specified accuracy. Beyond this level, the secondary current of the CT will be
distorted, and this may have severe effects on the performance of the protection relay. In
practise, the actual accuracy limit factor (Fa) differs from the rated accuracy limit factor
and is proportional to the ratio of the rated CT burden and the actual CT burden. For
the reliable and correct operation of the protection relays, the current transformer (CT)
has to be carefully chosen. The distortion of the secondary current of a saturated CT
may endanger the operation, selectivity and co-ordination of the protection. A correctly
selected CT, on the other hand, enables fast and reliable protection.The CT sensor is
shown in figure 3.3
ESP8266 supports APSD for VoIP applications and Bluetooth co-existance interfaces,
it contains a self-calibrated RF allowing it to work under all operating conditions, and
requires no external RF parts. The figure 3.4 shows the wifi module ESP8206 There is an
almost limitless fountain of information available for the ESP8266, all of which has been
provided by amazing community support. In the Documents section below you will find
many resources to aid you in using the ESP8266, even instructions on how to transform
this module into an IoT (Internet of Things) solution.
Features of esP8266
• 802.11 b/g/n
• Wi-Fi Direct (P2P), soft-AP
• Integrated TCP/IP protocol stack
• Integrated TR switch, balun, LNA, power amplifier and matching network
• Integrated PLLs, regulators, DCXO and power management units
• +19.5dBm output power in 802.11b mode
• Power down leakage current of ¡10uA
• 4MB Flash Memory
• Integrated low power 32-bit CPU could be used as application processor
• SDIO 1.1 / 2.0, SPI, UART
• STBC, 11 MIMO, 21 MIMO
• A-MPDU A-MSDU aggregation 0.4ms guard interval
• Wake up and transmit packets in ¡ 2ms
• Standby power consumption of ¡ 1.0mW (DTIM3)
3.6.2 TRANSFORMERS
An isolation transformer is a transformer used to transfer electrical power from a source of
alternating current (AC) power to some equipment or device while isolating the powered
device from the power source, usually for safety reasons. Isolation transformers provide
galvanic isolation; no conductive path is present between source and load. This isolation
is used to protect against electric shock, to suppress electrical noise in sensitive devices,
or to transfer power between two circuits which must not be connected. A transformer
sold for isolation is often built with special insulation between primary and secondary,
and is specified to withstand a high voltage between windingsshoen in figure 3.6
There are plenty of other microcontrollers available. So you may be asking, why
choose the Arduino? Arduino really simplifies the process of building projects on a
microcontroller making it a great platform for amateurs. You can easily start working
on one with no previous electronics experience. In addition to Arduino’s simplicity, it
is also inexpensive, cross-platform and open source. The Arduino is based on Atmel’s
ATMEGA8 and ATMEGA168 microcontrollers as shown in figure 3.7. The plans for the
modules are published under a Creative Commons license, so experienced hobbyists and
professionals can make their own version of the Arduino, extending it and improving it.
Although there are many different types of Arduino boards available, this manual focuses
on the Arduino Uno. This is the most popular Arduino board around. So what makes
this thing tick? Here are the specifications:
• Processor: 16 Mhz ATmega328
• Flash memory: 32 KB
• Ram: 2kb
• Operating Voltage: 5V
• Input Voltage: 7-12 V
• Number of analog inputs: 6
19
CHAPTER 4. DESIGN OF SYSTEM
The proposed system consists of monitoring, communication and analysis units. The
monitoring setup comprises of current sensors connected to consumer loads. The com-
munication unit consists of Arduino and Wifi module. The analysis unit is a remote
application/web page on consumer mobile/laptop that can be access to obtain load pro-
files, energy consumption, etc. The block diagram of an IoT based transformers load
shifting for smart grid application is shown in figure 4.1. The two grid stations are con-
nected through the relay module. The Arduino is interfaced with sensors to gather load
data and saves it in internal memory. Wifi fetches load data from Arduino through a
UART interface and communicates the load data with the server. Wifi modulates acts
as a gateway between the monitoring side and the webserver.
In the proposed system only one transformer is operating to feed the loads. A standby
transformer is connected in parallel a circuit breaker and relay. The current transformer
continuously measures the load current and feeds it to the comparator. Under normal
condition the main transformer is in ON condition and the reserve transformer is in OFF
condition. Apply the load, the reference value or maximum load limit is entered by the
user and priority level of the load is also set by the user or concerned authority. During the
normal the single transformer can able to feed the entire load.Under abnormal condition
As the load demand increases during peak, a single transformer would not be able to
feed the entire load. During this condition, when the load demand exceeds the reference
value, The Microcontroller on the other hand the Arduino will give a control signal to
energize the relay coil. Thus, the standby transformer will be connected in parallel and
will share the load equally since the transformers are of the same ratings. Thus, all the
loads are feed efficiently providing un-interrupted power supply. The wifi module will
send the message to the control room about the load sharing.If load limits exceed the
main transformer is in ON condition and the reserve transformer is in ON condition.
When the load increases further to a value which is greater that the capacity of the two
transforms, priority-based load shading will be implemented. The loads which have the
lowest priority will be shut down by opening the respective circuit breakers. If the load
limit exceeds the both the transformer. The main transformer and the reserve transformer
will be in OFF condition.
Power supply is the first and the most important part of our project. For our project
we require +5V regulated power supply with maximum current rating 500Ma Following
basic building blocks are required to generate regulated power supply.The block diagram
of power supply is shown in figure 4.4
1. Step Down Transformer Step down transformer is the first part of regulated power
supply. To step down the mains 230V A.C. we require step down transformer.
Following are the main characteristic of electronic transformer. Power transformers
are usually designed to operate from source of low impedance at a single frequency.
It is required to construct with sufficient insulation of necessary dielectric strength.
Transformer ratings are expressed in volt-amp. The volt-amp of each secondary
winding or windings are added for the total secondary VA. To this are added the
load losses. Temperature rise of a transformer is decided on two well-known factors
i.e. losses on transformer and heat dissipating or cooling facility provided unit.
2. Rectifier Unit Rectifier unit is a circuit which converts A.C. into pulsating D.C.
Generally semi-conducting diode is used as rectifying element due to its property of
conducting current in one direction only. Generally there are two types of rectifier.
(a) Half wave rectifier
(b) Full wave rectifier.
In half wave rectifier only half cycle of mains A.C. is rectified so its efficiency is
very poor. So we use full wave bridge type rectifier, in which four diodes are used.
In each half cycle, two diodes conduct at a time and we get maximum efficiency
at o/p. Following are the main advantages and disadvantages of a full-wave bridge
type rectifier circuit.
Advantages:
1)The need of centre tapped transformer is eliminated. 2)The o/p is twice
that of centre tap circuit for the same secondary voltage. 3)The PIV rating of
diode is half of the centre tap circuit.
Disadvantages:
(a) It requires four diodes.
(b) As during each half cycle of A.C. input, two diodes are conducting therefore
voltage drop in internal resistance of rectifying unit will be twice as compared
to center tap circuit.
3. Filter Circuit Generally a rectifier is required to produce pure D.C. supply for using
at various places in the electronic circuit. However, the o/p of rectifier has pulsating
character i.e. if such a D.C. is applied to electronic circuit it will produce a hum i.e.
it will contain A.C. and D.C. components. The A.C. components are undesirable
and must be kept away from the load. To do so a filter circuit is used which removes
(or filters out) the A.C. components reaching the load. Obviously a filter circuit is
installed between rectifier and voltage regulator. In our project we use capacitor
filter because of its low cost, small size and little weight and good characteristic.
Capacitors are connected in parallel to the rectifier o/p because it passes A.C. but
does not pass D.C. at all.
4. Three terminal voltage regulator A voltage regulator is a ckt. that supplies constant
voltage regardless of change in load current. IC voltage regulators are versatile
and relatively cheaper. The 7800 series consists of three terminal positive voltage
regulator. These ICs are designed as fixed voltage regulator and with adequate heat
sink, can deliver o/p current in excess of 1A. These devices do not require external
component. This IC also has internal thermal overload protection and internal
short circuit and current limiting protection. For our project we use 7805 voltage
regulator IC. the circuit diagram of three terminal voltage regulator is in figure 4.5
Design of Step down Transformer
The following information must be available to the designer before he commences for the
design of transformer.
1. Power Output.
2. Operating Voltage.
3. Frequency Range.
4. Efficiency and Regulation.
1. Size of core
Size of core is one of the first considerations in regard of weight and volume of trans-
former. This depends on type of core and winding configuration used. Generally
following formula is used to find area or size of core.
Ai= ?(P1 /0.87)(1)
PCB Design
Phenol
Phenol and Formaldehyde produce phenolic paper base laminate it has phenolic
resins with proper filter. This is Brown in color and opaque. Disadvantage is poor
moisture resistance.
Epoxy Laminates
Epoxy paper this is also paper based but impregnated with epoxy resin, yellowish
white and translucent. Epoxy Glass base material has high mechanical strength and
good electrical properties usually green in color and semitransparent. There are a variety
of laminates available. We have selected Fiber Glass epoxy laminate.PCB fabrication
includes following steps:
1. Layout of the circuit
2. Artwork designing
3. Printing
4. Etching
5. Drilling
6. Mounting of components and soldering
7. Finishing Layout
The layout of PCB has to incorporate all the information on the board before one
can go onto the all work preparation. Detailed circuit diagram, design concept and the
philosophy behind the equipment are very important for the layout.
Layout Scale
Depending on the accuracy required artwork should be produced at a 1:1 or 2:1 or
even 4:1 scale. The layout is best prepared on the same scale as the artwork to prevent
the entire problem, which might be caused by redrawing of layout to the artwork scale.
The layout/artwork scale commonly applied is 2:1 with a 1:1 scale, no demanding single
sided boards can be designed but sufficient care should be taken, particularly during the
artwork preparation.
Procedure
The first rule is to replace each and every PCB layout as viewed from the component
side. This rule must be strictly followed to avoid confusion, which would otherwise be
caused. Among the components, the larger ones are placed first and the space in between
is filled with smaller ones. Components requiring input/output connecting come near
the connector. All components are placed in such a manner that de-soldering of other
components is not necessary if they have to be replaced.
Layout Sketch
The end product of the layout designing is the pencil sketched component and con-
ductor drawing which is caller ’layout sketch’. It contains all information for the prepa-
ration of network.
Basic Approaches
For ink drawing on white cardboard paper, good quality Indian ink and ink pen set
are minimum requirements. Drawing practice - drawing procedure is very at least by 0.1
- 0.2, and solder pad locations.And conductors can easily be displaced by 0.3 - 0.5mm.
Conductor Holes
A code can used for the conductor with a special width. Minimum spacing should
also be provided.A) Holes B) Conductor Widths Standard holes Standard width, 0.5mm
1.1 mm 1 mm 1.5 mm 2 mm 3.2 mm 4 mm
Screen Printing
The process of screen - printing is well known to the printing industry because of
its inherent capabilities of printing a wide range of inks on almost any kind of surface
including glass, metal, plastic fabrics, wooer, etc. Found their way into an extremely
broad field of applications.
Screen- printing offers the advantages of wide control on the ink deposition, thickness
though the selection of suitable mass density and composition, in the production of PCB’s.
It is successfully employed in printing of
• Etch resists
• Plate resists
• Solder stop lacquers printing
In its basic form, the screen - printing process is very simple. A screen fabric with
uniform meshes and opening is stretched and fixed on a solid frame of metal or wood.
The circuit pattern area open, while the meshes in the rest of the area is closed.
In the actual printing step, ink is forced by the moving squeeze thorough the open
meshes onto the surface of the material to be printed. The ink deposition, in a magnified
cross section, shows the shape of a trapezoid.
Pattern Transfer onto The Screen
There are two different methods in use, and each method has its own advantages
and disadvantages.
With the direct method, the screen is prepared, by coating a photographic emulsion
directly onto the screen fabric and exposing it in the pattern area. The indirect method
makes use of a separate screen process film, supported on a backing sheet. The film on its
backing sheet that is there after pressed onto the screen fabric and sticks there. Finally,
the backing sheet is peeled off, opening all those screen meshes, which are not covered by
the film pattern.
The direct method provides very durable screen stencils with a higher dimensional
accuracy but the finest details are not reproduced. The indirect method is more suitable
for smaller series and where the finest details to be reproduced. The indirect method
is faster but dimensionally less accurate and the screen stencils are less durable, more
sensitive to mechanical damages and interruption in printing.
Etching
In all subtractive PCB process, etching is one of the most important steps. The final
copper pattern is formed by selective removal of all the unwanted copper, which is not
protected by an etching unit.
Solutions, which are used in etching process, are known as enchants.
1. Ferric Chloride
2. Cupric Chloride
3. Chromic Acid
4. Alkaline Ammonia
Of these Ferric Chloride is widely used because it has short etching time and it can
be stored for a long time. Etching of PCBs as required in modern electronic equipment
production, is usually done in spray type etching machines. bubble etching, in which
the boards kept in tank, were lowered and fully immersed into the agitated, has almost
disappeared.
Component Mounting
Carefully mounting of components on PCB increases the reliability of assembly.
1. One leads must be cleaned before they are inserted in PCB holes. Asymmetric lead
bending must be avoided, the ENT leads must fit into holes properly so that they
can be soldered.
2. When the space is to be saved then vertical mounting is preferred. The vertical
lead must have an insulating sleeve.
3. Where jumper wire crosses over conductors, they must be insulted.
4. For mounting of PCBs, TO5, DIP packages special jigs must be used of easy inser-
tion.
5. For mounting transistors, each lead must have insulating sleeve.
All the flat radial components such as resistors, diodes, and inductors are mounted
and soldered. Then IC bases are soldered. The vertical components such as transistors,
gang condenser and FET are mounted and soldered.
Soldering
The next process after the component mounting is soldering, solder pint is achieved
by heating the solder and base metal about the melting point of the solders used.
The necessary heat depends upon:
1. The nature and type of joints
2. Melting temperature of solder
3. Flux
Soldering techniques are of so many types but we are using iron soldering.
Iron soldering
Soldering iron consists of an insulating handle connected through a metal shaft, of a
bit accurately makes contact with the component parts of the joint and solder and heats
them up. The electrical heating element is located in the hollow shank or handles to heat
the bit.
Functions of Bit
It stores heat and convey it from the heat source to the work. It may be required
to store surplus solder from the joint. It may be required to store molten solder and flux
to the work. It’s surface must be lined or wetted, this encourages flow of solder into the
joint. When the surface of the work becomes ester by solder, a continuous film of liquid
metal between the bit and work provides a path of high thermal conductivity through
which heat can flow into the work piece.
Solder bit are made up of copper, this metal has good wetting properly, heat capa-
bility ad thermal conductivity. Tin-lead solder affects copper during soldering operation.
Production of copper bit can be made with thick iron coating followed by Ni/Tin plating.
The life of the bit is increased by a factor of 10 to 15. Solder irons are specified in terms of
wattage. Depending on heat input intended for working and types of work (Continuous
or individual) the choice of the solder iron can be made.
Procedure of Soldering
The points to be joined must be cleaned first and fluxed. The hard solder iron and
solder wire is applied to the work. The melted solder becomes bright and fluid. The iron
must be removed after sufficient time and joint is allowed to coal. At the end, finishing
is done.
• Look under Ports (COM LPT). You should see an open port named ”Arduino
UNO (COMxx)”.
• Right click on the ”Arduino UNO (COMxx)” port and choose the ”Update Driver
Software” option.
• Next, choose the ”Browse my computer for Driver software” option.
• Finally, navigate to and select the Uno’s driver file, named ”ArduinoUNO.inf”,
located in the ”Drivers” folder of the Arduino Software download.
• Windows will finish up the driver installation from there.as shown in figure 4.8 and
4.9
If the upload is successful, the message ”Done uploading.” will appear in the status bar.
A few seconds after the upload finishes, you should see the pin 13 (L) LED on the board
start to blink. If it does, congratulations! You’ve got your Arduino up and running.
38
CHAPTER 5. RESULT AND DISCUSSION
When the load is shifts wifi module sends the signal to the web page to see on web
page by using Network IP scanner application is used first switch on users mobile hotspot
and connect to the wifi module scan the ip address at any browers the webpage is open
The user can see wheather the load is normal or high on the web page. as shown in
figure 5.3 and 5.4
6.2 CONCLUSIONS
In this project observed that if load on one transformer is increases then the relay will
sense the change in current. Arduino operates and slave transformer comes automatically
in operation to share the load. The work on ”IOT Based Grid Automation” is successfully
done and demonstrated. The demo is fabricated for operating two transformers in parallel
to share the load automatically with help of change over relay and relay driver circuit.
Thus, the two transformers are protected from overloading as well as overheating and
providing an uninterrupted power supply to the customers. Load sharing of transformer
to protect from failures. This load sharing was modelled to the town; therefore, this
transformer load sharing system was the best solution to protect equipment failure and
electric instructions. Smart grid represents one of the most promising and prominent
internet of things applications. More efficient transmission of electricity.
41
CHAPTER 6. CONCLUSION
supply the additional load requirement. Our project automatically connects the trans-
former under critical loads. Thus there is no need to operate both transformers under
normal loads, particularly during off peak hours. Thus power is shared intelligently with
the transformers in parallel.
In future, we will study on the security of a key-component of the Smart Grid, where
we center around how we can safely incorporate energy-aware smart home, equipped
with smart meters and smart appliances, in the smart grid, so end-client could effectively
and safely take an interest in the energy consumption/production equilibrium. Internet
of Things, is the subsequent stage towards an all around and inescapable association
with any correspondence and calculation empowered articles/gadgets, in any case their
entrance innovation, accessible assets and area. The smart Grid can exceedingly profits
by the IOT vision.
[2] Kuzlu M., Pipattanasomporn M., Rahman S. (2014) Communication network re-
quirements for major smart grid applications in HAN, NAN and WAN. Computer
Networks, 67, 2014, pp. 74-88.
[3] A. Bose. Smart transmission grid applications and their supporting infrastructure.
IEEE Trans. Smart Grid, 1 (1), pp.11-19, 2010.
[4] Gene Wolf, ”The Smart Substation”, TD World Magazine, 2016, [Online] Available:
http://www.tdworld.com/grid-opt-smart-grid/smart substation
[5] Youjie Ma, Guidong Wang and Xuesong Zhou, ”An Overview on Smart Distribution
Grid”, IEEE International Conference on Mechatronics and Automation, August 2
- 5, Beijing, China, 2015.
[7] Yaacoub and A. Abu-Dayya, ”Automatic Meter Reading in the Smart Grid using
Contention Based Random Access over the Free Cellular Spectrum,” Computer Net-
works, vol. 59, pp. 171-183, 2014.
[8] S. Bush, ”Network Theory and Smart Grid Distribution Automation,” IEEE Journal
on Selected Areas in Communications, vol. 32, no. 7, pp. 1451-1459, 2014.
43
Bibliography
[11] Yaacoub and A. Abu-Dayya, ”Automatic Meter Reading in the Smart Grid using
Contention Based Random Access over the Free Cellular Spectrum,” Computer Net-
works, vol. 59, pp. 171-183, 2014.
[12] S. Bush, ”Network Theory and Smart Grid Distribution Automation,” IEEE Journal
on Selected Areas in Communications, vol. 32, no. 7, pp. 1451-1459, 2014.
[13] W. Meng, R. Ma, and H.-H. Chen, ”Smart Grid Neighborhood Area Networks: A
Survey,” IEEE Network, vol. 28, no. 1, pp. 24-32, 2014.
[14] Z. M. Fadlullah, A.-S. K. Pathan, and K. Singh, ”Smart Grid Internet of Things,”
Mobile Networks and Applications, pp. 1-2, 2017.
[15] R. Ma, H.-H. Chen, Y.-R. Huang, and W. Meng, ”Smart Grid Communication: Its
Challenges and Opportunities,” IEEE Transactions on Smart Grid, vol. 4, no. 1, pp.
36- 46, 2013.
[16] A. Al-Ali and R. Aburukba, ”Role of Internet of Things in the Smart Grid Technol-
ogy,” Journal of Computer and Communications, vol. 3, no. 05, p. 229, 2015.
[17] F. Al-Turjman and M. Abujubbeh, ”IoT-enabled Smart Grid via SM: An Overview,”
Future Generation Computer Systems, In Press, 2019.
[19] S. S. S. R. Depuru, L. Wang, and V. Devabhaktuni, ”Smart meters for power grid:
Challenges, issues, advantages and status,” Renew. Sustain. Energy Rev., vol. 15,
no. 6, pp. 2736-2742, 2011.
[21] S. E. Collier, ”The emerging Enernet: Convergence of the Smart Grid with the
Internet of Things,” in IEEE Industry Applications Magazine, vol. 2, 2017, pp. 12-
16.
[23] R. Ma, H.-H. Chen, Y.-R. Huang, and W. Meng, ”Smart Grid Communication: Its
Challenges and Opportunities,” IEEE Transactions on Smart Grid, vol. 4, no. 1, pp.
36- 46, 2013.
[24] Ms. Mayuri B. Patil, Ms. Pooja M. Nikam, Ms. Hemalata A. Patil, Mr. Alim F.
Pathan, Mr. Shubham P. Nikam, Prof. D. D. Gavali: ”Automatic load sharing of
transformer using Arduino”, International Journal of Scientific Research and Review
ISSN No.:2279-543X Volume 07, Issue 02, February 29 UGC Journal No.: 64650
[25] T. Venkata Sai Kalyani, V. Sunil Kumar, Ch. Srinivas: ”Automatic Load Sharing of
Transformer using Microcontroller”, International Journal of Advanced Research in
Electrical, Electronics and Instrumentation Engineering— Vol. 7, Issue 5, May-2018
ISSN (print): 2320-3765, ISSN (online): 2278-8875
[26] W. Meng, R. Ma, and H.-H. Chen, ”Smart Grid Neighborhood Area Networks: A
Survey,” IEEE Network, vol. 28, no. 1, pp. 24-32, 2014.
46