Solar Panel Dual Management System(SP DMS)

by brijesh_sng in Circuits > Microcontrollers

4698 Views, 79 Favorites, 0 Comments

Solar Panel Dual Management System(SP DMS)

Slide23.PNG
solar theft Prevention.PNG
Maintenance Indication.PNG

This IoT prototype performs two functions: 1) Theft prevention and 2) Maintenance Indication of solar panel using LinkIt ONE and Sensors

1) Theft Prevention: To achieve this we use the GPS and GPRS features of LinkIt ONE Board with accelerometer. If the Panel moves or unauthorized activity occurs then there is change in axis value of accelerometer which will be detected by LinkIt ONE. It will process the data and notify the GPS location of Panel for tracking on webserver as well as on mobile app. Alert action is defined on webserver like email alert or sms.

2) Maintenance Indication: To achieve this function we use Dust, Voltage and Current Sensors. So when the deposition of dust on Panel increases the efficiency start to reduce, this can be monitored by LinkIt ONE using the sensor values. It will update this data on webserver which can be viewed to know the time for maintenance of Panel.

In both cases we use GPRS feature of LinkIt ONE to send data on Ubidots webserver.

In above image lists you will find components required for this DIY with their quantities.

Lets begin with development...

Getting Started With LinkIt One Board

LinkIt_switch_position.png

We need to interface various sensor, so during testing process keep switch position of LinkIt Board as UART, USB and SPI mode as shown in above image.

At final installation change only the position of supply switch for battery mode.

Here are various links for getting started with LinkIt ONE board and setups:

https://labs.mediatek.com/site/global/developer_to...

https://www.instructables.com/id/LinkIt-ONE-Getting...

This guides you through the process of installing drivers and uploading codes to LinkIt ONE. Also you will find details of board.

Interfacing and Testing of Sensors With LinkIt ONE

Sensor Interfacing & Testing with LinkIt ONE

Above video demonstrates interfacing details of each sensor and step by step testing process.

1. Voltage Sensor:

Since the analog pins of LinkIt ONE is tolerant upto 5V only, so we need to use potential divider network to bring down voltage of panel within the range of LinkIt ONE (0-5V).

So select R1=470k and R2=47k

Voltage at A2 = VINxR2/ (R1+R2)

=VIN/11

So upto 0-55V range we can measure


2. Current Sensor:

The ACS712 sensor read the current value and convert it into a relevant voltage value, The value that links the two measurements is sensitivity (you can find it on the datasheet) which – for 5A model – has a typical value of 185mV/A. The sensor can measure positive and negative currents (range -5A…5A), and power supply is 5V for the sensor, and the middle sensing voltage is 2.5V when no current. It measure both AC and DC current.

LinkIt ONE AnalogRead() function outputs a value between 0 (0V in input) and 1023 (5V in input) that is 0.0049V for each increment. We will use the following formula to covert the 0 ~1023 value to an ampere value.

A = (0.0049 X units - 2.5 / 0.185)

For testing, I have use 12V supply given to DC fan whose current is measured.


3. Grove dust sensor:
Following are links to get details of working of sensors:

http://www.seeedstudio.com/wiki/Grove_-_Dust_Senso...

http://www.howmuchsnow.com/arduino/airquality/gro...


4. Grove 3-Axis_Digital_Accelerometer(±16g):

Download accelerometer zip file from below link and extract it in libraries folder of arduino

http://www.seeedstudio.com/wiki/File:DigitalAccele...

you can find demo example with above library.

Here are the arduino code files for testing of individual sensors and their combine test.

Setting Up Ubidots Webserver for Project

Ubidots setup video

I have used Ubidots webserver for my prototype. Above video shows the ubidots setup process for solar panel dual management system.

Building Standalone WebApp

step1.PNG
step2.PNG
step3.PNG
iframe_index.PNG
iframe_position.PNG

If you don’t want to login again and again to your webserver just to view data than you can build standalone webapp. This can be open directly to visualize you webserver data.

To Makewebapp for your webserver steps are:

1. Copy/Download index.html and position.html in one folder from

https://github.com/BJSingh/Solar-Panel-Dual-Manage...

2. Copy the embed code of variable setup at webserver which is in iframe format from dashboard as shown in above image.

3. Open index.html and position.html file in any text editor. Replace iframe section with your iframe obtained from previous step in index file for variables and location in position file as shown in image

4. Open index.html in browser and you are done

Final Assembly

Slide1.PNG
Slide2.PNG
Slide3.PNG
Slide4.PNG
Slide5.PNG
Slide6.PNG
Slide7.PNG
Slide8.PNG
Slide9.PNG
Slide10.PNG
Slide11.PNG
Slide12.PNG
Slide13.PNG
Slide14.PNG
Slide15.PNG
Slide16.PNG
Slide17.PNG
Slide18.PNG
Slide20.PNG
Slide21.PNG
Slide22.PNG

Step wise assembly of everything is shown in above images.

After this you can upload final code given below to LinkIt ONE for testing.

Downloads

Result

no alert.png
panel current detail.PNG
panel voltage detail.PNG
alertoff.png
alerton.PNG
dasboard_alerton.png
dashboard_alerton2.png
Dust details.PNG
emailAlert.PNG
position_webapp.PNG
alertoff_webapp.PNG
alerton_webapp.png

Above images shows the test results of project.