blob: 211b4c9d3a691f5c78e11eb72d606a7c40cb9754 (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 16.1, page 575
clc
r=(4**(1/3)+208**(1/3))*1.07
printf("\n The sum of radii is %f F",r)
e=1.60*10^-19//in coul
z=82
x=1.1*10^-10//coul2/nt-m2
Vo=(2*z*e*e)/(x*r*10^-15)
printf("\n The total energy is %e J",Vo)
|