blob: 0a5f9096fc8fe0de94a861ee9896a115d6a2609a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Example no.5.2
// To calculate (a) the responsivity R and (b) the cutoff wavelength
// Page no.198
clc;
clear;
// Given data
neta=0.9; // The quantum efficiency
Eg=1.42; // The band-gap energy in eV
lambda=1.1; // The operating (free-space) wavelength in micrometer
// (a) The responsivity
R=(neta*lambda)/1.24; // The responsivity in A/W
// Display result on command window
printf('\n The responsivity = %0.1f A/W',R) //Wrong answer in book
// (b) The cutoff wavelength
lambdac=1.2/Eg; //The cutoff wavelength in micrometer
// Display result on command window
printf('\n The cutoff wavelength = %0.3f micrometer',lambdac) //Wrong answer in book
|