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 --- 1970/CH5/EX5.3/Ch05Exa3.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1970/CH5/EX5.3/Ch05Exa3.sce (limited to '1970/CH5/EX5.3') diff --git a/1970/CH5/EX5.3/Ch05Exa3.sce b/1970/CH5/EX5.3/Ch05Exa3.sce new file mode 100755 index 000000000..f5c1d36cc --- /dev/null +++ b/1970/CH5/EX5.3/Ch05Exa3.sce @@ -0,0 +1,14 @@ +// Scilab code Exa5.3 : : Page 203 (2011) +// We have also calculate the value of magnetic field in a particular orbit. +clc; clear; +C = 3e+08; // Velocity of light, m/S +M_0 = 6.644e-027*(C)^2/(1.60218e-013); // Rest mass of alpha particle, MeV +T = 5.998; // Kinetic energy of alpha particle emitted by Po-218 +q = 2*1.60218e-019; // Charge of alpha particle, C +V = sqrt(C^2*T*(T+2*M_0)/(T+M_0)^2); // Velocity of alpha particle,metre per sec +B_r = V*M_0*(1.60218e-013)/(C^2*q*sqrt(1-V^2/C^2)); // magnetic field in a particular orbit, Web per mtere +printf("\nThe velocity of alpha particle : %5.3e m/s\nThe magnetic field in a particular orbit : %6.4f Wb/m", V , B_r); + +// Result +// The velocity of alpha particle : 1.699e+007 m/s +// The magnetic field in a particular orbit : 0.3528 Wb/m \ No newline at end of file -- cgit