windgen.org vawt discussion

Members Login
Username 
 
Password 
    Remember Me  
Post Info TOPIC: Anemometer for Turbulent Winds


Senior Member

Status: Offline
Posts: 362
Date:
RE: Anemometer for Turbulent Winds
 


sjh7132 wrote:

With performance like that on the paper, maybe it should be scaled up and made out of fiberglass as a turbine.


Too may other projects going on right now.

Two things I have been working on for VAWTS are:

      Enclosed core rotors where the alt. pole and framework are enclose or shielded from the wind.

      The other is 3D shapes that allow sheet material to hold their shape without extra support.

The anemometer rotor is a combination of the two.

     



__________________
Dan


Guru

Status: Offline
Posts: 3925
Date:
RE: Anemometer for Turbulent Winds
 


With performance like that on the paper, maybe it should be scaled up and made out of fiberglass as a turbine.



__________________

Steve


Senior Member

Status: Offline
Posts: 362
Date:
Plastic vs paper
 


                                       Plastic                           Paper

 

5.0 mph                       3.0 Hz  .8 TSR              7.8 Hz   2.0 TSR

 

11.8 mph                     7.0 Hz   .8 TSR             20.0 Hz  2.2 TSR

 

NGR  #40 C anemometers      .757 m/s/Hz

 

The 3 cone (cup) maintained its RPS much better when tilting into the wind or away from the wind.

Maybe the way to go when controlling a turbine with an anemometer would be to use an anemometer with the same style rotor as turbine so it will react to the same type of wind as the turbine.



Attachments
__________________
Dan


Guru

Status: Offline
Posts: 3925
Date:
RE: Anemometer for Turbulent Winds
 


JeffD wrote:
The turbines generate about 10% more power in February than in August for the same wind speed.

 Interesting.  Have you noticed if humidity has any effect?  Supposedly humid air is less dense.  H2O has a molecular weight of 18, and N2 has a weight of 28.  I'm not sure what percent of the molecules are water on a humid day though.



__________________

Steve


Senior Member

Status: Offline
Posts: 167
Date:
RE: Anemometer for Turbulent Winds
 


I do log ambient air temperature but not atmospheric pressure.  In this third year of logging with the buck controller I have noticed that air temperature does have an impact on power output.

The max and min temperature extremes occur in August and February here.  The turbines generate about 10% more power in February than in August for the same wind speed.  Because the controller is using the table look-up method instead of trying to find max power point I can't really tell if TSR is different at the max power point for different air temperatures.  But that would be a good test to run for this summer and next winter.



__________________


Senior Member

Status: Offline
Posts: 362
Date:
RE: Anemometer for Turbulent Winds
 


JeffD wrote:

 

I did try one algorithm that just looked at the current TSR.  If actual TSR was greater than design TSR then increase load.  If actual TSR was less than design TSR then decrease load.  It works but does not always give maximum power but is close.  I found out that my blades TSR and maximum power point changes with wind speed,  the TSR at maximum power point does not stay constant for all wind speeds.


 It looks like you have gathered a wealth of information over the years.

Have you been able to plot best TSR to wind speed? Or does that change with temperature and pressure?



__________________
Dan


Senior Member

Status: Offline
Posts: 167
Date:
RE: Anemometer for Turbulent Winds
 


I've built a few different anemometers for the buck controller but haven't come to a conclusion yet as to which is better.  There are pros and cons to each type.

I do find the low inertia type have a faster response to quickly changing winds which is what I needed since I was dealing with very small turbines that responded very quickly to the changing wind.

Here is one that uses a single magnet and coil so it generates a pulse each revolution.

anemometer2.jpg

I also have a few built from pc muffin fans which provides two pulses per revolution:

anemometer3.jpg

The cups are ping pong balls cut in half.  The two units pictured are about four years old.

  The pulses from the anemometer trigger an interrupt routine that increments a counter.  The wind measurement routine runs every 250msecs.  If the counter is greater than 1 or time since last calc is greater than 4 secs then wind speed is calculated, the counter is reset, and the time since last calc is updated to current time.

Its a fairly easy calc for doing TSR in real time with the controller so I have that displayed in the wind column on the local display of the controller along with wind speed and direction.

turbinedata47ms.jpg

I did try one algorithm that just looked at the current TSR.  If actual TSR was greater than design TSR then increase load.  If actual TSR was less than design TSR then decrease load.  It works but does not always give maximum power but is close.  I found out that my blades TSR and maximum power point changes with wind speed,  the TSR at maximum power point does not stay constant for all wind speeds.



__________________


Guru

Status: Offline
Posts: 3925
Date:
RE: Anemometer for Turbulent Winds
 


Caleb wrote:


Sorry for the implication that a division would be too difficult.  Its just that one has to do a little bit of error checking with that method.  The other problem is when the air is still and a timer might overrun and go back to zero waiting for the next pulse.  Also, the time to take a measurement is variable.  But it is much faster in general.  :-)


 Don't worry, my microcontroller is not insulted. :-)

I don't check for division by zero because the wind would have to be in excess of 120 mph for that to happen, and if that's the case, I probably have bigger worries than a few bad readings.

I do have my timer hit a maximum and it fakes a pulse from the anemometer if it hits the limit.  So it can never read 0 mph.  I can only read .01 mph.  (or whatever a pulse ever 32.768 seconds is.)  The problem I'm running into is if it fakes the pulse, and then the real pulse comes in, making it appear that there was a very short time between pulses.  It's very rare, but it happens enough to screw up the scale on the graph once in a while.

I think I may have to ignore the first real pulse after a faked pulse.

 

 

 

 

 



__________________

Steve


Guru

Status: Offline
Posts: 3925
Date:
RE: Anemometer for Turbulent Winds
 


BTW I'm not sure how we got on the subject of how to digitize the anemometer input.  When I said my anemometer just averages the quickly changing wind, I meant because of it's inertia, not because my firmware averages some period of time.

If I give the anemometer a good spin with my hand, it spins for quite a while, even though there is no wind.  So even if the wind were to drop from 15mph to 0 instantly, the anemometer would take at least 30 seconds to reach zero.

 



__________________

Steve


Guru

Status: Offline
Posts: 1875
Date:
RE: Anemometer for Turbulent Winds
 


sjh7132 wrote:

My anemometer produces 1 pulse per rev.   My board measures the number of milliseconds between pulses.  Then my software on the host does the division to plot wind speed.  But it wouldn't be a problem for the microcontroller to do the division.

 


Sorry for the implication that a division would be too difficult.  Its just that one has to do a little bit of error checking with that method.  The other problem is when the air is still and a timer might overrun and go back to zero waiting for the next pulse.  Also, the time to take a measurement is variable.  But it is much faster in general.  :-)



__________________
- Bryan

Mechanical Engineer turned stay-at-home dad.
1 2 3  >  Last»  | Page of 3  sorted by
 
Quick Reply

Please log in to post quick replies.

Post to Facebook Tweet this page Post to Digg Post to Del.icio.us