summaryrefslogtreecommitdiff
path: root/3648/CH16/EX16.8/Ex16_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH16/EX16.8/Ex16_8.sce')
-rw-r--r--3648/CH16/EX16.8/Ex16_8.sce12
1 files changed, 12 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)