diff options
Diffstat (limited to '1271/CH6/EX6.5')
-rwxr-xr-x | 1271/CH6/EX6.5/5.txt | 1 | ||||
-rwxr-xr-x | 1271/CH6/EX6.5/example6_5.sce | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/1271/CH6/EX6.5/5.txt b/1271/CH6/EX6.5/5.txt new file mode 100755 index 000000000..4cd8b42f2 --- /dev/null +++ b/1271/CH6/EX6.5/5.txt @@ -0,0 +1 @@ + Ratio of the charge on an electron to the mass of an electron = 2.000000e+06 C/kg.
\ No newline at end of file diff --git a/1271/CH6/EX6.5/example6_5.sce b/1271/CH6/EX6.5/example6_5.sce new file mode 100755 index 000000000..3b9d6bad0 --- /dev/null +++ b/1271/CH6/EX6.5/example6_5.sce @@ -0,0 +1,10 @@ +clc +// Given that +V = 2.500e3 // voltage across the electrode in V +E = 3.6e4 // strength of electric field in V/m +B = 1.2e-3 // magnetic field in tesla +// Sample Problem 5 on page no. 6.22 +printf("\n # PROBLEM 5 # \n") +r = (E / B)^2 / (2 * V)//calculation for ratio of the charge on an electron to the mass of an electron +printf("\n Standard formula used \n e/m=(E/B)^2 / (2V). \n") +printf("\n Ratio of the charge on an electron to the mass of an electron = %e C/kg.",r) |