diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH6/EX6.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2243/CH6/EX6.10')
-rwxr-xr-x | 2243/CH6/EX6.10/Ex6_10.sce | 13 | ||||
-rwxr-xr-x | 2243/CH6/EX6.10/Res6_10.txt | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/2243/CH6/EX6.10/Ex6_10.sce b/2243/CH6/EX6.10/Ex6_10.sce new file mode 100755 index 000000000..c9a34bc03 --- /dev/null +++ b/2243/CH6/EX6.10/Ex6_10.sce @@ -0,0 +1,13 @@ +clc();
+clear;
+//Given :
+//(a)Rock
+h = 6.625*10^-34; //planck's constant in Js
+m = 50 ; // mass in g
+v = 40; // Speed in m/s
+// m = 50*10^-3 kg , 1g = 1.0*10^-3 kg
+lambda1 = h/(m*10^-3*v); // Wavelength in m
+//(b)For an electron
+V = 50; // in volts
+lambda2 = 12.28/sqrt(V); // Wavelength in A
+printf("De Broglie wavelength \n\n (a)Rock : %.2f x 10^-34 m \n (b)For an electron : %.2f A",lambda1*10^34,lambda2);
diff --git a/2243/CH6/EX6.10/Res6_10.txt b/2243/CH6/EX6.10/Res6_10.txt new file mode 100755 index 000000000..c7b2230d5 --- /dev/null +++ b/2243/CH6/EX6.10/Res6_10.txt @@ -0,0 +1,4 @@ +De Broglie wavelength
+
+ (a)Rock : 3.31 x 10^-34 m
+ (b)For an electron : 1.74 A
\ No newline at end of file |