summaryrefslogtreecommitdiff
path: root/2183/CH7/EX7.3/Ex_7_3.sce
blob: de5daf3ca4fb126d0cbc9ec6ce2e937ab7500704 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Example 7.3 //Wavelength and Incident optical power
clc;
clear;
close;
E=1.5*10^-19;//energy in joule
e=1.6*10^-19;//elecronic charge
If=3*10^-6;//forward current in ampere
C=3*10^8;//Speed of light in meter per second
n=0.6;//quantum efficiency
ht=6.62*10^-34;//plank constt.
h=((ht*C)/E)*10^6;//Wavelength
R=(n*e)/(E);//Responsivity in ampere per watt
Po=(If/R)*10^6;//Output power in micro watt
disp(h,"wavelength in micro meter")
disp(Po,"Output power in micro Watt")