diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1739/CH8/EX8.16 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1739/CH8/EX8.16')
-rwxr-xr-x | 1739/CH8/EX8.16/Exa8_16.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1739/CH8/EX8.16/Exa8_16.sce b/1739/CH8/EX8.16/Exa8_16.sce new file mode 100755 index 000000000..9dad73fd5 --- /dev/null +++ b/1739/CH8/EX8.16/Exa8_16.sce @@ -0,0 +1,21 @@ +//Exa 8.16
+clc;
+clear;
+close;
+//Given data :
+format('v',5);
+photons=10^13;//incident photons/sec
+E=1.28*10^-19;//in Joule
+h=6.63*10^-34;//Planks constant
+q=1.6*10^-19;//in coulamb
+c=3*10^8;//in m/s
+//Part (a) :
+lambda=h*c/(E);//in meter
+disp(lambda*10^6,"Wavelength of incident radiation in micro meter : ");
+//Part (b) :
+Ip=q*photons;//in Ampere
+disp(Ip*10^6,"Output photocurrent in micro Ampere : ");
+//Part (c) :
+M=18;//unitless
+Im=M*Ip;//in Ampere
+disp(Im*10^6,"If device is an APD, Output photocurrent in micro Ampere : ");
\ No newline at end of file |