diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3755/CH6/EX6.36/Ex6_36.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3755/CH6/EX6.36/Ex6_36.sce')
-rw-r--r-- | 3755/CH6/EX6.36/Ex6_36.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3755/CH6/EX6.36/Ex6_36.sce b/3755/CH6/EX6.36/Ex6_36.sce new file mode 100644 index 000000000..8a2bc2d4f --- /dev/null +++ b/3755/CH6/EX6.36/Ex6_36.sce @@ -0,0 +1,22 @@ +clear
+//
+//
+//
+
+//Variable declaration
+h=6.63*10^-34; //planck's constant(J-sec)
+e=1.602*10^-19; //charge of electron(c)
+L=0.2*10^-9; //width(m)
+n5=5;
+En=10^3; //energy(eV)
+E5=230; //energy of particle(eV)
+
+//Calculations2
+E5=230*e; //energy(J)
+E1=E5/n5^2; //energy in 1st state(J)
+m=h^2/(8*E1*L^2); //mass of particle(kg)
+n=sqrt(En*e/E1); //quantum state
+
+//Result
+printf("\n mass of particle is %0.1f *10^-31 kg",m*10^31)
+printf("\n quantum state is %0.1f ",n)
|