summaryrefslogtreecommitdiff
path: root/1061/CH9/EX9.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1061/CH9/EX9.1
downloadScilab-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.1')
-rwxr-xr-x1061/CH9/EX9.1/Ex9_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1061/CH9/EX9.1/Ex9_1.sce b/1061/CH9/EX9.1/Ex9_1.sce
new file mode 100755
index 000000000..dfd23026c
--- /dev/null
+++ b/1061/CH9/EX9.1/Ex9_1.sce
@@ -0,0 +1,13 @@
+//Ex:9.1
+clc;
+clear;
+close;
+e_c=550;// number of electron collected
+p=800;// number of photon incident
+n=e_c/p;// 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=1.3*10^-6// wavelength in m
+R=(n*e*y)/(h*c);// responsivity in A/W
+printf("The responsivity =%f Amp/Watt", R); \ No newline at end of file