diff options
Diffstat (limited to '3822/CH6/EX6.4/Ex6_4.sce')
-rw-r--r-- | 3822/CH6/EX6.4/Ex6_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3822/CH6/EX6.4/Ex6_4.sce b/3822/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..4a9030df9 --- /dev/null +++ b/3822/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,15 @@ + +//OptoElectronics and Fibre Optics Communication, by C.K Sarkar and B.C Sarkar
+//Example 6.4
+//OS=Windows 10
+////Scilab version Scilab 6.0.0-beta-2(64 bit)
+clc;
+clear;
+
+//given
+Eg1=1.43;//Band Gap Energy of photodetector in eV
+Eg2=[(1.43*1.6*10^-19)];//Band Gap Energy in joule
+
+lamdac=[(6.62*10^-34*3*10^8)/Eg2];//Cut-Off wave length in micrometer
+mprintf("\n cut-off wave length is=%.2fum",lamdac*10^6);//multiplication by 10^6 to convert unit into um//the error is due to roundingoff
+
|