blob: 098e517ea7a50f0412525a0bdef63ccc63f07551 (
plain)
1
2
3
4
5
6
7
8
9
|
// Chapter 2_Introduction to the quantum theory of solids
//Caption_Change in kinetic energy of electron
//Ex_1//page 37
v=10^5;
delV=0.01;
m=9.1*10^-31;
c=1.6 *(10^-19)
delE=m*v*delV/c;
printf('Change in kinetic energy for a very small change in velocity of electron is %1.10fd eV \n',delE)
|