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
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
|
{
"metadata": {
"name": "",
"signature": "sha256:a1fc86a1745331cbb94487da02761804f9fca4fd4c628ee53c6bfd5a750d81a6"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 8: Optical Fiber Communication System"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 1: PgNo-339"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"tr=40.0 # rediative life time in ns\n",
"tnr=60.0 # nonrediative life time in ns\n",
"i=35*math.pow(10,-3) # drive current in amp\n",
"y=0.85*math.pow(10,-6)# wavelength in m\n",
"h=6.626*math.pow(10,-34)# plank constant\n",
"c=3*math.pow(10,8)# the speed of light in m/s\n",
"eq=1.602*math.pow(10,-19)# charge\n",
"\n",
"# calculations\n",
"t=tr*tnr/(tr+tnr)# total carrier recombination lifetime ns\n",
"ni=t/tr # internal quantam efficiency\n",
"pil=(ni*h*c*i)/(eq*y)# internal power in watt\n",
"p_int=pil*math.pow(10,3)# internal power in mW\n",
"\n",
"# Results\n",
"print ('%s %.f %s' %(\" The total carrier recombination lifetime = \",t,\"ns\"))\n",
"print ('%s %.2f %s' %(\"\\n The internal power = \",p_int,\"mW\"))\n",
"print (\"\\n The answer is wrong in textbook \")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The total carrier recombination lifetime = 24 ns\n",
"\n",
" The internal power = 30.66 mW\n",
"\n",
" The answer is wrong in textbook \n"
]
}
],
"prompt_number": 33
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2: PgNo-341"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"tr=30.0 # rediative life time in ns\n",
"tnr=50.0 # nonrediative life time in ns\n",
"i=40*math.pow(10,-3) # drive current in amp\n",
"pil=28.4*math.pow(10,-3) # internal power in watt\n",
"h=6.626*math.pow(10,-34) # plank constant\n",
"c=3*math.pow(10,8) # the speed of light in m/s\n",
"eq=1.602*math.pow(10,-19) # charge\n",
"t=tr*tnr/(tr+tnr) # total carrier recombination lifetime ns\n",
"ni=t/tr # internal quantam efficiency\n",
"y=(ni*h*c*i)/(eq*pil) # peak emission wavelength in m\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The total carrier recombination lifetime = \",t,\"ns\"))\n",
"print ('%s %.2f %s' %(\"\\n The peak emission wavelength = \",y*pow(10,6),\"um\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The total carrier recombination lifetime = 18.75 ns\n",
"\n",
" The peak emission wavelength = 1.09 um\n"
]
}
],
"prompt_number": 34
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3: PgNo-345"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"nx=3.6 # refractive index\n",
"Fn=0.68 # transmission factor\n",
"pe_pi=(Fn)/(4*math.pow(nx,2))\n",
"pi_p=0.3\n",
"nep=pe_pi*pi_p # external power efficiency\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\"The external power efficiency = \",nep*100,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The external power efficiency = 0.39 %\n"
]
}
],
"prompt_number": 35
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 4: PgNo-347"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"n=3.6 # core refractive index\n",
"NA=0.15 # numerical aperture\n",
"nc=math.pow(NA,2) # coupling efficiency\n",
"l_s=-10*math.log(nc)/math.log(10) # loss in db\n",
"pe_pi=0.023*0.0013 # from ex 8.3\n",
"pc=-10*math.log(pe_pi)/math.log(10) # loss in decibels relative to Pint\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The coupling efficiency = \",nc*100,\"%\"))\n",
"print ('%s %.3f %s' %(\"\\n The loss = \",l_s,\"db\"))\n",
"print ('%s %.2f %s' %(\"\\n The loss in decibels relative to Pint= \",pc,\"db\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The coupling efficiency = 2.25 %\n",
"\n",
" The loss = 16.478 db\n",
"\n",
" The loss in decibels relative to Pint= 45.24 db\n"
]
}
],
"prompt_number": 36
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 5: PgNo-348"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"r=45*math.pow(10,-6) # radius in m\n",
"NA=0.3 # numerical aperture\n",
"rd=40 # radiance\n",
"A=3.14*math.pow((r*100),2) # area in cm^2\n",
"pe=3.14*(1-r)*A*rd*math.pow(NA,2) # optical power coupled into the fiber\n",
"Pe=pe*math.pow(10,4) # optical power coupled into the fiber uW\n",
"\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The optical power coupled into the fiber = \",Pe,\"uW\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The optical power coupled into the fiber = 7.187 uW\n"
]
}
],
"prompt_number": 37
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 6: PgNo-351"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"pc=150*math.pow(10,-6) # coupling power W\n",
"p=20*math.pow(10,-3)*2 # optical power W\n",
"npc=pc/p # overall efficiency\n",
"Npc=npc*100 # percentage of overall efficiency\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The percentage of overall efficiency = \",Npc,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The percentage of overall efficiency = 0.37 %\n"
]
}
],
"prompt_number": 38
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 7: PgNo-357"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"n=1.5 # refractive index\n",
"L=0.05 #crystal length in m\n",
"y=0.5*math.pow(10,-6) # wavelength in m\n",
"c=3*math.pow(10,8) # speed of light in m/s\n",
"q=2*n*L/y # the number of longitudinal modes\n",
"df=c/(2*n*L) # frequency separation of the modes in Hz\n",
"Df=df/math.pow(10,9) # frequency separation of the modes in GHz\n",
"\n",
"# Results\n",
"print ('%s %d ' %(\" The number of longitudinal modes = \",q))\n",
"print ('%s %.2f %s' %(\"\\n The frequency separation of the modes = \",Df,\"GHz\"))\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The number of longitudinal modes = 300000 \n",
"\n",
" The frequency separation of the modes = 2.00 GHz\n"
]
}
],
"prompt_number": 39
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 8: PgNo-358"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable declaration\n",
"Eg=1.43 # bandgap energy in eV\n",
"dy=0.15*math.pow(10,-9);\n",
"c=3*math.pow(10,8) # speed of light in m/s\n",
"y=1.24/Eg # in um\n",
"y1=y*math.pow(10,-6) # wavelength of optical emission in m\n",
"df=(c*dy)/math.pow(y1,2) # the line width in Hz\n",
"Df=df/math.pow(10,9) # the line width in GHz\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The wavelength of optical emission = \",y,\"um\"))\n",
"print ('%s %.4f %s' %(\"\\n The frequency separation of the modes = \",Df,\"GHz\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The wavelength of optical emission = 0.87 um\n",
"\n",
" The frequency separation of the modes = 59.8468 GHz\n"
]
}
],
"prompt_number": 40
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9: PgNo-362"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"n=3.6 # refractive index\n",
"c=3*math.pow(10,8)# speed of light in m/s\n",
"y=0.85*math.pow(10,-6)# wavelength in m\n",
"df=275*math.pow(10,9) # frequency separation of the modes in Hz\n",
"L=c/(2*n*df) # crystal length in m\n",
"L1=L*math.pow(10,6) # crystal length in um\n",
"q=2*n*L/y # the number of longitudinal modes\n",
"\n",
"# results\n",
"print ('%s %.2f %s' %(\" The crystal length = \",L1,\"um\"))\n",
"print ('%s %d' %(\"\\n The the number of longitudinal modes = \",int(q)))\n",
"print (\"\\n answer is wrong in textbook \")"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The crystal length = 151.52 um\n",
"\n",
" The the number of longitudinal modes = 1283\n",
"\n",
" answer is wrong in textbook \n"
]
}
],
"prompt_number": 41
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10: PgNo-364"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"nt=0.20# total efficiency\n",
"Eg=1.43# bandgap energy in eV\n",
"V=2.2# applied voltage in volts\n",
"nep=(nt*Eg)/V# external power efficiency\n",
"Nep=nep*100# percentage of external power efficiency\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The external power efficiency = \",Nep,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The external power efficiency = 13.00 %\n"
]
}
],
"prompt_number": 42
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 11: PgNo-367"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"h=0.35*math.pow(10,-3)# irradiance W/cm^2\n",
"po=0.45*math.pow(10,-3)# power output in watt\n",
"d=1.5 # separation distance in cm\n",
"x=math.sqrt((4*po)/(3.14*math.pow(d,2)*h)) # divergence angle in radians\n",
"X=(x*180)/3.14 # divergence angle in degree\n",
"\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The divergence angle = \",X,\"degree \"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The divergence angle = 48.909 degree \n"
]
}
],
"prompt_number": 43
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 12: PgNo-369"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"ni=0.09 # normal efficiency\n",
"d=2*2.54 # separation distance in cm\n",
"x=0.2 # divergence angle in radians\n",
"vf=2.0 # forward voltage in volts\n",
"i_f=65*math.pow(10,-3) # forward current in amp\n",
"pil=vf*i_f # input power in Watt\n",
"po=ni*pil # output power in Watt\n",
"H=4*po/(3.14*math.pow(d,2)*math.pow(x,2)) # irradiance in watt/cm^2\n",
"H1=H*1000 # irradiance in mwatt/cm^2\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The irradiance = \",H1,\"mwatt/cm^2 \"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The irradiance = 14.44 mwatt/cm^2 \n"
]
}
],
"prompt_number": 44
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 13: PgNo-372"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# variable declaration\n",
"tr=3.5 # relative life time in ms\n",
"tnr=50 # nonrelative life time in ms\n",
"ni=tnr/(tr+tnr) # internal quantam efficiency\n",
"\n",
"# results\n",
"print ('%s %.2f %s' %(\" The internal quantam efficiency = \",ni*100,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The internal quantam efficiency = 93.46 %\n"
]
}
],
"prompt_number": 45
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 14: PgNo-375"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# initialisation of variables\n",
"ni=0.15 # internal quantam efficiency\n",
"vf=2.0 # forward voltage in volts\n",
"i_f=15*math.pow(10,-3) # forward current in amp\n",
"x=25 # acceptance angle in degree\n",
"pil=vf*i_f # input power in Watt\n",
"po=ni*pil # output power in Watt\n",
"NA=(math.sin(x*math.pi/180))\n",
"nc=math.pow(NA,2) # numerical aperture\n",
"pf=nc*po # optical power coupled into optical fiber in w\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The optical power coupled into optical fiber = \",pf*1000,\"mW\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The optical power coupled into optical fiber = 0.80 mW\n"
]
}
],
"prompt_number": 46
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 15: PgNo-378"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"tnr=10 # nonrediative life time in ns\n",
"n_inj=0.80 # injection efficiency\n",
"n_ex=0.60 # extraction efficiency\n",
"nt=0.025 # total efficiency\n",
"nr=nt/(n_inj*n_ex) # non rediative life time in ns\n",
"tr=((1/nr)-1)*tnr # rediative life time in ns\n",
"# Results\n",
"print ('%s %.1f %s' %(\" The rediative life time = \",tr,\"ns\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The rediative life time = 182.0 ns\n"
]
}
],
"prompt_number": 47
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 16: PgNo-381"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"tr=30*math.pow(10,-9) # rise time in s\n",
"Bw=0.35/tr # bandwidth in Hz\n",
"\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The bandwidth = \",Bw/math.pow(10,6),\"MHz\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The bandwidth = 11.667 MHz\n"
]
}
],
"prompt_number": 48
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 17: PgNo-384"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"y=630*math.pow(10,-9)# operating wavelength in m\n",
"w=25*math.pow(10,-6) # spot size in m\n",
"x=2*y/(math.pi*w) # divergence angle in radians\n",
"x1=x*180/math.pi # divergence angle in degree\n",
"\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The divergence angle = \",x,\"radians\"))\n",
"print ('%s %.3f %s' %(\"\\n The divergence angle = \",x1,\"degree\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The divergence angle = 0.016 radians\n",
"\n",
" The divergence angle = 0.919 degree\n"
]
}
],
"prompt_number": 49
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 18: PgNo-388"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"y1=550*math.pow(10,-3)# peak of eyes response in um\n",
"y2=10.6 # standard wavelength in um\n",
"y3=2.39 # predominant IR line of He-Ne laser in um\n",
"E1=1.24/y1 # energy in electron volts\n",
"E2=1.24/y2 # energy in electron volts\n",
"E3=1.24/y3 # energy in electron volts\n",
"\n",
"# results\n",
"print ('%s %.3f %s' %(\" The energy = \",E1,\"electron volts\"))\n",
"print ('%s %.3f %s' %(\"\\n The energy = \",E2,\"electron volts\"))\n",
"print ('%s %.3f %s' %(\"\\n The energy = \",E3,\"electron volts\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The energy = 2.255 electron volts\n",
"\n",
" The energy = 0.117 electron volts\n",
"\n",
" The energy = 0.519 electron volts\n"
]
}
],
"prompt_number": 50
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 19: PgNo-391"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# variable initialisation\n",
"Eg=1.4 # energy in electron volts\n",
"y=1.24/Eg # cut off wavelength in um\n",
"y1=y*1000 # cut off wavelength in nm\n",
"# Results\n",
"print ('%s %.4f %s' %(\" The cut off wavelength = \",y1,\"nm\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The cut off wavelength = 885.7143 nm\n"
]
}
],
"prompt_number": 51
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 20: PgNo-394"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"y=1200*math.pow(10,-9)# operating wavelength in m\n",
"w=5*math.pow(10,-6)# spot size in m\n",
"x=2*y/(math.pi*w)# divergence angle in radians\n",
"x1=x*180/math.pi # divergence angle in degree\n",
"\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The divergence angle = \",x,\"radians\"))\n",
"print ('%s %.3f %s' %(\"\\n The divergence angle = \",x1,\"degree\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The divergence angle = 0.153 radians\n",
"\n",
" The divergence angle = 8.754 degree\n"
]
}
],
"prompt_number": 52
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 21: PgNo-395"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"n1=1.48 # core refractive index\n",
"n2=1.46 # cladding refractive index \n",
"NA=math.sqrt(math.pow(n1,2)-math.pow(n2,2)) # numerical aperture\n",
"xa=(math.asin(NA))*(180/math.pi) # acceptance angle in degree\n",
"nc=math.pow(NA,2) # coupling efficiency\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The acceptance angle = \",xa,\"degree\"))\n",
"print ('%s %.2f %s' %(\"\\n The coupling efficiency = \",nc*100,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The acceptance angle = 14.03 degree\n",
"\n",
" The coupling efficiency = 5.88 %\n"
]
}
],
"prompt_number": 53
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 22: PgNo-398"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"c=3*math.pow(10,8) # speed of light in m/s\n",
"n=3.66 # for GaAs\n",
"L=150*math.pow(10,-6) # cavity length in m\n",
"dv=c/(2*n*L) #frequency separation in Hz\n",
"dv1=dv/math.pow(10,12) # frequency separation in GHz\n",
"h=6.64*math.pow(10,-34) # plank constant\n",
"q=1.6*math.pow(10,-19) # charge of an electron\n",
"dE=(h*dv)/q # energy separation eV\n",
"\n",
"# Results\n",
"print ('%s %.4f %s' %(\" The frequency separation = \",dv1,\"GHz\"))\n",
"print ('%s %.3f %s' %(\"\\n The energy separation = \",dE*1000,\"meV\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The frequency separation = 0.2732 GHz\n",
"\n",
" The energy separation = 1.134 meV\n"
]
}
],
"prompt_number": 54
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 23: PgNo-400"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# variable initialisation\n",
"po=2*math.pow(10,-3)# optical power in watts\n",
"I=100*math.pow(10,-3)# current in amp\n",
"V=2 # applied voltage in volt\n",
"pe=I*V # electrical power in watts\n",
"n=(po/pe)*100 # conversion efficiency\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The conversion efficiency = \",n,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The conversion efficiency = 1.00 %\n"
]
}
],
"prompt_number": 55
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 24: PgNo-403"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# variable initialisation\n",
"c=3*math.pow(10,8) # speed of light in m/s\n",
"h=6.64*math.pow(10,-34) # plank constant\n",
"Eg=1.43 # gap energy in eV\n",
"y=(1.24*math.pow(10,-6))/Eg # wavelength in m\n",
"dy=0.1*math.pow(10,-9) # in m\n",
"df=(dy*c)/math.pow(y,2) # width in Hz\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The wavelength = \",y*pow(10,6),\"um\"))\n",
"print ('%s %.4f %s' %(\"\\n The width = \",df/pow(10,9),\"GHz\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The wavelength = 0.867 um\n",
"\n",
" The width = 39.8979 GHz\n"
]
}
],
"prompt_number": 56
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 25: PgNo-407"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable declaration\n",
"tr=25.0 # rediative life time in ns\n",
"tnr=90.0 # nonrediative life time in ns\n",
"i=3.5*math.pow(10,-3) # drive current in amp\n",
"y=1.31*math.pow(10,-6) # wavelength in m\n",
"h=6.625*math.pow(10,-34) # plank constant\n",
"c=3*math.pow(10,8) # the speed of light in m/s\n",
"eq=1.6*math.pow(10,-19 )# charge\n",
"t=tr*tnr/(tr+tnr) # total carrier recombination lifetime ns\n",
"ni=t/tr # internal quantam efficiency\n",
"pil=(ni*h*c*i)/(eq*y) # internal power in watt\n",
"p_int=pil*pow(10,3) # internal power in mW\n",
"P=p_int/(ni*(ni+1)) # power emitted in mW\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The total carrier recombination lifetime = \",t,\"ns\"))\n",
"print ('%s %.2f ' %(\"\\n The internal quantam efficiency = \", ni))\n",
"print ('%s %.2f %s' %(\"\\n The internal power = \",p_int,\"mW\"))\n",
"print ('%s %.2f %s' %(\"\\n The power emitted = \",P,\"mW\"))\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The total carrier recombination lifetime = 19.57 ns\n",
"\n",
" The internal quantam efficiency = 0.78 \n",
"\n",
" The internal power = 2.60 mW\n",
"\n",
" The power emitted = 1.86 mW\n"
]
}
],
"prompt_number": 57
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 26: PgNo-409"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"nt=0.18 # total efficiency\n",
"Eg=1.43 # band gape energy eV\n",
"V=2.5 # appied voltage in volt\n",
"n_ex=(nt*(Eg/V))*100 # external efficiency\n",
"\n",
"# Results\n",
"print ('%s %.2f %s' %(\" The external efficiency = \",n_ex,\"%\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The external efficiency = 10.30 %\n"
]
}
],
"prompt_number": 58
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 27: PgNo-411"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"c=3*math.pow(10,8) # speed of light in m/s\n",
"n=3.6 # for GaAs\n",
"df=278*math.pow(10,9) # separation in Hz\n",
"y=0.87*math.pow(10,-6) # wavelength in m\n",
"L=c/(2*n*df) # cavity length in m\n",
"l=L*math.pow(10,6) # cavity length in um\n",
"L1=math.floor(l)*math.pow(10,-6) # cavity length in m\n",
"q=(2*n*L1)/y # number of longitudinal modes\n",
"# Results\n",
"print ('%s %.3f %s' %(\" The cavity length = \",l,\"um\"))\n",
"print ('%s %d' %( \"\\n The number of longitudinal modes = \",int(q)))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The cavity length = 149.880 um\n",
"\n",
" The number of longitudinal modes = 1233\n"
]
}
],
"prompt_number": 59
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 28: PgNo-415"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Initialisation of variables\n",
"ac=14 # acceptance angle in degree\n",
"nc=math.pow((math.sin(ac*math.pi/180)),2) # coupling efficiency\n",
"l_s=-10*math.log(nc)/math.log(10) # loss in decibels\n",
"\n",
"# results\n",
"print ('%s %.3f ' %(\" The coupling efficiency = \",nc))\n",
"print ('%s %.3f %s' %(\"\\n The loss = \",l_s,\"decibels\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The coupling efficiency = 0.059 \n",
"\n",
" The loss = 12.326 decibels\n"
]
}
],
"prompt_number": 60
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 29: PgNo-417"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"# Variable initialisation\n",
"c=3*math.pow(10,8)# speed of light in m/s\n",
"n=3.7 # for GaAs\n",
"L=500*math.pow(10,-6) # cavity length in m\n",
"y=850*math.pow(10,-9)\n",
"df=c/(2*n*L) #frequency separation in Hz\n",
"df1=df/math.pow(10,9) # frequency separation in GHz\n",
"dy=(y*y)/(2*L*n) # wavelength in m\n",
"dy1=dy*math.pow(10,9) # wavelength in nm\n",
"\n",
"# Resultsh\n",
"print ('%s %.4f %s' %(\" The frequency separation = \",df1,\"GHz\"))\n",
"print ('%s %.3f %s' %(\"\\n The wavelength separation = \",dy1,\"nm\"))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
" The frequency separation = 81.0811 GHz\n",
"\n",
" The wavelength separation = 0.195 nm\n"
]
}
],
"prompt_number": 61
}
],
"metadata": {}
}
]
}
|