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 /2216/CH8/EX8.3/ex_8_3.sce | |
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 '2216/CH8/EX8.3/ex_8_3.sce')
-rwxr-xr-x | 2216/CH8/EX8.3/ex_8_3.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2216/CH8/EX8.3/ex_8_3.sce b/2216/CH8/EX8.3/ex_8_3.sce new file mode 100755 index 000000000..630c1ae35 --- /dev/null +++ b/2216/CH8/EX8.3/ex_8_3.sce @@ -0,0 +1,21 @@ +//Example 8.3: The quantum efficiency and The responsivity of the diode +clc; +clear; +close; +//given data : +format('v',5) +disp("part (a)") +e=2*10^10;// in s^-1 +p=5*10^10;// in s^-1 +eta=e/p; +disp(eta,"The quantum efficiency = ") +disp("part (b)") +e=2*10^10;// in s^-1 +p=5*10^10;// in s^-1 +eta=e/p; +e=1.6*10^-19;// in J +h=6.626*10^-34;//in Js +c=3*10^8;// in m s^-1 +lamda=0.90*10^-6;// in m +R=(eta*e*lamda)/(h*c); +disp(R,"The responsivity of the diode,R(AW^-1) = ") |