SIDEBAR
»
S
I
D
E
B
A
R
«
Wind Turbine Communication Node Finally Finished
Aug 1st, 2010 by Dan Lampie

I have been working on the wind turbine Wi-Fi repeater and communication node for several years now, and I am proud to say that the project is finalized. During 2009, the emphasis was making sure that the turbine would work reliably regardless of the weather that blew through Rochester. This was easier said than done, but by the end of the 2009 school year all aspects of the project were working correctly. In fact the turbine even charged an electric bicycle for the RIT Innovation Festival Green Vehicle challenge.

For 2010, the next phase of the project was to incorporate a power monitoring device and to improve the performance of the wind turbine. For the past year my friend David Brenner, and I have been working on an Arduino based power meter which would remotely measure the power the turbine was producing and then send the data through the Internet back to a server. Work progressed slowly since this was a side project for David and I, and we were both busy with school work and clubs. We eventually got everything working in the lab, but when we moved the power meter to the field we ran into a few software bugs. We needed to incorporate an auto reconnect function for the Arduino as occasionally the wireless link would stop working for a couple of seconds, closing the data connection. Additionally, the idle power readings would fluctuate slightly since the battery voltage would change over time. An improvement would be to use voltage regulators to power the circuitry instead of running it directly off the batteries. Luckily we came up with some software solutions and everything worked correctly. Once everything was up and running it was really cool to remotely see the power output of the wind turbine.

Earlier in the year, a bearing in the first motor died and I just replace the motor with a smaller Ametek 30v motor that I had lying around. The Ametek performed fine, but it didn’t produce as much power as the first motor. When spring came around and the wind died down, the batteries started to lose their charge. To fix this issue I upgraded to a much larger motor, which practically doubled the power output during windy days. Additionally, I added a 30W solar panel to help produce power during the summer when there is little wind in Rochester. The wind turbine and solar panel complement each other great in Rochester, as it is cloudy and windy in the winter while the summers are sunny with little wind. With the new motor and solar panel, the battery issue was totally resolved.

This past May, David and I entered the Wind and Solar Powered Communication Node into the annual RIT IEEE Design Contest. There were many impressive student projects and David and I were fortunate to win the award for “Most Innovative Project.” We were extremely pleased with the award, especially since we had devoted so much of our free time working on the project, most of it outside in the freezing cold. Sadly, a week after David and I won our award, RIT notified us that we would have to relocate the wind turbine as a parking lot was going to be built where the turbine stood. Since I was graduating and no longer would live in Rochester, I decided to dismantle the project and focus on some other priorities. While the wind turbine project is no longer standing at RIT, no all is lost. Dave and I documented all aspects of the project and created a great website: www.turbinehotspot.com which explains the project and contains numerous pictures and videos.

Greening RIT Computer Labs
Jun 2nd, 2010 by Dan Lampie

Every night at RIT I would walk by closed computers labs, but to my amazement the computer and monitors remained powered on. As an institution that promoted its sustainable practices, not turning the computers off when the labs were closed seemed hypocritical. Every year students would complain about this issue, but nothing was ever done. My roommate, Ian Mikutel, and I decided that we would do something about RIT not having a computer power policy.

Ian and I met with the Chief Technology Officer of RIT, and she agreed that the idea of either turning computers off or having them sleep when they were not utilized was a great idea. We pursued the idea further and started meeting with ITS, the organization that managed a majority of the RIT computer labs and FMS, which was responsible for providing electricity to the buildings. Ian and I decided to implement an actually computer lab trial to demonstrate that a computer power policy could be successfully implemented and to measure the power savings. After many meetings we decided that putting the computers into S3 sleep mode after 20 minutes was the best way to maximize student productivity while minimizing power consumption. Having the computers sleep instead of turning them off ensured that computers would still receive security updates and patches in the middle of the night.

FMS installed a power meter to monitor the power consumption of the 16 Dell desktop computers in the lab. This allowed us to quantize the power savings of having the computers automatically sleep after 20 minutes. After modifying some files and fixing a couple configuration issues the computers automatically went to sleep and automatically awoke in the middle of the night to install security updates. We monitored the power consumption for around 10 weeks, and discovered that having the computers sleep reduced the labs power consumption by 66%! Everyone working on the project was amazed at the results, and when we extrapolated this to the thousands of computers at RIT, the environmental and monetary impacts are massive. Ian and I presented to the RIT’s Committee on Sustainable Practices which was very impressed with our presentation and decided to begin implementing computer sleep mode across campus. Ian and I have both recently graduated so we will not see the end results of our work, but we are both extremely proud to have made such a difference in reducing the power consumption across RIT.

Project Updates
Feb 11th, 2010 by Dan Lampie

The last month has been extremely busy with my MPLS project, remote power meter for the wind turbine, and skiing four days a week.  I thought it would be a good idea to provide some project updates:

The MPLS project is almost complete and everything is working correctly in emulation.  In the next couple of weeks I will transfer the configs to the actual hardware, rewire the telecom lab, and then add MPLS traffic engineering to the network.

Finalized MPLS Configuration

The remote power meter is also coming along nicely.  Everything is working correctly, but there is some small things that still have to be finished such as converting the values from the Arduino into actual power values in Watts.  I also designed a dedicated website for the wind turbine project and it should launch shortly.

Data from the Remote Power Meter

Skiing for the RIT Ski Team has been a blast!  Everyone on the team has had a great attitude and this has made every race enjoyable, even if the team didn’t perform well on race day.

Racing without a GS Suite

Wind Turbine Remote Arduino Power Meter
Nov 29th, 2009 by Dan Lampie

In the past month my friend David Brenner and I have made a great deal of progress with the wind turbine remote Arduino power meter.  The idea behind the project is to log the amount of power generated from the wind turbine and have the data automatically be uploaded online where it can graphed.  There are similar products on the market, but they are designed for much larger turbine and solar arrays, and thus are expensive.  We wanted to utilize the Arduino micro-controller as it versatile and inexpensive.  With all the parts the costs is around $80, which is a fraction of the cost of other solutions.

IMG_1811

The power meter works by reading the current flowing from the turbine.  We are using a Hall Effect current sensor as it is very efficient and can handle up 30 Amps.  Based on the amount of current, the sensor outputs a voltage which can then be read by the Arduino’s analog to digital input.  An issue with the Arduino’s ADC is that it is limited to only 1024 values ranging from 0-5 volts.  This means that the Arduino is not very accurate and can only sense a 4.8mV change.  The issue we had was that the current sensor’s output voltage changes by a very small amount and the change couldn’t be read by the Arduino.  To correct this, we fed the current sensor into an amplifier stage to increase the output voltage so the Arduino could read smaller current changes.  The current sensor outputs 1.5v with no current, so to ensure that we weren’t amplifying the voltage when there was no current we needed to implement a 1.5v offset.

IMG_1879

The Arduino microcontroller reads the data from the ADC input and then sends the data through the Internet to a server.  We are utilizing the wireless repeater portion of the wind turbine to transport the data through the Internet.  The server then reads the data and stores it in a mysql data base so graphs can be created.  The Arduino sends a new power reading every one second, so the graphs can be extremely accurate if we wish.  The remote power meter is currently in field trials to ensure the basic functionally works correctly.

RIT Imagine Festival
May 1st, 2009 by Dan Lampie

The wind turbine has been relocated at RIT for the RIT Imagine Festival this weekend. I couldn’t have moved everything with the help of my two friends, Cody Racette and David Brenner. The wind powered communication network is working great! It is fun to see people’s reactions when an old fashion phone rings outside. The wind turbine is also powering an electric bike for the RIT Green Challenge. The wind turbine cabinet has a 12V cigarette connector which the bike connects to charge. The bike has a small 110v DC to AC inverter on board so a battery charger with intelligent logic can be used. So far everything is working great, and I expect the bike to perform well in the RIT Green Challenge.

original

»  Substance:WordPress   »  Style:Ahren Ahimsa