blob: 6bab074eea1eecb8473cb416941dce8eefb0fe1e (
plain)
1
2
3
4
5
6
7
8
9
|
//Given that
Kalpha = 178.9*10^-12 //in m
Kimpure = 143.5*10^-12 //in m
Z = 27
//sample Problem 41-5
printf("**Sample Problem 41-5**\n")
Zx = sqrt(Kalpha/Kimpure)*(Z-1) + 1
printf("The proton number of the impurity is %d", Zx)
|