summaryrefslogtreecommitdiff
path: root/3648/CH16/EX16.6/Ex16_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH16/EX16.6/Ex16_6.sce')
-rw-r--r--3648/CH16/EX16.6/Ex16_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH16/EX16.6/Ex16_6.sce b/3648/CH16/EX16.6/Ex16_6.sce
new file mode 100644
index 000000000..0dd566ec6
--- /dev/null
+++ b/3648/CH16/EX16.6/Ex16_6.sce
@@ -0,0 +1,11 @@
+
+//Example 16_6
+clc();
+clear;
+//To calculate the speed just before it strikes it
+va=8*10^6 //Units in meters/sec
+q=1.6*10^-19 //Units in C
+m=1.67*10^-27 //Units in Kg
+vab=20000 //Units in V
+vb=sqrt(va^2-((2*q*vab)/m)) //Units in meters/sec
+printf("The speed of proton before it strikes is Vb=%.1f meters/sec",vb)