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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 6: DC Machines"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.1: Generated_emf.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.1\n",
"clc;clear;close;\n",
"format('v',5);\n",
"P=4;//no. of poles\n",
"c=2;//no. of parallel paths\n",
"p=4/2;//no. of pair of poles\n",
"S=51;//no. of slots\n",
"C=12;//conductors per slot\n",
"N=900;//rpm(speed)\n",
"fi=25/1000;//Wb\n",
"Z=S*C;//total no. of conductors\n",
"E=2*Z/c*N*p/60*fi;//V\n",
"disp(E,'Generated emf(V)');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.2: Conductors_per_slot.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.2\n",
"clc;clear;close;\n",
"format('v',5);\n",
"P=8;//no. of poles\n",
"c=8;//no. of parallel paths\n",
"p=8/2;//no. of pair of poles\n",
"E=260;//V(generated emf)\n",
"fi=0.05;//Wb\n",
"S=120;//no. of slots\n",
"N=350;//rpm(speed)\n",
"Z=E/(2/c*N*p/60*fi);//V\n",
"disp(round(Z),'No. of conductors per slot');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.3: Generated_emf.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.3\n",
"clc;clear;close;\n",
"format('v',5);\n",
"Ra=0.1;//ohm(Armature resistance)\n",
"Vs=250;//V(supply voltage)\n",
"//part(a)\n",
"I=80;//A\n",
"Vdrop=Ra*I;//V\n",
"emf=Vs+Vdrop;//V(Generated emf)\n",
"disp(emf,'Part(a) Generated emf(V)');\n",
"//part(b)\n",
"I=60;//A(current taken by Motor)\n",
"Vdrop=Ra*I;//V\n",
"emf=Vs-Vdrop;//V(Generated emf)\n",
"disp(emf,'Part(b) Generated emf(V)');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.4: Calculate_speed.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.4\n",
"clc;clear;close;\n",
"format('v',5);\n",
"P=4;//no. of poles\n",
"Vs=440;//V\n",
"c=2;//no. of parallel paths\n",
"p=4/2;//no. of pair of poles\n",
"Ia=50;//A\n",
"Ra=0.28;//ohm\n",
"Z=888;//conductors\n",
"fi=0.023;//Wb\n",
"emf=Vs-Ia*Ra;//V\n",
"N=emf/(2*Z/c*p/60*fi);//rpm\n",
"disp(round(N),'Speed in rpm');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.5: Approximate_speed.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.5\n",
"clc;clear;close;\n",
"format('v',5);\n",
"N=900;//rpm\n",
"Vs=460;//V\n",
"Vs_new=200;//V\n",
"fi_ratio=0.7;//ratio of new flux to original flux\n",
"kfi=Vs/N;//for original flux\n",
"Nnew=Vs_new/kfi/fi_ratio;//rpm(new speed)\n",
"disp(round(Nnew),'Speed in rpm');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.6: SPeed_and_gross_torque.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.6\n",
"clc;clear;close;\n",
"format('v',5);\n",
"Ia=110;//A\n",
"Vs=480;//V\n",
"Ra=0.2;//ohm\n",
"P=6;//no. of poles\n",
"c=6;//no. of parallel paths\n",
"p=P/2;//no. of pair of poles\n",
"Z=864;//no. of conductors\n",
"fi=0.05;//Wb\n",
"emf=Vs-Ia*Ra;//V\n",
"N=emf/(2*Z/c*p/60*fi);//rpm\n",
"N=round(N);//rpm\n",
"disp(N,'(a) Speed in rpm');\n",
"Pm=Ia*emf;//W(Mechanical power developed)\n",
"M=Pm/(N/60)/(2*%pi);//Nm(Torque)\n",
"disp(M,'(b) Gross torque developed(Nm)');"
]
}
,
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6.7: Power_generated.sce"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"//Ex 6.7\n",
"clc;clear;close;\n",
"format('v',6);\n",
"N=15;//rps\n",
"M=2*1000;//Nm(Torque required)\n",
"Loss=8*1000;//W\n",
"P=2*%pi*M*N;//W(Power required)\n",
"Pa=P-Loss;//W(Power generated in armature)\n",
"disp(Pa/1000,'Power generated in armature(kW)');"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Scilab",
"language": "scilab",
"name": "scilab"
},
"language_info": {
"file_extension": ".sce",
"help_links": [
{
"text": "MetaKernel Magics",
"url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md"
}
],
"mimetype": "text/x-octave",
"name": "scilab",
"version": "0.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|