summaryrefslogtreecommitdiff
path: root/3543/CH5/EX5.29/Ex5_29.sce
blob: fdc335253eba92c67acad9be059a5e497d016098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Example 5.29 
// Computation of cut off wavelength
// Page no 489

clc;
clear;
close;

// Given data
h=6.626*10^-34;            // Planck constant
c=3*10^8;                  // Speed of light
Eg= 0.7*1.602*10^-19;      // Bandgap energy

// Cut off wavelength 
lambda= h*c/Eg;                    
//Display result on command window
printf("\n Cut off wavelength (micrometer) = %0.2f  ",lambda*10^6);