summaryrefslogtreecommitdiff
path: root/3014/CH1/EX1.13
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3014/CH1/EX1.13
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3014/CH1/EX1.13')
-rwxr-xr-x3014/CH1/EX1.13/Ex1_13.sce11
-rwxr-xr-x3014/CH1/EX1.13/Ex1_13.txt3
2 files changed, 14 insertions, 0 deletions
diff --git a/3014/CH1/EX1.13/Ex1_13.sce b/3014/CH1/EX1.13/Ex1_13.sce
new file mode 100755
index 000000000..8707b1f46
--- /dev/null
+++ b/3014/CH1/EX1.13/Ex1_13.sce
@@ -0,0 +1,11 @@
+
+
+clc
+//Given that
+v = 2e8 // speed of moving proton in m/s
+c = 3e8 // speed of light in m/s
+m = 1.67e-27 // Mass of proton in Kg
+h = 6.62e-34 // Plank constant
+printf("Example 1.13")
+lambda = h/(m*v/sqrt(1-(v/c)^2)) // Calculation of velocity of moving electron
+printf("\n Wavelength of electron is %e angstrom.\n\n\n", lambda*1e10)
diff --git a/3014/CH1/EX1.13/Ex1_13.txt b/3014/CH1/EX1.13/Ex1_13.txt
new file mode 100755
index 000000000..cb78b0f85
--- /dev/null
+++ b/3014/CH1/EX1.13/Ex1_13.txt
@@ -0,0 +1,3 @@
+
+Example 1.13
+ Wavelength of electron is 1.477322e-05 angstrom.