summaryrefslogtreecommitdiff
path: root/1511/CH1/EX1.10/ex1_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1511/CH1/EX1.10/ex1_10.sce')
-rwxr-xr-x1511/CH1/EX1.10/ex1_10.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1511/CH1/EX1.10/ex1_10.sce b/1511/CH1/EX1.10/ex1_10.sce
new file mode 100755
index 000000000..41e79a657
--- /dev/null
+++ b/1511/CH1/EX1.10/ex1_10.sce
@@ -0,0 +1,20 @@
+// Example 1.10 page no-25
+clear
+clc
+
+Energy=50 //eV
+V0=Energy //Volts
+e=1.6*10^-19 //c
+m=9.1*10^-31 //kg
+v0=sqrt(2*e*V0/m)
+v0=ceil(v0/10^5)
+v0=(v0/10)*10^6
+printf("\nVelocity, v0=%.0f",v0)
+
+t=(35.5*10^-12)/(2*10^-3)
+//Components of velocities are
+v1=v0*cos(10*%pi/180)
+v2=v0*cos(20*%pi/180)
+x=v1-v2
+d=x*t
+printf("\nDistance, d =%.4f cm",d*100)