summaryrefslogtreecommitdiff
path: root/1271/CH14/EX14.47/example14_47.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH14/EX14.47/example14_47.sce
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 '1271/CH14/EX14.47/example14_47.sce')
-rwxr-xr-x1271/CH14/EX14.47/example14_47.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1271/CH14/EX14.47/example14_47.sce b/1271/CH14/EX14.47/example14_47.sce
new file mode 100755
index 000000000..20a1ad50d
--- /dev/null
+++ b/1271/CH14/EX14.47/example14_47.sce
@@ -0,0 +1,15 @@
+clc
+// Given that
+lambda = 1.2e-10 // DE Broglie wavelength in m
+c = 3e8 // velocity of light in m/sec
+h = 6.62e-34 // Planck constant in J-sec
+e = 1.6e-19 // charge on an electron in C
+m = 9.1e-31 // mass of electron in kg
+// Sample Problem 47 on page no. 14.40
+printf("\n # PROBLEM 47 # \n")
+printf("Standard formula used \n ")
+printf(" lambda = h/(m*v)\n")
+v1 = h / (m * lambda)
+v2 = h / (2 * m * lambda)
+printf("\n Group velocity is %e m/sec.\n Phase velocity is %e m/sec.",v1,v2)
+