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 --- 2243/CH10/EX10.2/Ex10_2.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 2243/CH10/EX10.2/Ex10_2.sce (limited to '2243/CH10/EX10.2/Ex10_2.sce') diff --git a/2243/CH10/EX10.2/Ex10_2.sce b/2243/CH10/EX10.2/Ex10_2.sce new file mode 100755 index 000000000..b7190aa56 --- /dev/null +++ b/2243/CH10/EX10.2/Ex10_2.sce @@ -0,0 +1,13 @@ +clc(); +clear; +//Given : +R = 1; // radius in A +N = 5*10^28 ; // atoms/m^3 +mu_0 = 4*%pi*10^-7; // permiability of free space in H/m +mu_r = 1;//relative permiability +m = 9.1*10^-31 // electron mass in kg +e = 1.6*10^-19 ; // charge of an electron in C +// R = 1*10^-10 m because 1 A = 1.0*10^-10 m +chi = -(N*e^2*(R*10^-10)^2*mu_0*mu_r)/(4*m); //Susceptibility of diamagnetic material +printf("Susceptibility of diamagnetic materials is %.2f x 10^-5",chi*10^5); +//Result obtained differs from that in textbook, because in textbook only the order of 10 is considered . -- cgit