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 /1061/CH9/EX9.7 | |
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 '1061/CH9/EX9.7')
-rwxr-xr-x | 1061/CH9/EX9.7/Ex9_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1061/CH9/EX9.7/Ex9_7.sce b/1061/CH9/EX9.7/Ex9_7.sce new file mode 100755 index 000000000..13ac69b8b --- /dev/null +++ b/1061/CH9/EX9.7/Ex9_7.sce @@ -0,0 +1,16 @@ +//Ex:9.7
+clc;
+clear;
+close;
+n=0.65;// quantum efficiency
+e=1.602*10^-19;// charge
+h=6.626*10^-34;// plank constant
+c=3*10^8;// speed of light in m/s
+y=0.85*10^-6// wavelength in m
+R=(n*e*y)/(h*c);// responsivity in A/W
+Po=0.35*10^-6;// in W
+Ip=R*Po;// output photo current
+I=9*10^-6;// output current in A
+M=I/Ip;// multiplication factor
+M1=ceil(M);
+printf("The multiplication factor =%d", M1);
\ No newline at end of file |