diff options
Diffstat (limited to '3840/CH6/EX6.8/Ex6_8.sce')
-rw-r--r-- | 3840/CH6/EX6.8/Ex6_8.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3840/CH6/EX6.8/Ex6_8.sce b/3840/CH6/EX6.8/Ex6_8.sce new file mode 100644 index 000000000..ba23f1c60 --- /dev/null +++ b/3840/CH6/EX6.8/Ex6_8.sce @@ -0,0 +1,23 @@ +clear +// +// +// + +//Variable declaration +epsilonr=1.0000684 //dielectric constant +N=2.7*10**25 //number of atoms +epsilon0=8.85*10**-12 +E=10**6 //electric field(V/m) +Z=2 +e=1.6*10**-19 //charge(coulomb) + +//Calculation +alphae=epsilon0*(epsilonr-1)/N //polarisability(Fm**2) +r=(alphae/(4*%pi*epsilon0))**(1/3) //radius of electron cloud(m) +d=alphae*E/(Z*e) //displacement(m) + +//Result +printf("\n polarisability is %e Fm**2",alphae) +printf("\n radius of electron cloud is %0.3f *10**-11 m",r*10**11) +printf("\n answer for radius given in the book varies due to rounding off errors") +printf("\n displacement is %0.1f *10**-16 m",d*10**16) |