1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{
"metadata": {
"name": "",
"signature": "sha256:48e2a30220ca8f0e5ace71d8aaa9abff99fd46fdaaae4dbc00c0c67cefe15ce3"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"CHAPTER 17 - AC COMMUTATOR MOTORS"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example E1 - Pg 393"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Caption:Find (a)Speed (b)Power factor of motor\n",
"#Exa:17.1\n",
"import math\n",
"r=25.#Resistance of motor(in ohms)\n",
"P=2.#Number of poles\n",
"l=0.4#Inductance of motor(in henry)\n",
"n=1800.#Speed of motor(in r.p.m)\n",
"V=230.#Voltage supplied(in volts)\n",
"Il=1.#Load current(in A)\n",
"f=50.#Frequency(in hertz)\n",
"fr=(P*n)/120.\n",
"Eb=V-(r*Il)\n",
"Er=Eb/fr\n",
"fac=(math.sqrt((V**2.)-((Il*2.*(math.pi)*f*l)**2.))-(Il*r))/Er\n",
"n=fac*(120./P)\n",
"print '%s %.f' %('(a)Speed(in rpm)=',n)\n",
"pf=math.sqrt((V**2.)-((Il*2.*(math.pi)*f*l)**2.))/V\n",
"print '%s %.2f' %('(b)Power factor=',pf)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a)Speed(in rpm)= 1472\n",
"(b)Power factor= 0.84\n"
]
}
],
"prompt_number": 1
}
],
"metadata": {}
}
]
}
|