diff options
Diffstat (limited to '3753/CH4/EX4.4/Ex4_4.sce')
-rw-r--r-- | 3753/CH4/EX4.4/Ex4_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH4/EX4.4/Ex4_4.sce b/3753/CH4/EX4.4/Ex4_4.sce new file mode 100644 index 000000000..9f88698ef --- /dev/null +++ b/3753/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,14 @@ +//Example 4.4, Page number 4.33 + +clc;clear;close + +// variable declaration +h=6.626*10**-34 // Planck constant +C=3*10**8 // Velocity of light +E_g=1.44 // bandgap + +// calculations +lamda=(h*C)*10**10/(E_g*1.6*10**-19) // Wavelenght + +// Result +printf("Wavelength = %.f Angstrom",(lamda)) |