SlideShare a Scribd company logo
1 of 14
Download to read offline
A PROJECT ON “REMOTE MONITORING OF A POWER STATION/ SUBSTATION (VOLTAGE MONITORING) USING GSM” Submitted to: Dr. Md. Farhad Hossain Assistant Professor, Dept. of EEE,BUET Submitted by: Abdullah Al Arafat (1006135) Tuhin Paul (1006140) Jawwad Sadiq Ayon (1006144) Nouroz Rahman Amon (1006163) Submission Date:01-11-2014 A PROJECT ON “REMOTE MONITORING OF A POWER STATION/ SUBSTATION (VOLTAGE MONITORING) USING GSM” Submitted to: Dr. Md. Farhad Hossain Assistant Professor, Dept. of EEE,BUET Submitted by: Jawwad Sadiq Ayon (1006144) Abdullah Al Arafat (1006135) Tuhin Paul (1006140) Nouroz Rahman Amon (1006163) Submission Date: 01-11-2014 Bangladesh University of Engineering & Technology Course No: EEE 310
Remote Monitoring of a Substation/Power Station using GSM Page 1 
Objectives: 
The purpose of this project is to monitor the remote electrical parameters like Voltage, Current ,Phase angle and Frequency (N.B.:in this project only voltage has monitored)of power station/substation and send these real time values over GSM network using GSM Modem/phone at power station/substation. 
Abstract of the Project: 
User can monitor the remote electrical parameters by receiving commands in the form of SMS messages .In this project we make a prototype of electric substation the voltage of which will be monitored by the user. This system also can automatically send the real time electrical parameters (in this project we have shown monitoring voltage parameter only) periodically (based on time settings) in the form of SMS. This project makes use of an arduino board which is commonly termed as arduino mega 2560. The Adc pins can efficiently communicate with the different sensors being used. The microcontroller in the arduino board is provided with some internal memory to hold the code. The code is programmed using arduino programming language 
Introduction: 
Monitoring of substations are essential task for supplying healthy power to the consumers in this automated era. Depending on the voltage levels and end users, there are transmission or distribution substations those supply electrical power to various loads. Remote monitoring make these substations to be operated through wireless communication technologies like GSM, GPRS, Ethernet, etc. 
Substations consist of various equipment like transformers, circuit breakers, relays, APFC panels, etc., and these equipment ought to be operated in such a way that the loads must be delivered safely with
Remote Monitoring of a Substation/Power Station using GSM Page 2 
specified parameters. These parameters include voltage, current, frequency, power factor, temperature, and so on. The following GSM based project deal with substation monitoring aspects. Here in this project we made a prototype of substation and only one parameter voltage is to be remote monitored. 
Major Equipment Used : 
1. 1x 16×2 parallel LCD display (compatible with Hitachi HD44780 driver) 
2. 1x Arduino Board 
3. 1x 10kΩ and 1x5kΩ potentiometer 
4. 5x 10kΩ resistor 
5. 4.4kΩ resistor using a bunch of different resistors. 
6. SIM-908 GSM module 
7. GSM Antenna 
8. Jumper Wire 
9. Power supply for SIM908 
10. Breakout Board, 
Algorithm for Measuring Voltage using Arduino: 
This project shows how to make remote voltage monitoring system with Arduino. It uses voltage divider concept to estimate the voltage input .Each analog input of Arduino has 1024 steps from 0 to 5 volt. This experiment used a simple voltage divider to measure roughly 0 to 12 volt (using 50k as
Remote Monitoring of a Substation/Power Station using GSM Page 3 
R1 and 4k3 as R2).By varying the values of R1 and R2, the precision and range of the measurement can be changed. 
The analog inputs of an Arduino can measure up to 5V (when using the built-in analog reference voltage). Even when only connecting to a 5V circuit, we have used the resistors to help protect the Arduino from short- circuits or unexpected voltage surges. 
Those two resistors form a potential divider that is used to lower the voltage being measured to a level that the Arduino can read. This actually extends the range that can be used. For example, if resistors are used to halve the input voltage then the Arduino can effectively read up to 10V (since 10V will be read as 5V, 5V will be read as 2.5V…). This comes at the expensive of accuracy – the ADCs in the Arduino can read up to 1024 different levels between 0V and 5V. By expanding the range to 10V, those 1024 levels are spread across a wider range and are therefore less able to detect small changes. 
You can increase the resistance value of R2, then the maximum voltage that can be read will be decreased; giving a slightly more accurate reading. With R1 at 100Ko and R2 at 10Ko, the input voltage is reduced by a factor of around 11 – allowing the monitoring system to read from 0V–55V. 
The analog sensor on the Arduino board senses the voltage on the analog pin and converts it into a digital format that can be processed by the microcontroller. Here, we are feeding the input voltage to the analog pin
Remote Monitoring of a Substation/Power Station using GSM Page 4 
(A0) using a simple voltage divider circuit comprising resistors R1 (50k) and R2 (4.4k) – allowing the monitoring system to read from 0V–61V. 
The formula for calculating values in a potential divider is: 
Here, 
Vout=(R2/(R1+R2))*Vin 
So, 
Vin = Vout / (R2/(R1+R2)); 
When measuring the voltage in the loop() routine, analogRead(0) is used to read the level from analog input 0. The returned value is an integer in the range 0 through 1023, so it must first be adjusted to a range 0 through 5. This is done by multiplying it by the power supply level, and then dividing by 1024. 
Vout = (value * 5.0) / 1024.0
Remote Monitoring of a Substation/Power Station using GSM Page 5 
When measuring the voltage in the loop ( ) routine, analogRead(0) is used to read the level from analog input 0. The returned value is an integer in the range 0 through 1023, so it must first be adjusted to a range 0 through 5. This is done by multiplying it by the maximum power supply level, and then dividing by 1024. 
The 10k Potentiometer controls the contrast of the LCD panel. Nothing fancy here. 
Code: 
const int timesTosend=10; 
int count=0; 
// include the library code: 
#include <LiquidCrystal.h> 
// initialize the library with the numbers of the interface pins 
LiquidCrystal lcd(7, 8, 9, 10, 11, 12); 
// variables for input pin and control LED 
int analogInput = 1; 
float vout = 0.0; 
float vin = 0.0; 
float R1 = 50000.0; // !! resistance of R1 !! 
float R2 = 4400.0; // !! resistance of R2 !! 
// variable to store the value 
int value = 0; 
void setup() 
{ 
Serial1.begin(9600); //Baud rate of the GSM/GPRS Module 
Serial.begin(9600); 
// Send ANSI terminal codes 
Serial.print("x1B"); 
// End ANSI terminal codes 
// declaration of pin modes 
pinMode(analogInput, INPUT); 
// set up the LCD's number of columns and rows: 
lcd.begin(16, 2); 
lcd.setCursor(0, 0); 
lcd.print("Monitor System!"); 
lcd.setCursor(0, 1); 
lcd.print("Vin="); 
} 
void loop() 
{ 
while(count<timesTosend){ 
value = analogRead(analogInput); 
vout = (value * 5.0) / 1024.0;
Remote Monitoring of a Substation/Power Station using GSM Page 6 
vin = vout / (R2/(R1+R2)); 
if (vin<0.50) { 
vin=0.0; 
} 
Serial.println("--------------------"); 
Serial.println("Substation Voltage Monitoring:"); 
//Serial.print("Maximum Voltage: "); 
Serial.println("Vin="); 
Serial.println(vin); 
Serial.println("--------------------"); 
Serial.println(""); 
Serial1.print("r"); 
delay(1000); 
Serial1.print("AT+CMGF=1r"); 
delay(1000); 
Serial1.print("AT+CMGS="+8801818796089"r"); //Number to which you want to send the sms 
delay(1000); 
Serial1.print("System Voltage="); 
delay(100); 
Serial1.print(vin); 
delay(100); 
Serial1.print("V"); 
delay(100); 
Serial1.write(0x1A); 
delay(1000); 
//print result to lcd display 
lcd.setCursor(4, 1); 
lcd.print(vin); 
lcd.print("V"); 
delay(6000); 
count++; 
} 
} 
The Serial Port Monitor in the IDE is used to view the messages sent by this sketch. However, this is not a particularly advanced monitor, and cannot display the ANSI terminal sequences that are used to provide a friendlier display. Better results can be had by using a terminal package such as Hyperterminal, RealTerm or Putty. 
The serial port we need to connect to is found from the Arduino IDE: 
 On the Tools menu, we have clicked Serial Port and looked for the item that is ticked. 
The other setting we have used are:
Remote Monitoring of a Substation/Power Station using GSM Page 7 
Display:ANSI 
Speed:9600 
Parity:Non 
Data bits:8 
Figure: Prototype of a substation 
Monitoring System developed by our project: 
The values of voltage is directly applied to one of the adc input pin of the arduino. Along with this, a lcd display is connected. The monitoring PC is connected to the main station. The arduino at the substation monitors and
Remote Monitoring of a Substation/Power Station using GSM Page 8 
captures the voltage values for a particular period of time interval. The captured values are stored in the data register and displayed using the LCD display. 
The monitored voltage are transmitted using the gsm modem for each and every time interval programmed in the code. A gsm antenna tuned for the 
selected RF frequency can be utilized for the transmission of the RF signal but the antenna has to exhibit a unidirectional radiation pattern. In the receiver side of the user profile, the receiver antenna converts the RF signal into electrical signal and acquires the information which has been transmitted by the transmitter. Based on the received information, controlling operation is performed. If the receiver receives the substation parameters which is greater than the fixed threshold level, then immediately the units is shutdown so as to protect the same.
Remote Monitoring of a Substation/Power Station using GSM Page 9 
Figure: SIM908 module with breakout board. 
Sending SMS from GSM 
We used a grameenphone sim in our project.This is the procedure how we sent SMS through GSM: 
1.First of all GSM was woken up by sending AT command 
2.The GSM was put on Text mode by feeding command AT+CMGF=1 
3.then we have given the command AT+CMGS=”Mobile_number” 
4.Then we wrote the messages to be sent via gsm. 
5.Press CTRL+Z to send the SMS by writing Serial.write(0x1A) 
The above steps were coded for Arduino to handle automatically 
Special Feature of this project : 
1. Substation/power station voltage can be monitored from anywhere in the world. 
2. Feedback of the devices being operated can also be developed. 
3. Efficient and low cost monitoring system. 
4. Easy to monitor and user friendly. 
5. Real time monitoring . 
Constraints: 
1. Depends on the network signal strength.
Remote Monitoring of a Substation/Power Station using GSM Page 10 
2. Power consumption is pretty high. 
Problems we face: 
1. The power supply was too much sensitive. 
2. If the voltage goes down crossing a certain limit the module automatically shuts down.So, during the time of completeing project we faced little bit trouble working with it. 
3. Again at the starting of the module it drives a huge amount of curren nearabout 2 Amp.So, it was a challenge for us to meet this current requirement. 
Cautions taken: 
Working with electricity, even at low voltages, can be dangerous. There a risk of damage to equipment like arduino mega 2560 or expensive SIM908 and ourself – .We carefully made connections of the components and followed the instructions provided in datasheet very carefully, and sought advice and help others who previously worked on gsm based project as we are newbies to SIM908 module. 
We’ve disconnected GSM from Arduino while Uploading the code to Arduino . 
While issuing ATH command we use Serial.println & not Serial.print.This println is to send Carriage Return a-fter the ATH command.Again the reasonable amount of Delay (6secs) are used after issuing the one sms. 
This delays in the code are mandatory for GSM to respond. 
Future Scope and Plan: 
Our project arduino based substation/power station monitoring with gsm is mainly intended to monitor parameters like voltage through a GSM based mobile phone. The arduino is programmed in such a way that if a particular
Remote Monitoring of a Substation/Power Station using GSM Page 11 
fixed format of sms is sent from GSM modem to mobile phone, which is fed as output from the arduino .A return feedback message will be sent from the mobile to GSM modem. 
The temperature, current, phase angle, frequency at the substation where devices are being operated can also be known using this object. 
In future we can use this project in several applications by adding additional components to this project. 
This project can be extended by using GPRS technology, which helps in sending the monitored and controlled data to any place in the world. 
By connecting wireless camera in substation user can see the entire equipments from our personal computer only by using GPRS and GPS technology. The monitoring of the devices can be done from the personal computer and we can use to handle so many situations. 
By connecting temperature and current sensor, we can get the temperature of dangerous zones in industries and we can use personal computer itself instead of sending human to there and facing problems at the field. The system will detect the substation parameters and it gives information to the arduino and arduino gives the information to the user mobile phone through gsm. 
We can certainly measure current,phase angle by developing the circuitry.This can be modified and developed to make a successful smart grid system.Again we can turn it to a smart energy meter by which electricity parameters along eith the cost calculation can be monitored by the user by gsm or gprs and they can minimize their electricity uses to a optimum level.This project can be a little starting to reduce the electricity loss by monitoring the electricity use both in the pick and off pick hour and the user can control the use of big reactive system like conditioning,oven,motor,etc.Again if any office or house generate electricity by using renewable power plant,the user can monitor the generation and again the electricity authority can also be aware of this generation level by monitoring the voltage level using this project and the idea. Moreover the project can be developed to a level to supply the local
Remote Monitoring of a Substation/Power Station using GSM Page 12 
level electricity generation to the national grid by using this monitoring project. 
Conclusion: 
The project “REMOTE MONITORING OF A POWER STATION/ SUBSTATION WITH GSM” was designed such that the substation parameters can be monitored and also controlled from anywhere in the world using GSM connected to mobile phone. Using highly advanced gsm module with the help of dedicated power supply, the project has been successfully implemented. Thus the project has been successfully designed and tested.
Remote Monitoring of a Substation/Power Station using GSM Page 13

More Related Content

What's hot

Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05Vidhi Shah
 
"Black Box for a Car" report
"Black Box for a Car" report"Black Box for a Car" report
"Black Box for a Car" reportsubrat manna
 
Fault detection using iot PRESENTATION
Fault detection using iot PRESENTATIONFault detection using iot PRESENTATION
Fault detection using iot PRESENTATIONAnjanKumarHanumantha
 
Plc report with project
Plc report with projectPlc report with project
Plc report with projectPriya Hada
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293DAmit kumar
 
IoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationIoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationFarhan Ahmed Rahee
 
Embedded Systems Training Report
Embedded Systems Training ReportEmbedded Systems Training Report
Embedded Systems Training ReportAkhil Garg
 
Speed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorSpeed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorShivagee Raj
 
Arduino based health monitoring system
Arduino based health monitoring systemArduino based health monitoring system
Arduino based health monitoring systemYousuf Shaikh
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET Journal
 
Plc example presentation
Plc example presentationPlc example presentation
Plc example presentationRoshit Kadiru
 
temperature dependent dc fan speed controller withou using micrcontroller
temperature dependent dc fan speed controller withou using micrcontrollertemperature dependent dc fan speed controller withou using micrcontroller
temperature dependent dc fan speed controller withou using micrcontrollerDeepak Yadav
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by BluetoothAakashkumar276
 
Gesture Control Robot
Gesture Control RobotGesture Control Robot
Gesture Control Robotnikhilsaini25
 
Temperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoTemperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoJagannath Dutta
 
Automatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterAutomatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterNiladri Dutta
 

What's hot (20)

IGBT
IGBTIGBT
IGBT
 
Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05Home Automation Using Arduino Uno and HC-05
Home Automation Using Arduino Uno and HC-05
 
"Black Box for a Car" report
"Black Box for a Car" report"Black Box for a Car" report
"Black Box for a Car" report
 
Fault detection using iot PRESENTATION
Fault detection using iot PRESENTATIONFault detection using iot PRESENTATION
Fault detection using iot PRESENTATION
 
Plc report with project
Plc report with projectPlc report with project
Plc report with project
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293D
 
IoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationIoT Based Home Automation System Presantation
IoT Based Home Automation System Presantation
 
Embedded Systems Training Report
Embedded Systems Training ReportEmbedded Systems Training Report
Embedded Systems Training Report
 
automatic room light controller
automatic room light controllerautomatic room light controller
automatic room light controller
 
Speed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulatorSpeed control of Three phase Induction motor using AC voltage regulator
Speed control of Three phase Induction motor using AC voltage regulator
 
Arduino based health monitoring system
Arduino based health monitoring systemArduino based health monitoring system
Arduino based health monitoring system
 
IRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy MeterIRJET- IoT based Smart Energy Meter
IRJET- IoT based Smart Energy Meter
 
Plc example presentation
Plc example presentationPlc example presentation
Plc example presentation
 
temperature dependent dc fan speed controller withou using micrcontroller
temperature dependent dc fan speed controller withou using micrcontrollertemperature dependent dc fan speed controller withou using micrcontroller
temperature dependent dc fan speed controller withou using micrcontroller
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by Bluetooth
 
Gesture Control Robot
Gesture Control RobotGesture Control Robot
Gesture Control Robot
 
Temperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoTemperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduino
 
Plc presentation
Plc presentation Plc presentation
Plc presentation
 
Automatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterAutomatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counter
 
L11 rc triggering circuit
L11 rc triggering circuitL11 rc triggering circuit
L11 rc triggering circuit
 

Viewers also liked

GSM Based Fault Monitoring System (Project)
GSM Based Fault Monitoring System (Project)GSM Based Fault Monitoring System (Project)
GSM Based Fault Monitoring System (Project)Aishwary Verma
 
Monitoring & Controlling of Devices using GSM
Monitoring & Controlling of Devices using GSMMonitoring & Controlling of Devices using GSM
Monitoring & Controlling of Devices using GSMpriyanka kini
 
Microcontroller based-substation-monitoring-and-controlling-system
Microcontroller based-substation-monitoring-and-controlling-systemMicrocontroller based-substation-monitoring-and-controlling-system
Microcontroller based-substation-monitoring-and-controlling-systemMahmud Hasan Uday
 
Transformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technologyTransformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technologyKartik Patel
 
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORT
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORTGSM BASED DEVICES CONTROL SYSTEM PROJECT REPORT
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORTAvinash Kannojia
 
Microcontroller based transformer protectio
Microcontroller based transformer protectioMicrocontroller based transformer protectio
Microcontroller based transformer protectioAminu Bugaje
 
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.nikhilhiware
 
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...ASHOKKUMAR RAMAR
 
Protection of power transformer
Protection of power transformerProtection of power transformer
Protection of power transformerRitesh Verma
 
Substation monitoring1
Substation monitoring1Substation monitoring1
Substation monitoring1buckky
 
Optimum energy management system
Optimum energy management systemOptimum energy management system
Optimum energy management systemMuhammad Zubair
 
project report on plc based load sharing
project report on plc based load sharingproject report on plc based load sharing
project report on plc based load sharingVivek Arun
 
GSM Based Motor Controller
GSM Based Motor ControllerGSM Based Motor Controller
GSM Based Motor Controllergopalsystems
 
Micro-controller based Automatic Power Factor Correction System Report
Micro-controller based Automatic Power Factor Correction System ReportMicro-controller based Automatic Power Factor Correction System Report
Micro-controller based Automatic Power Factor Correction System ReportTheory to Practical
 
Wireless power-theft-monitering-ppt
Wireless power-theft-monitering-pptWireless power-theft-monitering-ppt
Wireless power-theft-monitering-pptArjit Rajwal
 
home appliance control using gsm
home appliance control using gsmhome appliance control using gsm
home appliance control using gsmChinmoy Jena
 
Corruption and Organized Crime Threat Monitoring Report
Corruption and Organized Crime Threat Monitoring ReportCorruption and Organized Crime Threat Monitoring Report
Corruption and Organized Crime Threat Monitoring ReportМЦМС | MCIC
 
GSM Based Device Controlling and Fault Detection
GSM Based Device Controlling and Fault DetectionGSM Based Device Controlling and Fault Detection
GSM Based Device Controlling and Fault DetectionIJCERT
 
Generator Monitoring System Document
Generator Monitoring System DocumentGenerator Monitoring System Document
Generator Monitoring System DocumentSalman Ahmed
 

Viewers also liked (20)

GSM Based Fault Monitoring System (Project)
GSM Based Fault Monitoring System (Project)GSM Based Fault Monitoring System (Project)
GSM Based Fault Monitoring System (Project)
 
Monitoring & Controlling of Devices using GSM
Monitoring & Controlling of Devices using GSMMonitoring & Controlling of Devices using GSM
Monitoring & Controlling of Devices using GSM
 
Microcontroller based-substation-monitoring-and-controlling-system
Microcontroller based-substation-monitoring-and-controlling-systemMicrocontroller based-substation-monitoring-and-controlling-system
Microcontroller based-substation-monitoring-and-controlling-system
 
Transformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technologyTransformer protection using microcontroller and gsm technology
Transformer protection using microcontroller and gsm technology
 
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORT
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORTGSM BASED DEVICES CONTROL SYSTEM PROJECT REPORT
GSM BASED DEVICES CONTROL SYSTEM PROJECT REPORT
 
Microcontroller based transformer protectio
Microcontroller based transformer protectioMicrocontroller based transformer protectio
Microcontroller based transformer protectio
 
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
MY PROJECT-automatic load sharing of transformer by using GSM tecnique.
 
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...
LATEST ELECTRICAL PROJECTS ABSTRACT-POWER SHARING OF TRANSFORMER WITH OVERLOA...
 
Protection of power transformer
Protection of power transformerProtection of power transformer
Protection of power transformer
 
Substation monitoring1
Substation monitoring1Substation monitoring1
Substation monitoring1
 
Optimum energy management system
Optimum energy management systemOptimum energy management system
Optimum energy management system
 
project report on plc based load sharing
project report on plc based load sharingproject report on plc based load sharing
project report on plc based load sharing
 
GSM Based Motor Controller
GSM Based Motor ControllerGSM Based Motor Controller
GSM Based Motor Controller
 
Micro-controller based Automatic Power Factor Correction System Report
Micro-controller based Automatic Power Factor Correction System ReportMicro-controller based Automatic Power Factor Correction System Report
Micro-controller based Automatic Power Factor Correction System Report
 
Wireless power-theft-monitering-ppt
Wireless power-theft-monitering-pptWireless power-theft-monitering-ppt
Wireless power-theft-monitering-ppt
 
home appliance control using gsm
home appliance control using gsmhome appliance control using gsm
home appliance control using gsm
 
Corruption and Organized Crime Threat Monitoring Report
Corruption and Organized Crime Threat Monitoring ReportCorruption and Organized Crime Threat Monitoring Report
Corruption and Organized Crime Threat Monitoring Report
 
Status report i
Status report   iStatus report   i
Status report i
 
GSM Based Device Controlling and Fault Detection
GSM Based Device Controlling and Fault DetectionGSM Based Device Controlling and Fault Detection
GSM Based Device Controlling and Fault Detection
 
Generator Monitoring System Document
Generator Monitoring System DocumentGenerator Monitoring System Document
Generator Monitoring System Document
 

Similar to A project report on Remote Monitoring of a Power Station using GSM and Arduino

An automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankAn automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankeSAT Journals
 
An automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismAn automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismeSAT Publishing House
 
Smart accident detector and intimator [autosaved]
Smart accident detector and intimator [autosaved]Smart accident detector and intimator [autosaved]
Smart accident detector and intimator [autosaved]Sivajyothi paramsivam
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft controlAffable Mee
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft controlAffable Mee
 
speed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTspeed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTswaroop009
 
Ultrasonic level meter
Ultrasonic level meterUltrasonic level meter
Ultrasonic level meterhandson28
 
RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD RS
 
HOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINOHOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINOEklavya Sharma
 
IRJET- IoT based Fault Finding of an Underground Cable
IRJET-  	  IoT based Fault Finding of an Underground CableIRJET-  	  IoT based Fault Finding of an Underground Cable
IRJET- IoT based Fault Finding of an Underground CableIRJET Journal
 
Water meter secure start guide
Water meter secure start guideWater meter secure start guide
Water meter secure start guideDomotica daVinci
 
Development of Compact P-Band Vector Reflectometer
Development of Compact P-Band Vector Reflectometer Development of Compact P-Band Vector Reflectometer
Development of Compact P-Band Vector Reflectometer IJECEIAES
 
KAGITHALA YASASWINI
KAGITHALA YASASWINIKAGITHALA YASASWINI
KAGITHALA YASASWINIMAHESH294
 
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALAfault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALAMAHESH294
 
Black Box for a Car
Black Box for a CarBlack Box for a Car
Black Box for a Carsubrat manna
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptVenkatesh Kaduru
 
Substation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoTSubstation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoTIRJET Journal
 

Similar to A project report on Remote Monitoring of a Power Station using GSM and Arduino (20)

An automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankAn automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tank
 
An automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismAn automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanism
 
Smart accident detector and intimator [autosaved]
Smart accident detector and intimator [autosaved]Smart accident detector and intimator [autosaved]
Smart accident detector and intimator [autosaved]
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft control
 
Electricity theft control
Electricity theft controlElectricity theft control
Electricity theft control
 
EESS.pptx
EESS.pptxEESS.pptx
EESS.pptx
 
speed control of three phase induction motor using IOT
speed control of three phase induction motor using IOTspeed control of three phase induction motor using IOT
speed control of three phase induction motor using IOT
 
Ultrasonic level meter
Ultrasonic level meterUltrasonic level meter
Ultrasonic level meter
 
RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127
 
HOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINOHOME AUTOMATION USING ARDUINO
HOME AUTOMATION USING ARDUINO
 
IRJET- IoT based Fault Finding of an Underground Cable
IRJET-  	  IoT based Fault Finding of an Underground CableIRJET-  	  IoT based Fault Finding of an Underground Cable
IRJET- IoT based Fault Finding of an Underground Cable
 
Water meter secure start guide
Water meter secure start guideWater meter secure start guide
Water meter secure start guide
 
INTELIGENT RAILWAY SYSTEM
INTELIGENT RAILWAY SYSTEMINTELIGENT RAILWAY SYSTEM
INTELIGENT RAILWAY SYSTEM
 
Development of Compact P-Band Vector Reflectometer
Development of Compact P-Band Vector Reflectometer Development of Compact P-Band Vector Reflectometer
Development of Compact P-Band Vector Reflectometer
 
KAGITHALA YASASWINI
KAGITHALA YASASWINIKAGITHALA YASASWINI
KAGITHALA YASASWINI
 
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALAfault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
fault detection of transformer using GSM,,,,by YASASWINI.KAGITHALA
 
Smart Energy Meter
Smart Energy MeterSmart Energy Meter
Smart Energy Meter
 
Black Box for a Car
Black Box for a CarBlack Box for a Car
Black Box for a Car
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners ppt
 
Substation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoTSubstation Monitoring and Control Based on Microcontroller Using IoT
Substation Monitoring and Control Based on Microcontroller Using IoT
 

Recently uploaded

2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projectssmsksolar
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdfKamal Acharya
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf203318pmpc
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptMsecMca
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 

Recently uploaded (20)

(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects2016EF22_0 solar project report rooftop projects
2016EF22_0 solar project report rooftop projects
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 

A project report on Remote Monitoring of a Power Station using GSM and Arduino

  • 1. A PROJECT ON “REMOTE MONITORING OF A POWER STATION/ SUBSTATION (VOLTAGE MONITORING) USING GSM” Submitted to: Dr. Md. Farhad Hossain Assistant Professor, Dept. of EEE,BUET Submitted by: Abdullah Al Arafat (1006135) Tuhin Paul (1006140) Jawwad Sadiq Ayon (1006144) Nouroz Rahman Amon (1006163) Submission Date:01-11-2014 A PROJECT ON “REMOTE MONITORING OF A POWER STATION/ SUBSTATION (VOLTAGE MONITORING) USING GSM” Submitted to: Dr. Md. Farhad Hossain Assistant Professor, Dept. of EEE,BUET Submitted by: Jawwad Sadiq Ayon (1006144) Abdullah Al Arafat (1006135) Tuhin Paul (1006140) Nouroz Rahman Amon (1006163) Submission Date: 01-11-2014 Bangladesh University of Engineering & Technology Course No: EEE 310
  • 2. Remote Monitoring of a Substation/Power Station using GSM Page 1 Objectives: The purpose of this project is to monitor the remote electrical parameters like Voltage, Current ,Phase angle and Frequency (N.B.:in this project only voltage has monitored)of power station/substation and send these real time values over GSM network using GSM Modem/phone at power station/substation. Abstract of the Project: User can monitor the remote electrical parameters by receiving commands in the form of SMS messages .In this project we make a prototype of electric substation the voltage of which will be monitored by the user. This system also can automatically send the real time electrical parameters (in this project we have shown monitoring voltage parameter only) periodically (based on time settings) in the form of SMS. This project makes use of an arduino board which is commonly termed as arduino mega 2560. The Adc pins can efficiently communicate with the different sensors being used. The microcontroller in the arduino board is provided with some internal memory to hold the code. The code is programmed using arduino programming language Introduction: Monitoring of substations are essential task for supplying healthy power to the consumers in this automated era. Depending on the voltage levels and end users, there are transmission or distribution substations those supply electrical power to various loads. Remote monitoring make these substations to be operated through wireless communication technologies like GSM, GPRS, Ethernet, etc. Substations consist of various equipment like transformers, circuit breakers, relays, APFC panels, etc., and these equipment ought to be operated in such a way that the loads must be delivered safely with
  • 3. Remote Monitoring of a Substation/Power Station using GSM Page 2 specified parameters. These parameters include voltage, current, frequency, power factor, temperature, and so on. The following GSM based project deal with substation monitoring aspects. Here in this project we made a prototype of substation and only one parameter voltage is to be remote monitored. Major Equipment Used : 1. 1x 16×2 parallel LCD display (compatible with Hitachi HD44780 driver) 2. 1x Arduino Board 3. 1x 10kΩ and 1x5kΩ potentiometer 4. 5x 10kΩ resistor 5. 4.4kΩ resistor using a bunch of different resistors. 6. SIM-908 GSM module 7. GSM Antenna 8. Jumper Wire 9. Power supply for SIM908 10. Breakout Board, Algorithm for Measuring Voltage using Arduino: This project shows how to make remote voltage monitoring system with Arduino. It uses voltage divider concept to estimate the voltage input .Each analog input of Arduino has 1024 steps from 0 to 5 volt. This experiment used a simple voltage divider to measure roughly 0 to 12 volt (using 50k as
  • 4. Remote Monitoring of a Substation/Power Station using GSM Page 3 R1 and 4k3 as R2).By varying the values of R1 and R2, the precision and range of the measurement can be changed. The analog inputs of an Arduino can measure up to 5V (when using the built-in analog reference voltage). Even when only connecting to a 5V circuit, we have used the resistors to help protect the Arduino from short- circuits or unexpected voltage surges. Those two resistors form a potential divider that is used to lower the voltage being measured to a level that the Arduino can read. This actually extends the range that can be used. For example, if resistors are used to halve the input voltage then the Arduino can effectively read up to 10V (since 10V will be read as 5V, 5V will be read as 2.5V…). This comes at the expensive of accuracy – the ADCs in the Arduino can read up to 1024 different levels between 0V and 5V. By expanding the range to 10V, those 1024 levels are spread across a wider range and are therefore less able to detect small changes. You can increase the resistance value of R2, then the maximum voltage that can be read will be decreased; giving a slightly more accurate reading. With R1 at 100Ko and R2 at 10Ko, the input voltage is reduced by a factor of around 11 – allowing the monitoring system to read from 0V–55V. The analog sensor on the Arduino board senses the voltage on the analog pin and converts it into a digital format that can be processed by the microcontroller. Here, we are feeding the input voltage to the analog pin
  • 5. Remote Monitoring of a Substation/Power Station using GSM Page 4 (A0) using a simple voltage divider circuit comprising resistors R1 (50k) and R2 (4.4k) – allowing the monitoring system to read from 0V–61V. The formula for calculating values in a potential divider is: Here, Vout=(R2/(R1+R2))*Vin So, Vin = Vout / (R2/(R1+R2)); When measuring the voltage in the loop() routine, analogRead(0) is used to read the level from analog input 0. The returned value is an integer in the range 0 through 1023, so it must first be adjusted to a range 0 through 5. This is done by multiplying it by the power supply level, and then dividing by 1024. Vout = (value * 5.0) / 1024.0
  • 6. Remote Monitoring of a Substation/Power Station using GSM Page 5 When measuring the voltage in the loop ( ) routine, analogRead(0) is used to read the level from analog input 0. The returned value is an integer in the range 0 through 1023, so it must first be adjusted to a range 0 through 5. This is done by multiplying it by the maximum power supply level, and then dividing by 1024. The 10k Potentiometer controls the contrast of the LCD panel. Nothing fancy here. Code: const int timesTosend=10; int count=0; // include the library code: #include <LiquidCrystal.h> // initialize the library with the numbers of the interface pins LiquidCrystal lcd(7, 8, 9, 10, 11, 12); // variables for input pin and control LED int analogInput = 1; float vout = 0.0; float vin = 0.0; float R1 = 50000.0; // !! resistance of R1 !! float R2 = 4400.0; // !! resistance of R2 !! // variable to store the value int value = 0; void setup() { Serial1.begin(9600); //Baud rate of the GSM/GPRS Module Serial.begin(9600); // Send ANSI terminal codes Serial.print("x1B"); // End ANSI terminal codes // declaration of pin modes pinMode(analogInput, INPUT); // set up the LCD's number of columns and rows: lcd.begin(16, 2); lcd.setCursor(0, 0); lcd.print("Monitor System!"); lcd.setCursor(0, 1); lcd.print("Vin="); } void loop() { while(count<timesTosend){ value = analogRead(analogInput); vout = (value * 5.0) / 1024.0;
  • 7. Remote Monitoring of a Substation/Power Station using GSM Page 6 vin = vout / (R2/(R1+R2)); if (vin<0.50) { vin=0.0; } Serial.println("--------------------"); Serial.println("Substation Voltage Monitoring:"); //Serial.print("Maximum Voltage: "); Serial.println("Vin="); Serial.println(vin); Serial.println("--------------------"); Serial.println(""); Serial1.print("r"); delay(1000); Serial1.print("AT+CMGF=1r"); delay(1000); Serial1.print("AT+CMGS="+8801818796089"r"); //Number to which you want to send the sms delay(1000); Serial1.print("System Voltage="); delay(100); Serial1.print(vin); delay(100); Serial1.print("V"); delay(100); Serial1.write(0x1A); delay(1000); //print result to lcd display lcd.setCursor(4, 1); lcd.print(vin); lcd.print("V"); delay(6000); count++; } } The Serial Port Monitor in the IDE is used to view the messages sent by this sketch. However, this is not a particularly advanced monitor, and cannot display the ANSI terminal sequences that are used to provide a friendlier display. Better results can be had by using a terminal package such as Hyperterminal, RealTerm or Putty. The serial port we need to connect to is found from the Arduino IDE:  On the Tools menu, we have clicked Serial Port and looked for the item that is ticked. The other setting we have used are:
  • 8. Remote Monitoring of a Substation/Power Station using GSM Page 7 Display:ANSI Speed:9600 Parity:Non Data bits:8 Figure: Prototype of a substation Monitoring System developed by our project: The values of voltage is directly applied to one of the adc input pin of the arduino. Along with this, a lcd display is connected. The monitoring PC is connected to the main station. The arduino at the substation monitors and
  • 9. Remote Monitoring of a Substation/Power Station using GSM Page 8 captures the voltage values for a particular period of time interval. The captured values are stored in the data register and displayed using the LCD display. The monitored voltage are transmitted using the gsm modem for each and every time interval programmed in the code. A gsm antenna tuned for the selected RF frequency can be utilized for the transmission of the RF signal but the antenna has to exhibit a unidirectional radiation pattern. In the receiver side of the user profile, the receiver antenna converts the RF signal into electrical signal and acquires the information which has been transmitted by the transmitter. Based on the received information, controlling operation is performed. If the receiver receives the substation parameters which is greater than the fixed threshold level, then immediately the units is shutdown so as to protect the same.
  • 10. Remote Monitoring of a Substation/Power Station using GSM Page 9 Figure: SIM908 module with breakout board. Sending SMS from GSM We used a grameenphone sim in our project.This is the procedure how we sent SMS through GSM: 1.First of all GSM was woken up by sending AT command 2.The GSM was put on Text mode by feeding command AT+CMGF=1 3.then we have given the command AT+CMGS=”Mobile_number” 4.Then we wrote the messages to be sent via gsm. 5.Press CTRL+Z to send the SMS by writing Serial.write(0x1A) The above steps were coded for Arduino to handle automatically Special Feature of this project : 1. Substation/power station voltage can be monitored from anywhere in the world. 2. Feedback of the devices being operated can also be developed. 3. Efficient and low cost monitoring system. 4. Easy to monitor and user friendly. 5. Real time monitoring . Constraints: 1. Depends on the network signal strength.
  • 11. Remote Monitoring of a Substation/Power Station using GSM Page 10 2. Power consumption is pretty high. Problems we face: 1. The power supply was too much sensitive. 2. If the voltage goes down crossing a certain limit the module automatically shuts down.So, during the time of completeing project we faced little bit trouble working with it. 3. Again at the starting of the module it drives a huge amount of curren nearabout 2 Amp.So, it was a challenge for us to meet this current requirement. Cautions taken: Working with electricity, even at low voltages, can be dangerous. There a risk of damage to equipment like arduino mega 2560 or expensive SIM908 and ourself – .We carefully made connections of the components and followed the instructions provided in datasheet very carefully, and sought advice and help others who previously worked on gsm based project as we are newbies to SIM908 module. We’ve disconnected GSM from Arduino while Uploading the code to Arduino . While issuing ATH command we use Serial.println & not Serial.print.This println is to send Carriage Return a-fter the ATH command.Again the reasonable amount of Delay (6secs) are used after issuing the one sms. This delays in the code are mandatory for GSM to respond. Future Scope and Plan: Our project arduino based substation/power station monitoring with gsm is mainly intended to monitor parameters like voltage through a GSM based mobile phone. The arduino is programmed in such a way that if a particular
  • 12. Remote Monitoring of a Substation/Power Station using GSM Page 11 fixed format of sms is sent from GSM modem to mobile phone, which is fed as output from the arduino .A return feedback message will be sent from the mobile to GSM modem. The temperature, current, phase angle, frequency at the substation where devices are being operated can also be known using this object. In future we can use this project in several applications by adding additional components to this project. This project can be extended by using GPRS technology, which helps in sending the monitored and controlled data to any place in the world. By connecting wireless camera in substation user can see the entire equipments from our personal computer only by using GPRS and GPS technology. The monitoring of the devices can be done from the personal computer and we can use to handle so many situations. By connecting temperature and current sensor, we can get the temperature of dangerous zones in industries and we can use personal computer itself instead of sending human to there and facing problems at the field. The system will detect the substation parameters and it gives information to the arduino and arduino gives the information to the user mobile phone through gsm. We can certainly measure current,phase angle by developing the circuitry.This can be modified and developed to make a successful smart grid system.Again we can turn it to a smart energy meter by which electricity parameters along eith the cost calculation can be monitored by the user by gsm or gprs and they can minimize their electricity uses to a optimum level.This project can be a little starting to reduce the electricity loss by monitoring the electricity use both in the pick and off pick hour and the user can control the use of big reactive system like conditioning,oven,motor,etc.Again if any office or house generate electricity by using renewable power plant,the user can monitor the generation and again the electricity authority can also be aware of this generation level by monitoring the voltage level using this project and the idea. Moreover the project can be developed to a level to supply the local
  • 13. Remote Monitoring of a Substation/Power Station using GSM Page 12 level electricity generation to the national grid by using this monitoring project. Conclusion: The project “REMOTE MONITORING OF A POWER STATION/ SUBSTATION WITH GSM” was designed such that the substation parameters can be monitored and also controlled from anywhere in the world using GSM connected to mobile phone. Using highly advanced gsm module with the help of dedicated power supply, the project has been successfully implemented. Thus the project has been successfully designed and tested.
  • 14. Remote Monitoring of a Substation/Power Station using GSM Page 13