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
69
70
71
72
73
74
75
76
77
78
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 7:Starting And Speed Control Of Induction Motor "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 7.1,Page 7-6"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"x= 0.7453\n",
"Thus 74.53 % tapping is required\n",
"Ist= 3.33 IF.L\n",
"Thus supply starting current is 3.33 times the full load current\n"
]
}
],
"source": [
"import math\n",
"\n",
"#variable declaration\n",
"Isc=6 # starting current at rated voltage(amp)\n",
"Sf=5 # full load slip\n",
"Tfl=Tst=1 # full load torque=starting torque(N-m)\n",
"Ifl=1 # full load current(amp)\n",
"\n",
"#calculation\n",
"x=math.sqrt((Tst/Tfl) * ((float(Ifl)/float(Isc))**2)*(1/(float(Sf)/100)))\n",
"print 'x=',str (x)[:6]\n",
"print 'Thus',str(x*100)[:5],'% tapping is required'\n",
"\n",
"#Ist(supply)=x**2 * 6\n",
"Ist=(x**2) * Isc # supply starting current(IF.L)\n",
"Ist=round(Ist,2)\n",
"print 'Ist=',Ist,'IF.L'\n",
"print 'Thus supply starting current is',Ist,'times the full load current'"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.11"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|