blob: 4f323cc7585cdbd62933c6054aa3e790f74f6f41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//Example 10// Ch 3
clc;
clear;
close;
// given data
l=200*10^-10;// wavelength in angstrom
h=4.15*10^-15;//planks constant
c=3*10^8;//speed of light
me=9.11*10^-31;
BE=13.6;//binding energy in eV
PE=(h*c)/l;//in eV
printf("photon enegy %f eV",PE)
KE = PE-BE;//in eV
printf("kinetic energy of photoelectron %f ev",KE)
ve=sqrt((2*KE*1.6*10^-19)/me);
printf("velosity of photoelectron %e m/s",ve)
|