summaryrefslogtreecommitdiff
path: root/3710/CH1/EX1.6/Ex1_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3710/CH1/EX1.6/Ex1_6.sce')
-rw-r--r--3710/CH1/EX1.6/Ex1_6.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3710/CH1/EX1.6/Ex1_6.sce b/3710/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..270c6b9e6
--- /dev/null
+++ b/3710/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,13 @@
+//Example 1.6, Page Number 32
+//Phi Determination
+
+clc;
+e=1.6*(10**-19) //Charge Of an Electron in Coulombs
+h=6.6*(10**-34) //Plancks Constant in meter square kilogram per second
+vo=1.1*(10**15) //Threshold Frequency in Hertz
+
+// h*vo=phi*e ,phi is the required Work Function,vo is the threshold frequency
+// Lets assume that the ejected electron has zero kinetic energy
+
+phi=h*vo/e
+mprintf("The Required Work function is %.1f eV",phi);