From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2258/CH6/EX6.8/6_8.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 2258/CH6/EX6.8/6_8.sce (limited to '2258/CH6/EX6.8') diff --git a/2258/CH6/EX6.8/6_8.sce b/2258/CH6/EX6.8/6_8.sce new file mode 100755 index 000000000..327148eed --- /dev/null +++ b/2258/CH6/EX6.8/6_8.sce @@ -0,0 +1,13 @@ +clc(); +clear; +// To calculate the polarizability and relative permittivity of He +R=0.55; //radius of He atom in angstrom +R=R*10^-10; //radius of He atom in m +epsilon_0=8.84*10^-12; //f/m +N=2.7*10^25; +alpha_e=4*%pi*epsilon_0*R^3; +epsilon_r=(N*alpha_e/epsilon_0)+1; +printf("polarizability in farad m^2 is"); +disp(alpha_e); +printf("relative permitivity is"); +disp(epsilon_r); -- cgit