summaryrefslogtreecommitdiff
path: root/2708/CH16/EX16.1/ex_16_1.sce
blob: aa37927f5b4d0b4154aaf35acd0cab27246c5e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Example 16.1 //de-broglie wavelength 
clc;
clear;
//given data :
h=6.62D-34;// plank's constant in joules-sec
m=9.1D-31;// mass of electron in Kg
V=1.25D3;// Potential difference in kV
E=V*1.6D-19;// energy associated to potential in joule
lamda=h/sqrt(2*m*E);// formula to calculate
disp(lamda,"de broglie wavelength in m ")

//in book it is  wronglly calculated