summaryrefslogtreecommitdiff
path: root/modern_physics_by_Satish_K._Gupta/chap19.ipynb
blob: 6e89d5a236e86f0008f6f31aa774d96f06e17224 (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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
{
 "metadata": {
  "name": "",
  "signature": "sha256:c81057d61d55f846d72bc0a6263de0452d74cd37dd94b021ce01d87a17a0c974"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 19 Electrical machines and devices"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.1 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "Ep=2300.0                    #v\n",
      "Np=4000\n",
      "Es=230                          #v\n",
      "\n",
      "#Calculation\n",
      "Ns=Np*(Es/Ep)\n",
      "\n",
      "#Result\n",
      "print\"Number of turns is\", Ns"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Number of turns is 400.0\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.2 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "Ep=220.0               #v\n",
      "Es=110\n",
      "E=550                     #watt\n",
      "\n",
      "#Calculation\n",
      "Ip=E/Ep\n",
      "\n",
      "#Result\n",
      "print\"Current drawn is\",Ip,\"A\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Current drawn is 2.5 A\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.3 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Gien\n",
      "Ep=220.0                   #v\n",
      "Es=22 \n",
      "Z=220.0                    #ohm\n",
      "\n",
      "#Calculation\n",
      "Is=Es/Z\n",
      "Ip=(Es/Ep)*Is\n",
      "\n",
      "#Result\n",
      "print\"Current drawn is\",Ip,\"A\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Current drawn is 0.01 A\n"
       ]
      }
     ],
     "prompt_number": 6
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.4 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "Np=200.0\n",
      "Ns=1000\n",
      "Ep=200.0                   #v\n",
      "E=10**4                     #W\n",
      "\n",
      "#Calculation\n",
      "Es=(Ns/Np)*Ep\n",
      "Ip=E/Ep\n",
      "\n",
      "#Result\n",
      "print\"(a) Output voltage is\",Es,\"V\"\n",
      "print\"(b) Current is\",Ip,\"A\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a) Output voltage is 1000.0 V\n",
        "(b) Current is 50.0 A\n"
       ]
      }
     ],
     "prompt_number": 12
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.5 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "ep=120\n",
      "Ip=1.85                   #A\n",
      "Is=150*10**-3\n",
      "n=0.95\n",
      "\n",
      "#Calculation\n",
      "es=n*ep*Ip/Is\n",
      "\n",
      "#result\n",
      "print\"Voltage across the secondary is\",es,\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Voltage across the secondary is 1406.0 V\n"
       ]
      }
     ],
     "prompt_number": 14
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.6 Page no 582"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "K=100\n",
      "Np=100\n",
      "e=1100                          #watt\n",
      "ep=220.0\n",
      "\n",
      "#Calculation\n",
      "Ns=K*Np\n",
      "ip=e/ep\n",
      "es=K*ep\n",
      "Is=ip*ep/es\n",
      "\n",
      "#Result\n",
      "print\"(i) Number of turns is\",Ns\n",
      "print\"(ii) Current is\",ip,\"A\"\n",
      "print\"(iii) Voltage across the secondary is\",es,\"V\"\n",
      "print\"(iv) Current in the secondaryis\",Is,\"A\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(i) Number of turns is 10000\n",
        "(ii) Current is 5.0 A\n",
        "(iii) Voltage across the secondary is 22000.0 V\n",
        "(iv) Current in the secondaryis 0.05 A\n"
       ]
      }
     ],
     "prompt_number": 23
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.7 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "e=11000                     #W\n",
      "es=220.0                     #V\n",
      "es1=22000.0\n",
      "\n",
      "#Calculation\n",
      "Is=e/es\n",
      "V=Is**2\n",
      "Is1=e/es1\n",
      "P=Is1**2\n",
      "\n",
      "#Result\n",
      "print\"(i) Electrical energy dissipated when power is transmitted at es=220 V is\",V,\"R watt\"\n",
      "print\"(ii)Electrical energy dissipated when power is transmitted at es=22000 V is\",P,\"R watt\"\n",
      "print\"Transmission should be done at 22000 V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(i) Electrical energy dissipated when power is transmitted at es=220 V is 2500.0 R watt\n",
        "(ii)Electrical energy dissipated when power is transmitted at es=22000 V is 0.25 R watt\n",
        "Transmission should be done at 22000 V\n"
       ]
      }
     ],
     "prompt_number": 28
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.8 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "B=0.1                   #T\n",
      "n=2000\n",
      "A=0.05                    #m**2\n",
      "w=2100                       #r.p.m.\n",
      "\n",
      "#calculation\n",
      "import math\n",
      "A1=2*math.pi*w/60.0\n",
      "e0=w*B*A*A1\n",
      "e=e0*math.sin(60*3.14/180.0)\n",
      "\n",
      "#Result\n",
      "print\"Maximum e.m.f is\", round(e0,0),\"V\"\n",
      "print\"Instantaneous e.m.f is\",round(e,0),\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Maximum e.m.f is 2309.0 V\n",
        "Instantaneous e.m.f is 1999.0 V\n"
       ]
      }
     ],
     "prompt_number": 50
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.9 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "n=100\n",
      "A=3                   #m**2\n",
      "w=60                     #rad/s\n",
      "B=0.04\n",
      "R=500.0\n",
      "\n",
      "#Calculation\n",
      "e0=n*B*A*w\n",
      "I0=e0/R\n",
      "P=e0*I0\n",
      "\n",
      "#Result\n",
      "print\"(a) Maximum current is\",I0,\"A\"\n",
      "print\"(b) Maximum power is\",P,\"W\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a) Maximum current is 1.44 A\n",
        "(b) Maximum power is 1036.8 W\n"
       ]
      }
     ],
     "prompt_number": 56
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.10 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "n=50\n",
      "A=2.5                #m**2\n",
      "w=60                       #rad/s\n",
      "B=0.30\n",
      "R=500.0\n",
      "\n",
      "#Calculation\n",
      "e0=n*B*A*w\n",
      "I0=e0/R\n",
      "\n",
      "#Result\n",
      "print\"(a) The maximum current is\",I0,\"A\"\n",
      "print\"(b) Current is zero when coil is vertical and flux is maximum.On the other hand current is maximum when coil is horizontal,flux is minimum\"\n",
      "print\"(c) Yes,there should be relative motion between the magnetic field and coil\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a) The maximum current is 4.5 A\n",
        "(b) Current is zero when coil is vertical and flux is maximum.On the other hand current is maximum when coil is horizontal,flux is minimum\n",
        "(c) Yes,there should be relative motion between the magnetic field and coil\n"
       ]
      }
     ],
     "prompt_number": 60
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.11 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "E=220\n",
      "e=200.0\n",
      "P=5000\n",
      "\n",
      "#Calculation\n",
      "I=P/e\n",
      "R=(E-e)/I\n",
      "\n",
      "#Result\n",
      "print\"Armature current is\",I,\"A\"\n",
      "print\"Motor resistance is\",R,\"ohm\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Armature current is 25.0 A\n",
        "Motor resistance is 0.8 ohm\n"
       ]
      }
     ],
     "prompt_number": 65
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.12 Page no 583"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "R=8.5\n",
      "E=200\n",
      "I=5\n",
      "\n",
      "#Calculation\n",
      "e=E-(I*R)\n",
      "Pi=E*I\n",
      "Po=E*I-(I**2*R)\n",
      "n=Po/Pi\n",
      "\n",
      "#Result\n",
      "print\"Back e.m.f of the motor is\", e,\"V\"\n",
      "print\"Power input is\",Pi,\"W\"\n",
      "print\"Power output is\",Po,\"W\"\n",
      "print\"Efficiencyis\",n*10**2,\"%\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Back e.m.f of the motor is 157.5 V\n",
        "Power input is 1000 W\n",
        "Power output is 787.5 W\n",
        "Efficiencyis 78.75 %\n"
       ]
      }
     ],
     "prompt_number": 78
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.13 Page no 584"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "h=300\n",
      "g=9.8                              #m/s**2\n",
      "a=1000\n",
      "A=100.0\n",
      "n=60\n",
      "\n",
      "#Calculation\n",
      "m=A*a\n",
      "E=m*g*h\n",
      "P=E*n/A\n",
      "\n",
      "#Result\n",
      "print\"Electric power is\", P*10**-6,\"MW\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Electric power is 176.4 MW\n"
       ]
      }
     ],
     "prompt_number": 84
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.14 Page no 584"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "L=30              #km\n",
      "R=15                 #ohm\n",
      "V=4000.0                    #V\n",
      "P=8*10**5                  #W\n",
      "\n",
      "#Calculation\n",
      "Is=P/V\n",
      "P1=Is**2*R\n",
      "P2=P+P1\n",
      "V1=R*Is\n",
      "A=440-(V+V1)\n",
      "\n",
      "#Result\n",
      "print\"(a) Line power loss is\",P1*10**-3,\"KW\"\n",
      "print\"(b) Supplied power is\",P2*10**-3,\"KW\"\n",
      "print\"(c) Step up transformer at the plane is\",A"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "(a) Line power loss is 600.0 KW\n",
        "(b) Supplied power is 1400.0 KW\n",
        "(c) Step up transformer at the plane is -6560.0\n"
       ]
      }
     ],
     "prompt_number": 94
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.15 Page no 584"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "r=8*10**-2\n",
      "n=20\n",
      "w=50                         #rad/s\n",
      "B=3*10**-2                   #T\n",
      "A=64*math.pi*10**-4           #m**2\n",
      "Eav=0\n",
      "R=10                         #ohm\n",
      "\n",
      "#Calculation\n",
      "math.pi\n",
      "e0=n*B*A*w\n",
      "Pav=e0**2/(2*R)\n",
      "\n",
      "#Result\n",
      "print\" Maximum e.m.f. is\",round(e0,4),\"V\"\n",
      "print\" Average e.m.f. is zero\"\n",
      "print\" Dissipated power is\",round(Pav,4),\"W\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        " Maximum e.m.f. is 0.6032 V\n",
        " Average e.m.f. is zero\n",
        " Dissipated power is 0.0182 W\n"
       ]
      }
     ],
     "prompt_number": 103
    }
   ],
   "metadata": {}
  }
 ]
}