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 --- 1172/CH2/EX2.6/2_6.txt | 3 +++ 1172/CH2/EX2.6/Example2_6.sce | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100755 1172/CH2/EX2.6/2_6.txt create mode 100755 1172/CH2/EX2.6/Example2_6.sce (limited to '1172/CH2/EX2.6') diff --git a/1172/CH2/EX2.6/2_6.txt b/1172/CH2/EX2.6/2_6.txt new file mode 100755 index 000000000..6d0316658 --- /dev/null +++ b/1172/CH2/EX2.6/2_6.txt @@ -0,0 +1,3 @@ + # Problem 6 # + The maximum electric force on electron is 4.800000e-17 N along y -axis +The maximum magnetic force on electron is 3.200000e-17 N along z - axis diff --git a/1172/CH2/EX2.6/Example2_6.sce b/1172/CH2/EX2.6/Example2_6.sce new file mode 100755 index 000000000..e4be80321 --- /dev/null +++ b/1172/CH2/EX2.6/Example2_6.sce @@ -0,0 +1,14 @@ +clc +// Given That +E_0 = 300 // maximum electric field in electromagnetic wave in w/m +v = 2e8 // speed of moving electron in m/s along y - axis +c = 3e8 // speed of light in m/s +q = 1.6e-19 // charge on electron in coulomb +//Sample Problem 6 Page No. 81 +printf ("\n # Problem 6 # \n ") +B_0 = E_0 / c // calculation of magnitude of maximum magnetic field +F_e = q*E_0 // calculation of electromagnetic force on electron in N +F_b = q*v*B_0 // calculation of magnetic force on electron in N + printf ("The maximum electric force on electron is %e N along y -axis \n", F_e) + printf("The maximum magnetic force on electron is %e N along z - axis\n", F_b) + -- cgit