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 /1655/CH7/EX7.5.1 | |
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 '1655/CH7/EX7.5.1')
-rwxr-xr-x | 1655/CH7/EX7.5.1/Example_7_5_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1655/CH7/EX7.5.1/Example_7_5_1.sce b/1655/CH7/EX7.5.1/Example_7_5_1.sce new file mode 100755 index 000000000..603ccf275 --- /dev/null +++ b/1655/CH7/EX7.5.1/Example_7_5_1.sce @@ -0,0 +1,15 @@ +// Example 7.5.1 page 7.24
+
+clc;
+clear;
+
+h=6.626d-34; //plank's constant
+c=3d8; //speed of light
+e=1.6d-19; //charge of electron
+q=1.43; //Bandgap energy
+
+lamda=h*c/(q*e)*10^9; //computing wavelength
+printf("\nWavelength is %d nm",lamda);
+printf("\nThis proves that photodiode will not operate for photon of wavelength greater than %d nm.",lamda);
+
+//answer in the book 868nm; deviation of 1nm
|