summaryrefslogtreecommitdiff
path: root/3543/CH5/EX5.28/Ex5_28.sce
blob: 6dcc3b590ff76166b2bd02a5dcc7eefda2a0e9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Example 5.28 
// Computation of  cut off wavelength
// Page no 488

clc;
clear;
close;

// Given data
h=6.626*10^-34;          // Planck constant.
c=3*10^8;                // Speed of light
Eg= 1.43*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.3f  ",lambda*10^6);