Electric Skateboards and Wind Turbines?

So this is the wind-“MPPT” algorithm I have used (some years ago). It kind of worked…

It makes sense, because the power in the wind increases with the cubed windspeed (windspeedwindspeedwindspeed).

It’s an approximation of the physics… My tip-speed-ration TSR was high, because it was a two-blade turbine.

Here’s a link to the arduino-code, and sorry it’s a mess. The algorithm is in there. (the code was not running with any Vesc-hardware at that time)

1 Like

Last comment:
From the above it appears that you DON’T need to subtract the 35W from the calculated power, because losses are built into the Cp constant. So:

Power = POWER_FACTOR * windspeed³

Tune the algorithm to fit your turbine by modifying the TSR and Cp values.

If you want to get an explanation of the algorithm, just feed the whole thing to ChatGPT :slight_smile:

Thank you for the feedback.Are a lot of questions by let’s take them one by one.

So wind speed is just a teoretical one? I dont understend why is devided by 35 (valFloat)
windspeed = rpm * RPM_TO_TIP_SPEED_FACTOR / valFloat[TipSpeedRatio_ID]; // Unit is meter/sec

The cage with the motor is probably reaching 40kg so the mass will act like a dealy.

Meanwhile I work on the mechical side. Most of the parst are fabricated and need to assemble them.This is a sneak peek :slight_smile: (is top botom)

Online calculator Wind Power Calculators for various wind turbines-HAWT/VAWT – Smart Servo Home


From this I can see that cage speed is quiet height.
Then the voltage is 1 v/10 rpm for this generator reachign 200V.
In the same time i was looking inside generator that is in Star and i can change wires in Delta.

For now my target is to install and see if the turbine is self limiting RPM of the cage.

2 Likes

I was wrong before “I dont understend why is devided by 35 (valFloat)” is a nonsense.

Is RPM_TO_TIP_SPEED_FACTOR 0.120427718 caluclated or determine by testing?

No, it’s a straight forward figure given by: Circumference / 60 sec.

The Circumference of the swept area is 2*PI *Radius

(Circumference is the length the tip travels in 1 rotation, hence the unit: rotations per 60sec, or simply rpm)

And in theory a two-bladed turbine can generate as much energy as a 3-bladed. It’s the swept area that matters.

BUT obviously you have a VAWT… Some of the constants might be different here. You can try give the equations for the HAWT to e.g. chatgpt, and then ask it to give you the formulae for a VAWT :slight_smile:

Hi, the equation are the same.
Here a testing rig don’t give too hard :slight_smile:


1 Like