summaryrefslogtreecommitdiff
path: root/1061/CH9/EX9.9/Ex9_9.sce
blob: 845598baf4e9a832176fbe0001b581e457fc3a34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Ex:9.9
clc;
clear;
close;
n=0.15;// quantum efficiency
e=1.6*10^-19;// charge
h=6.63*10^-34;// plank constant
c=3*10^8;// speed of light in m/s
y=0.85*10^-6;// cut off wavelength in m
f=c/y;// frequency in Hz
R=(n*e)/(h*f);// responsivity in A/W
printf("The responsivity =%f A/W ", R);