blob: 603ccf2757d8f4fe6238e4fd1d7a502088e35aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|