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
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#12: Fiber Optics"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.1, Page number 12.24"
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"acceptance angle is 20.41 degrees\n",
"answer in the book varies due to rounding off errors\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"n1=1.54; #Core refractive index\n",
"n2=1.50; #Cladding refractive index\n",
"\n",
"#Calculation\n",
"NA=math.sqrt(n1**2-n2**2); #numerical aperture\n",
"alpha_m=math.asin(NA); #acceptance angle(radian)\n",
"alpha_m=alpha_m*180/math.pi; #acceptance angle(degrees)\n",
"\n",
"#Result\n",
"print \"acceptance angle is\",round(alpha_m,2),\"degrees\"\n",
"print \"answer in the book varies due to rounding off errors\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.2, Page number 12.24"
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"numerical aperture is 0.387\n",
"acceptance angle is 22.8 degrees\n",
"critical angle is 75 degrees\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"n1=1.5; #Core refractive index\n",
"n2=1.45; #Cladding refractive index\n",
"\n",
"#Calculation\n",
"delta=(n1-n2)/n1; #fractional index change\n",
"NA=n1*math.sqrt(2*delta); #numerical aperture\n",
"alpha_m=math.asin(NA); #acceptance angle(radian)\n",
"alpha_m=alpha_m*180/math.pi; #acceptance angle(degrees)\n",
"thetac=math.asin(n2/n1)*180/math.pi; #critical angle(degrees)\n",
"\n",
"#Result\n",
"print \"numerical aperture is\",round(NA,3)\n",
"print \"acceptance angle is\",round(alpha_m,1),\"degrees\"\n",
"print \"critical angle is\",int(thetac),\"degrees\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.3, Page number 12.25"
]
},
{
"cell_type": "code",
"execution_count": 54,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"critical angle is 77.16 degrees\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"n1=1.53; #Core refractive index\n",
"p=2.5; #percentage(%)\n",
"\n",
"#Calculation\n",
"n2=n1*(100-p)/100; #Cladding refractive index\n",
"thetac=math.asin(n2/n1)*180/math.pi; #critical angle(degrees)\n",
"\n",
"#Result\n",
"print \"critical angle is\",round(thetac,2),\"degrees\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.4, Page number 12.25"
]
},
{
"cell_type": "code",
"execution_count": 55,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"numerical aperture is 0.28\n",
"acceptance angle is 16.26 degrees\n",
"critical angle is 79.1 degrees\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"delta=0.018; #fractional difference\n",
"n1=1.50; #Core refractive index\n",
"\n",
"#Calculation\n",
"NA=round(n1*math.sqrt(2*delta),2); #numerical aperture\n",
"alpha_m=math.asin(NA); #acceptance angle(radian)\n",
"alpha_m=alpha_m*180/math.pi; #acceptance angle(degrees)\n",
"n2=n1-(delta*n1); #Cladding refractive index\n",
"thetac=math.asin(n2/n1)*180/math.pi; #critical angle(degrees)\n",
"\n",
"#Result\n",
"print \"numerical aperture is\",NA\n",
"print \"acceptance angle is\",round(alpha_m,2),\"degrees\"\n",
"print \"critical angle is\",round(thetac,1),\"degrees\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.5, Page number 12.26"
]
},
{
"cell_type": "code",
"execution_count": 56,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"total number of guided modes is 490.0\n",
"number of modes of graded index fibre is 245.0\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"d=50*10**-6; #diameter(m)\n",
"lamda=1*10**-6; #wavelength(m)\n",
"NA=0.2; #numerical aperture\n",
"\n",
"#Calculation\n",
"NSI=4.9*(d*NA/lamda)**2; #total number of guided modes\n",
"NGI=NSI/2; #number of modes of graded index fibre\n",
"\n",
"#Result\n",
"print \"total number of guided modes is\",NSI\n",
"print \"number of modes of graded index fibre is\",NGI"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.6, Page number 12.26"
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"numerical aperture is 0.47\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"delta=0.05; #fractional difference\n",
"n1=1.5; #Core refractive index\n",
"\n",
"#Calculation\n",
"NA=n1*math.sqrt(2*delta); #numerical aperture\n",
"\n",
"#Result\n",
"print \"numerical aperture is\",round(NA,2)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.7, Page number 12.27"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of modes that can be propagated is 1\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"d=5*10**-6; #diameter(m)\n",
"lamda=1*10**-6; #wavelength(m)\n",
"NA=0.092; #numerical aperture\n",
"\n",
"#Calculation\n",
"N=4.9*(d*NA/lamda)**2; #number of modes that can be propagated\n",
"\n",
"#Result\n",
"print \"number of modes that can be propagated is\",int(N)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.8, Page number 12.27"
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"V number is 94.7\n",
"maximum number of modes is 4485.7\n",
"answer in the book varies due to rounding off errors\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"n1=1.53; #Core refractive index\n",
"n2=1.50; #Cladding refractive index\n",
"a=50*10**-6; #radius(m)\n",
"lamda=1*10**-6; #wavelength(m)\n",
"\n",
"#Calculation\n",
"NA=math.sqrt(n1**2-n2**2); #numerical aperture\n",
"Vn=2*math.pi*a*NA/lamda; #V number\n",
"N=Vn**2/2; #maximum number of modes\n",
"\n",
"#Result\n",
"print \"V number is\",round(Vn,1)\n",
"print \"maximum number of modes is\",round(N,1)\n",
"print \"answer in the book varies due to rounding off errors\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.9, Page number 12.27"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of propagating modes is 49177\n",
"answer in the book is wrong\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"a=100*10**-6; #radius(m)\n",
"lamda=0.85*10**-6; #wavelength(m)\n",
"NA=0.3; #numerical aperture\n",
"\n",
"#Calculation\n",
"N=4*math.pi**2*a**2*NA**2/lamda**2; #number of propagating modes\n",
"\n",
"#Result\n",
"print \"number of propagating modes is\",int(N)\n",
"print \"answer in the book is wrong\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.10, Page number 12.28"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Core refractive index is 1.6025\n",
"acceptance angle is 8.638 degrees\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"NA=0.2; #numerical aperture\n",
"n2=1.59; #Cladding refractive index\n",
"n0=1.33; #refractive index\n",
"\n",
"#Calculation\n",
"n1=round(math.sqrt(NA**2+n2**2),4); #Core refractive index\n",
"NA1=math.sqrt(n1**2-n2**2)/n0; #numerical aperture\n",
"alpha_m=math.asin(NA1); #acceptance angle(radian)\n",
"alpha_m=alpha_m*180/math.pi; #acceptance angle(degrees)\n",
"\n",
"#Result\n",
"print \"Core refractive index is\",n1\n",
"print \"acceptance angle is\",round(alpha_m,3),\"degrees\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.11, Page number 12.29"
]
},
{
"cell_type": "code",
"execution_count": 62,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of photons is 13.675 *10**15\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"c=3*10**8; #velocity of light(m/sec)\n",
"h=6.63*10**-34; #plank's constant(Js)\n",
"lamda=680*10**-9; #wavelength(m)\n",
"P=4*10**-3; #power(W)\n",
"\n",
"#Calculation\n",
"delta_E=c*h/lamda; #energy(J)\n",
"N=P/delta_E; #number of photons\n",
"\n",
"#Result\n",
"print \"number of photons is\",round(N/10**15,3),\"*10**15\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.12, Page number 12.29"
]
},
{
"cell_type": "code",
"execution_count": 64,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Cladding refractive index is 1.49925\n",
"numerical aperture is 0.0474\n",
"critical angle is 88.2 degrees\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"delta=0.0005; #fractional difference\n",
"n1=1.5; #Core refractive index\n",
"\n",
"#Calculation\n",
"n2=n1-(delta*n1); #Cladding refractive index\n",
"NA=n1*math.sqrt(2*delta); #numerical aperture\n",
"thetac=math.asin(n2/n1)*180/math.pi; #critical angle(degrees)\n",
"\n",
"#Result\n",
"print \"Cladding refractive index is\",n2\n",
"print \"numerical aperture is\",round(NA,4)\n",
"print \"critical angle is\",round(thetac,1),\"degrees\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.13, Page number 12.29"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"fraction of initial intensity after 2km is 0.363\n",
"fraction of initial intensity after 5km is 0.048\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"alpha=2.2; #attenuation coefficient(dB/km)\n",
"L1=2; #distance(km)\n",
"L2=6; #distance(km)\n",
"\n",
"#Calculation\n",
"x1=-alpha*L1/10; \n",
"x2=-alpha*L2/10;\n",
"P1=10**x1; #fraction of initial intensity after 2km\n",
"P2=10**x2; #fraction of initial intensity after 5km\n",
"\n",
"#Result\n",
"print \"fraction of initial intensity after 2km is\",round(P1,3)\n",
"print \"fraction of initial intensity after 5km is\",round(P2,3)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.14, Page number 12.30"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"attenuation coefficient is 1.41 dB/km\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"L=0.5; #distance(km)\n",
"Pout=1; #output power(W)\n",
"Pin=85/100; #input power(W)\n",
"\n",
"#Calculation\n",
"alpha=10*math.log10(Pout/Pin)/L; #attenuation coefficient(dB/km)\n",
"\n",
"#Result\n",
"print \"attenuation coefficient is\",round(alpha,2),\"dB/km\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 12.15, Page number 12.30"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"attenuation coefficient is 1.7 dB/km\n",
"overall signal attenuation is 17 dB\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"L=10; #distance(km)\n",
"Pout=2; #output power(W)\n",
"Pin=100; #input power(W)\n",
"\n",
"#Calculation\n",
"alpha=10*math.log10(Pin/Pout)/L; #attenuation coefficient(dB/km)\n",
"o_alpha=round(alpha,1)*L; #overall signal attenuation\n",
"\n",
"#Result\n",
"print \"attenuation coefficient is\",round(alpha,1),\"dB/km\"\n",
"print \"overall signal attenuation is\",int(o_alpha),\"dB\""
]
}
],
"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.9"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|