0
\$\begingroup\$

Contexte: a DIY small wind turbine pancake generator, made with 2 rotor plates of 12 rectangular magnets, and one stator of 9 coil wired. After the generator, the 3 alternative electricity phases are transformed into direct current thanks to 3 bridges rectifier (one for each phase). After the rectifier, a LM317 circuit limits the voltage, in order to load battery, or an arduino board, or any else device.

Problem: at low speed of wind, when the generator charges a battery (or load arduino board, etc ...), the load generates a break onto the rotation of the wind turbine. The power of wind is not enough to maintain the rotation speed face to the reverse force generated by the load of the devices.

Question : Every things being equal, does the break phenomenon will be less important if we put magnets with low force (but with same shape) ?

Additional informations: Currently, I have build a DIY generator for a DIY vertical axis mini-wind-turbine. This generator is made with magnets and coils. The magnets currently used are very strong. The resistivity when it charges a battery is too important when wind is very low. Then, I wander if reducing the strength of magnets, choosing magnets with same surface, same shape of surface, but less strong than those currently used, without changing anything else, will reduce the resistivity ?

Said differently: For a pancake type generator, what will the effect of a reduce of the magnetism force of magnets (keeping the same magnet surface shape x*y, but decreasing the height h, the thickness) on the reverse electro magnetic force created when this pancake type generator is run by a mini wind turbine and feeds a charge (like a battery).

To better understand the system, I give you this following little sketch. You can see the general system. The type of pancake generator I'm talking about. The effect on rotation per minute when the generator loads a battery and when it does not, for a same low wind speed. And the question about the magnets.

sketch pancake generator mini wind turbine effect of magnets on RPM

My question is really focused on effect of the change of magnet force, regarding the RPM when appears the reverse electromagnetic force due the load of a device, everything else equal. Will the RPM be less slowed with lower force magnets ?

Whatever the effect on voltage or intensity, the question is really only focused on effect of the change of magnet force.

\$\endgroup\$
6
  • \$\begingroup\$ I think "resistivity" is the wrong word, but I'm not sure what the right one is here. \$\endgroup\$
    – pjc50
    Commented Sep 4, 2017 at 10:54
  • \$\begingroup\$ resistivity? mmmm torque? \$\endgroup\$
    – carloc
    Commented Sep 4, 2017 at 11:29
  • \$\begingroup\$ When the wind turbine generator, is connected to a charge (here, a battery, or an arduino board), the charge generates a resistance which slow the rotation of the wind turbine. When the wind is too low, the power of the wind is not able to keep the rotation speed when the generator feeds a charge, at the same level of rotation without any feeding of charge. The low torque of the wind turbine, delivered by the low power of the wind, is not enough, to keep the rotation because the charge breaks (slows) the rotation, making a resistivity on the system, due to electromagnetic phenomenon. \$\endgroup\$
    – Anc
    Commented Sep 4, 2017 at 16:49
  • \$\begingroup\$ Obviously, yes. \$\endgroup\$ Commented Sep 7, 2017 at 8:39
  • \$\begingroup\$ Look at Back EMF \$\endgroup\$
    – Voltage Spike
    Commented Sep 11, 2017 at 16:38

4 Answers 4

3
\$\begingroup\$

I find it convenient to think of problems like this in terms of energy conservation. So let's put some numbers to it.

Mechanical power is force \$F\$ times velocity \$v\$:

$$ P = Fv \tag 1$$

or for a rotating system, torque \$\tau\$ times angular velocity \$\omega\$:

$$ P = \tau \omega \tag 2$$

For electrical power, it's current \$I\$ times voltage \$E\$:

$$ P = IE \tag 3$$

For the moment let's assume no losses in the system. The electrical power put out by the generator must equal the mechanical power put into the turbine.

$$ P_\text{turbine} = P_\text{generator} $$

Thus by equations 2 and 3:

$$ \tau \omega = IE \tag 4 $$

In low wind, you want to keep torque \$\tau\$ low. Otherwise the turbine may not even overcome static friction, and not turn at all.

While the product of torque and angular velocity is fixed by the amount of power available from the wind, their proportionality is not. Theoretically, you could add a mechanical gearbox so the turbine spins with less torque but at a faster angular velocity, ideal for low wind.

In high wind you wouldn't want the turbine to spin too fast, so the gearbox could work the other way: spin with more torque but a lower angular velocity.

The ideal gearbox would have no losses, and be continuously variable so the turbine can spin at the optimal speed in all wind conditions. Unfortunately such a gearbox would be very expensive and complex, and even so probably not all that efficient.

Fortunately, you can implement the "gearbox" on the electrical side of the system.

In a generator, the output voltage is proportional to the speed at which it is turning, and the current is proportional to the torque. So,

$$ E \propto \omega $$ $$ I \propto \tau \tag 5$$

If you want to reduce torque, you must reduce current. But you don't get to choose the power: that's decided by the wind. So to maintain power, according to equation 3, you must simultaneously increase voltage.

Generators produce voltage as described by Faraday's law of induction:

The induced electromotive force in any closed circuit is equal to the negative of the time rate of change of the magnetic flux enclosed by the circuit.

In the generator, this magnetic flux is the rotor moving through the stator field. Your permanent magnet stator provides the magnetic flux, the rotor windings are the thing enclosing the flux, and the rotation of the rotor makes the flux change. So reducing the voltage could be accomplished by:

  • spinning the rotor slower
  • decreasing the strength of the stator field
  • decreasing the number of windings on the rotor

Spinning the rotor slower is the opposite of what we hoped to accomplish, but the other two options are valid. Using weaker magnets would decrease the strength of the stator field, and perhaps allow cheaper magnets. Using fewer turns in the rotor windings accomplishes the same thing, and allows thicker wire to be used, which reduces resistive losses in the wire.

So there's the answer to your first question: weaker magnets would indeed reduce torque, and thus the turbine would spin faster. You've effectively modified the "electrical gearbox" of the generator.

The trouble is now, what happens if the wind is strong? It would be more convenient if the "gearbox" was variable, but we can't exactly mechanically modify the generator to suit every wind condition.

There's another way to adjust the proportionality of voltage and current in an electrical system while keeping power constant: a switch-mode power supply (or perhaps it should be called a converter).

As luck would have it, the generator itself is already a big part of such a converter. You can also think of the generator as a motor which is always trying to spin too fast, so you must apply the battery as a brake. All you need to do is alternate between shorting the generator terminals together, and connecting the generator to the battery to charge it. And this is at the core of what a charge controller does.

\$\endgroup\$
2
  • 1
    \$\begingroup\$ Thank you @Phil_Frost . You answered to my question. Excellent. We've already succeeded in creating an electrical proportional break using a PID program on an arduino placed in the circuit, piloting a hash of low level resistances (that's generate de variable resistance equivalent) true the opening and closing of a transistor connected to PWM pin of Arduino Uno. Thank you for your kind help, and usefull detailed explanation. Super ! \$\endgroup\$
    – Anc
    Commented Sep 11, 2017 at 7:32
  • \$\begingroup\$ @Aric: break - a discontinuity or fault. e.g. "I found the break in the wire." brake - a device to slow down or stop a machine or vehicle. I think you mean "brake" and have spelled it incorrectly multiple times in your post and comments. \$\endgroup\$
    – Transistor
    Commented Sep 13, 2017 at 10:08
2
\$\begingroup\$

Assuming you mean the mechanical resistance (starting torque) not electrical/ resistance...

Generators optimised for small wind turmbines, where self starting at low windspeeds is important, are usually ironless - i.e. the stator coils usually have no iron cores.

This means that in the absence of electrical load, there is no torque required to turn the generator (over and above the bearing friction and air resistance of the whole assembly).

Downside of an ironless stator is that the magnetic field strength is reduced because the air gap is increased - and the solution is to use the strongest possible permanent magnets, rather than weaker ones.

So I'm guessing the "resistivity" you are talking about is the "cogging" caused by attraction between your permanent magnet rotor, and the iron (probably laminated) cores in your stator coils. Then the solution is not to reduce the problem, by weakening the magnets, but eliminate it, by using an ironless generator.

My go-to ste for this is Scoraig Wind, which includes a free guide to building an effective wind turbine and generator.

\$\endgroup\$
2
  • \$\begingroup\$ No, no. I talk about resistivity made by the charging of a charge by the generator. My generator is similar to generator of Huggh ! And, for sure, I've ever read Huggh's paper ;-) ! \$\endgroup\$
    – Anc
    Commented Sep 4, 2017 at 16:52
  • \$\begingroup\$ Oh if it's the torque caused by a load on the generator, to reduce that, reduce the load on the generator! (i.e. reduce the charging current, perhaps with PWM.) \$\endgroup\$
    – user16324
    Commented Sep 4, 2017 at 22:32
1
\$\begingroup\$

By resistivity I take it you mean the terminal resistance (ie the resistance of the stator). This is a characteristic of the stator windings & is not influenced by the strength of the rotor magnets. To decrease the resistance you need to use higher guage wiring, reduction in the number of turns or a different material

By resistivity, do you actually mean impedance (R +jwL). This is a characteristic of the stator reluctance and the windings. To reduce it you would need to improve the reluctance of the stator corepack, reduce the number of winding turns.

A reduction in magnetic strength reduces the flux density which in turn reduces the flux linkage which reduces the rate of change of flux. These all contribute to a reduction in Ke,Kt,kv.

\$\endgroup\$
2
  • \$\begingroup\$ I'm not sure to well understand. If what I see with my generator (a slow of the speed of rotation of the wind turbine, as soon as the generator feeds a charge at a same level of low wind), is what you explain, then, that means a decrease of winding turns will reduce the resistivity strengh made by the charge on the wind turbine speed. That's it ? \$\endgroup\$
    – Anc
    Commented Sep 4, 2017 at 17:00
  • \$\begingroup\$ right so "resistance" you mean generation capability. Loading the generator will force current to flow based upon the generator capability. \$\endgroup\$
    – user16222
    Commented Sep 4, 2017 at 17:05
1
\$\begingroup\$

If you reduce the magnet strength it will reduce the voltage produced. To compensate for this you need to increase the number of turns in the stator windings, which increases their electrical resistance and reduces the charging current. Lower current = lower torque load, so it will turn easier. However the higher winding resistance causes greater power loss, so it will be less efficient.

You could get the same effect by adding external resistance into the charging circuit, or even better use a MPPT (Maximum Power Point Tracking) circuit to extract maximum possible power from the generator without slowing it down too much.

\$\endgroup\$
3
  • \$\begingroup\$ you write "If you reduce the magnet strength it will reduce the voltage produced". OK. Let say, it is not a problem. Let say, it is ok. Then, will it reduce the reverse strenght created by the charge when the generator loads this charge ? \$\endgroup\$
    – Anc
    Commented Sep 4, 2017 at 17:07
  • \$\begingroup\$ Should I undertand that increasing the diameter of the coils keeping the same volume used by coils, would be a better way to reduce this reverse strenght created by an electrical charge when the generator loads this charge ? \$\endgroup\$
    – Anc
    Commented Sep 4, 2017 at 17:10
  • \$\begingroup\$ If reduced voltage is not a problem then it was probably producing too much. Just reducing magnet strength (without increasing turns) lowers the torque constant and so reduces loading. Reducing the the length of wire inside (and perpendicular to the movement of) the magnetic field will also do it, but with lower resistance. In both cases current (and torque loading) will increase dramatically once the generator gets fast enough to charge the battery - unless you use an external resistor or controller to limit charging current. \$\endgroup\$ Commented Sep 4, 2017 at 18:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.