summaryrefslogtreecommitdiff
path: root/sample_notebooks/DevikaRaj/Chapter6.ipynb
blob: d7462a9e112f8deae9be2f88a0b2ed45f9b80a34 (plain)
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter 6: Measuring instruments"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 1: pg 235"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The shunt resistance required in (ohm) =  0.163\n"
     ]
    }
   ],
   "source": [
    "#pg 235\n",
    "#calculate the shunt resistance\n",
    "# Given data\n",
    "Rm = 8.;# in ohm\n",
    "Im = 20.;# in mA\n",
    "Im = Im * 10**-3;# in A\n",
    "I = 1.;# in A\n",
    "#calculations\n",
    "# Multiplying factor\n",
    "N = I/Im;\n",
    "# Shunt resistance\n",
    "Rsh = Rm/(N-1);# in ohm\n",
    "#results\n",
    "print \"The shunt resistance required in (ohm) = \",round(Rsh,3)\n",
    " "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 2: pg 235"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The multiplying factor is 241.0\n"
     ]
    }
   ],
   "source": [
    "#pg 235\n",
    "#calculate the multiplying factor\n",
    "# Given data\n",
    "Rm = 6;# in ohm\n",
    "Rsh = 0.025;# in ohm\n",
    "#calculations\n",
    "N = 1 + (Rm/Rsh);# multiplying factor\n",
    "#results\n",
    "print \"The multiplying factor is\",N\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 3: pg 235"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The resistance to be connected in parallel in (ohm) =  0.0761\n",
      "The resistance to be connected in series in (ohm) =  661.67\n"
     ]
    }
   ],
   "source": [
    "#pg 235\n",
    "#calculate the resistances to be connected in parallel and series\n",
    "# Given data\n",
    "Rm = 5.;# in ohm\n",
    "Im = 15.;# in mA\n",
    "Im = Im * 10**-3;# in A\n",
    "I = 1.;# in A\n",
    "#calculations\n",
    "N = I/Im;# multiplying factor\n",
    "Rsh = Rm/(N-1);# in ohm\n",
    "print \"The resistance to be connected in parallel in (ohm) = \",round(Rsh,4)\n",
    "V = 10;# in V\n",
    "Rs = (V/Im)-Rm;# in ohm\n",
    "print \"The resistance to be connected in series in (ohm) = \",round(Rs,2)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 4: pg 236"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The current range of instrument in A is 50.0\n"
     ]
    }
   ],
   "source": [
    "#pg 236\n",
    "#calculate the current range of the instrument\n",
    "# Given data\n",
    "V=250.;# full scale voltage reading in V\n",
    "Rm = 2.;# in ohm\n",
    "Rsh = 2.;# in m ohm\n",
    "Rsh = Rsh * 10**-3;# in ohm\n",
    "R = 5000.;# in ohm\n",
    "#calculations\n",
    "Im = V/(Rm+R);# in A\n",
    "Ish = (Im*Rm)/Rsh;# in A\n",
    "# Current range of instrument\n",
    "I = Im+Ish;# in A\n",
    "#results\n",
    "print \"The current range of instrument in A is\",round(I)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 5: pg 236"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The percentage error in (percentage) is 249.38\n",
      "The answer is a bit different from textbook due to rounding off error\n"
     ]
    }
   ],
   "source": [
    "#pg 236\n",
    "#calculate the percentage error\n",
    "import math\n",
    "from math import acos,pi,cos\n",
    "# Given data\n",
    "V = 230.;# in V\n",
    "I = 35.;# in A\n",
    "N = 200.;\n",
    "t = 64.;# in sec\n",
    "kwh = 500.;\n",
    "#calculations\n",
    "phi= acos(0.8);# in radians\n",
    "Er = N/kwh;# in kWh\n",
    "Et =  V*I*cos(phi)*t;# in Joules\n",
    "Et = Et/3600.;# in W hour\n",
    "Et = Et * 10**-3;# in kWh\n",
    "# percentage error\n",
    "PerError = ((Er-Et)/Et)*100;# in %\n",
    "#results\n",
    "print \"The percentage error in (percentage) is\",round(PerError,2)\n",
    "print 'The answer is a bit different from textbook due to rounding off error'\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 6: pg 237"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The percentage error in (percentage) is  3.22\n",
      "The answer is a bit different from textbook due to rounding off error\n"
     ]
    }
   ],
   "source": [
    "#pg 237\n",
    "#calculate the percentage error\n",
    "from math import acos,cos,pi\n",
    "# Given data\n",
    "I = 50.;# in A\n",
    "V = 230.;# in V\n",
    "N = 61.;\n",
    "t = 37.;# in sec\n",
    "KWh = 500.;\n",
    "#calculations\n",
    "phi= acos(1);# in radians\n",
    "Er = N/KWh;# in kWh\n",
    "Et = V*I*cos(phi)*t;# in Joules\n",
    "Et = Et/3600.;# in Wh\n",
    "Et = Et*10**-3;# in kWh\n",
    "# Percentage error\n",
    "PerError = ((Er-Et)/Et)*100;# in %\n",
    "#results\n",
    "print \"The percentage error in (percentage) is \",round(PerError,2)\n",
    "print 'The answer is a bit different from textbook due to rounding off error'"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 7: pg 237"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The series resistance in ohm is 24997.5\n"
     ]
    }
   ],
   "source": [
    "#pg 237\n",
    "#calculate the series resistance\n",
    "# Given data\n",
    "Im = 20.;# in mA\n",
    "Im =  Im * 10**-3;# in A\n",
    "Vm = 50.;# in mV\n",
    "Vm = Vm * 10**-3;# in V\n",
    "V = 500.;# in V\n",
    "#calculations\n",
    "Rm = Vm/Im;# in ohm\n",
    "Rs = (V/Im)-Rm;# in ohm\n",
    "#results\n",
    "print \"The series resistance in ohm is\",Rs\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 8: pg 238"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The value of Rs in (ohm) is 9950.0\n",
      "The value of Rsh in (ohm) is 0.505\n"
     ]
    }
   ],
   "source": [
    "#pg 238\n",
    "#calculate the values of resistances\n",
    "# Given data\n",
    "Rm = 50;# in ohm\n",
    "Im = 10;# in mA\n",
    "Im = Im * 10**-3;# in A\n",
    "V = 100;# in V\n",
    "#calculations\n",
    "Rs = (V/Im)-Rm;# in ohm\n",
    "print \"The value of Rs in (ohm) is\",Rs\n",
    "N = 1/Im;\n",
    "Rsh = Rm/(N-1);# in ohm\n",
    "print \"The value of Rsh in (ohm) is\",round(Rsh,3)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 9: pg 238"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The percentage error in (percentage) is 2.08\n"
     ]
    }
   ],
   "source": [
    "#pg 238\n",
    "#calculate the percentage error\n",
    "# Given data\n",
    "from math import acos,cos\n",
    "I = 40.;# in A\n",
    "V = 230.;# in V\n",
    "N = 600.;\n",
    "t = 46.;# in sec\n",
    "#calculations\n",
    "phi= acos(1);# in radians\n",
    "P = V*I*cos(phi);# in W\n",
    "P = P * 10**-3;# in kW\n",
    "# 1 kWh = 500 revolution \n",
    "P = P * 500.;# in revolution\n",
    "T = (3600./t)*60;# in revolution\n",
    "# Percentage error\n",
    "PerError = ((T-P)/P)*100;# in %\n",
    "#results\n",
    "print \"The percentage error in (percentage) is\",round(PerError,2)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 10: pg 238"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The percentage error in (percentage) is 4.167\n"
     ]
    }
   ],
   "source": [
    "#pg 238\n",
    "#calculate the percentage error\n",
    "# Given data\n",
    "N = 100.;\n",
    "I = 20.;# in A\n",
    "V = 210.;# in V\n",
    "pf = 0.8;# in lad\n",
    "Er = 350.;# in rev\n",
    "a = 3.36;# assumed\n",
    "#calculations\n",
    "Et = (a*3600.)/3600;# in kWh\n",
    "# 1 kWh = 100;#  revolution\n",
    "Et = Et*N;# revolution\n",
    "# Percentage error\n",
    "PerError = ((Er-Et)/Et)*100;# in %\n",
    "#results\n",
    "print \"The percentage error in (percentage) is\",round(PerError,3)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Example 11: pg 239"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The percentage error in (percentage) is 3.22\n"
     ]
    }
   ],
   "source": [
    "#pg 239\n",
    "#calculate the percentage error\n",
    "# Given data\n",
    "I = 5.;# in A\n",
    "V = 230.;# in V\n",
    "N = 61.;# number of revolution\n",
    "t = 37.;# in sec\n",
    "# speed of the disc\n",
    "discSpeed= 500.;# in rev/kWh\n",
    "#calculations\n",
    "Er = N/discSpeed;\n",
    "Et = (V*I*t)/(3600*100);\n",
    "# percentage error\n",
    "PerError = ((Er-Et)/Et)*100;# in %\n",
    "#results\n",
    "print \"The percentage error in (percentage) is\",round(PerError,2)\n"
   ]
  }
 ],
 "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
}