blob: bcc869cdcf46bfc0c0da3efd5050a924e9318e74 (
plain)
1
2
3
4
5
6
7
8
|
disp("The absorption edge of the quantum well structureoccurs at Eg+Ehh1+Ee1");
Ehh1=0.002;
Ee1=0.014;
Eg=1.424;
E=Eg+Ehh1+Ee1;
printf('\n The band edge therefore shifts from 1.424eV to %f eV',E);
printf('\n');
disp("This corresponds to a blue shift of 10nm");
|