diff options
Diffstat (limited to '3648/CH16/EX16.8')
-rw-r--r-- | 3648/CH16/EX16.8/Ex16_8.sce | 12 | ||||
-rw-r--r-- | 3648/CH16/EX16.8/Ex16_8.txt | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3648/CH16/EX16.8/Ex16_8.sce b/3648/CH16/EX16.8/Ex16_8.sce new file mode 100644 index 000000000..a0ad6ae1f --- /dev/null +++ b/3648/CH16/EX16.8/Ex16_8.sce @@ -0,0 +1,12 @@ +//Example 16_8
+clc();
+clear;
+//To find out the speed of the proton
+k=9*10^9 //Units in N meter^2/C^2
+q=5*10^-6 //Units in C
+r=0.5 //Units in meters
+v1=(k*q)/r //Units in V
+q=1.6*10^-19 //Units in V
+m=1.672*10^-27 //Units in Kg
+v=sqrt((v1*q*2)/m) //Units in V
+printf("The speed of electron is v=%.2f meters/sec",v)
diff --git a/3648/CH16/EX16.8/Ex16_8.txt b/3648/CH16/EX16.8/Ex16_8.txt new file mode 100644 index 000000000..aa6982c3b --- /dev/null +++ b/3648/CH16/EX16.8/Ex16_8.txt @@ -0,0 +1 @@ +The speed of electron is v=4150286.78 meters/sec
\ No newline at end of file |