diff options
Diffstat (limited to '3636/CH10/EX10.9/Ex10_9.sce')
-rw-r--r-- | 3636/CH10/EX10.9/Ex10_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3636/CH10/EX10.9/Ex10_9.sce b/3636/CH10/EX10.9/Ex10_9.sce new file mode 100644 index 000000000..709028d7e --- /dev/null +++ b/3636/CH10/EX10.9/Ex10_9.sce @@ -0,0 +1,11 @@ +clc;
+clear;
+Eg=1.43 //Energy band gap in eV
+h=4.14*10^-15 //planck's constant in eV/s
+c=3*10^8 //in m/s
+
+//Calculation
+lamda=(h*c)/Eg
+
+format("v",8)
+disp(lamda,"Wavelength (m)= ") //The answers vary due to round off error
|