diff options
Diffstat (limited to '3718/CH1/EX1.14/Ex1_14.sce')
-rw-r--r-- | 3718/CH1/EX1.14/Ex1_14.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3718/CH1/EX1.14/Ex1_14.sce b/3718/CH1/EX1.14/Ex1_14.sce new file mode 100644 index 000000000..6cf77ec5b --- /dev/null +++ b/3718/CH1/EX1.14/Ex1_14.sce @@ -0,0 +1,13 @@ +//Chapter 1: Structure and Bonding
+//Problem: 14
+clc;
+
+//Declaration of Constant
+t_v = 1.3 * 10 ** 15 // Threshold freq. Pt, /sec
+h = 6.626 * 10 ** -34 // Planck's constant, J.sec
+
+
+// Solution
+mprintf("The threshold frequency is the lowest frequency that photons may possess to produce the photoelectric effect.\n")
+E = h * t_v
+mprintf(" The energy corresponding to this frequency is the minimum energy = %.2e erg",E)
|