summaryrefslogtreecommitdiff
path: root/3543/CH5/EX5.29/Ex5_29.sce
diff options
context:
space:
mode:
Diffstat (limited to '3543/CH5/EX5.29/Ex5_29.sce')
-rw-r--r--3543/CH5/EX5.29/Ex5_29.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3543/CH5/EX5.29/Ex5_29.sce b/3543/CH5/EX5.29/Ex5_29.sce
new file mode 100644
index 000000000..fdc335253
--- /dev/null
+++ b/3543/CH5/EX5.29/Ex5_29.sce
@@ -0,0 +1,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);
+
+