diff options
Diffstat (limited to '3622/CH6/EX6.4/Ex6_4.sce')
-rw-r--r-- | 3622/CH6/EX6.4/Ex6_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3622/CH6/EX6.4/Ex6_4.sce b/3622/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..58564d4ba --- /dev/null +++ b/3622/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,11 @@ +//Initialisation of variables
+clc
+m=9.11e-28
+e=4.803e-10
+h=6.62e-27
+V=100/300//e.s.u
+//.5*m*v^2=V*e
+v=sqrt(2*V*e/m)
+l=h/(m*v)
+printf('wavelength associated is %e cms \n',l)
+
|