diff options
Diffstat (limited to '1655/CH7/EX7.5.1/Example_7_5_1.sce')
-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
|