blob: 80eff78a6ba1b4d5a52257ac829dea4a46485426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Chapter 11 : Free Electron Theory Of Metals
clear;
//Variable declaration
EF=1.1214*10**-18 //fermi energy in J
m=9.11*10**-31 //Mass of electron
h=6.63*10**-34 //planck's constant
//Calculations
n=((8*m*EF)/(h**2))**(3/2)*(%pi/3)/10**28
//Result
mprintf("No. of free electrons per unit volume= %1.3f*10**28 electrons per meter**3",n)
|