Excercises Electric Machinery Fundamentals

Chapter 3

Problem 3-11


In [1]:
%pylab inline


Populating the interactive namespace from numpy and matplotlib

Description

In later years, motors improved and could be run directly from a 60 Hz power supply. As a result, 25 Hz power systems shrank and disappeared. However, there were many perfectly-good working 25 Hz motors in factories around the country that owners were not ready to discard. To keep them running, some users created their own 25 Hz power in the plant using motor-generator sets. A motor generator set consists of two machines connected on a common shaft, one acting as a motor and the other acting as a generator. If the two machines have different numbers of poles but exactly the same shaft speed, then the electrical frequency of the two machines will be different due to Equation below.

$$f_{se} = \frac{p\cdot n_{sm}}{120}$$

In [2]:
fse1 = 60.  # [Hz]
fse2 = 25.  # [Hz]
  • What combination of poles on the two machines could convert 60 Hz power to 25 Hz power?

SOLUTION

From Equation, the speed of rotation of the 60 Hz machines would be:

$$n_{sm1} = \frac{120f_{se1}}{p_1} = \frac{7200}{p_1}$$

and the speed of rotation of the 25 Hz machines would be:

$$n_{sm2} = \frac{120f_{se2}}{p_2} = \frac{3000}{p_2}$$

If the machines are tied together in a motor-generator set, the shaft speed must be the same for both machines, so

$$n_{sm1} = n_{sm2}$$

Which means that

$$\frac{7200}{p_1}=\frac{3000}{p_2}$$

and in turn this means the relation ship of the poles must be

$$\frac{p_1}{p_2}=\frac{7200}{3000}=\frac{72}{30}=\frac{24}{10}$$

So the fraction between $p_1$ and $p_2$ needs to be:


In [3]:
P1_P2 =(120*fse1) / (120*fse2)
P1_P2


Out[3]:
2.4

Let's take an example where $p_1 = 72$. The mechanical speed for machine 1 is therefore:


In [4]:
p1 = 72
n_m1 =  (120*fse1)/p1
n_m1


Out[4]:
100.0

Calculating the speed for machine 2 gives:


In [5]:
p2 = p1 / P1_P2
n_m2 =  (120*fse2)/p2
n_m2


Out[5]:
100.0

This shows that the mechanical speed for this combination of poles is the same. Mind that the number of poles always needs to be even.