summaryrefslogtreecommitdiff
path: root/3636/CH3/EX3.11/Ex3_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH3/EX3.11/Ex3_11.sce')
-rw-r--r--3636/CH3/EX3.11/Ex3_11.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3636/CH3/EX3.11/Ex3_11.sce b/3636/CH3/EX3.11/Ex3_11.sce
new file mode 100644
index 000000000..e7c43a42d
--- /dev/null
+++ b/3636/CH3/EX3.11/Ex3_11.sce
@@ -0,0 +1,17 @@
+clc;
+clear;
+E=1.43 //in eV
+h=4.14*10^-15 //plancks constant in e*V*s
+c=3*10^8 //in m/s
+
+//Calculation
+//a)
+v=E/h
+
+//b)
+lamda=c/v
+
+mprintf("a)minimum frequency= %.3e Hz\n",v)
+mprintf("b)wavelength= %.1e m",lamda) //The answers vary due to round off error
+
+