blob: 270c6b9e66a83c8ed52c4ae2e2650acb2cb00717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
|