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 /1946/CH9/EX9.13 | |
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 '1946/CH9/EX9.13')
-rwxr-xr-x | 1946/CH9/EX9.13/Ex_9_13.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1946/CH9/EX9.13/Ex_9_13.sce b/1946/CH9/EX9.13/Ex_9_13.sce new file mode 100755 index 000000000..0a124036c --- /dev/null +++ b/1946/CH9/EX9.13/Ex_9_13.sce @@ -0,0 +1,13 @@ +// Example 9.13;//output photo current
+clc;
+clear;
+close;
+e=1.6*10^-19;//elecronic charge
+rp=10^11;//photons per second
+hf=1.28*10^19;// energy in joule
+n=1;//efficency
+C=3*10^8;//SPEED of light in meter per second
+ht=6.62*10^-34;//plank constt.
+Po=(rp/hf)*10^9;//incident optical power in micro watt
+Ip=(n*Po*10^-6*e)/(hf);//output photo current
+disp(Ip,"output photo current in ampere is")
|