summaryrefslogtreecommitdiff
path: root/3665/CH6/EX6.10/Ex6_10.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3665/CH6/EX6.10/Ex6_10.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3665/CH6/EX6.10/Ex6_10.sce')
-rw-r--r--3665/CH6/EX6.10/Ex6_10.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3665/CH6/EX6.10/Ex6_10.sce b/3665/CH6/EX6.10/Ex6_10.sce
new file mode 100644
index 000000000..51cb8777f
--- /dev/null
+++ b/3665/CH6/EX6.10/Ex6_10.sce
@@ -0,0 +1,21 @@
+clc//
+//
+//
+
+//Variable declaration
+m=9.1*10^-31; //mass of electron(kg)
+h=6.626*10^-34; //planck's constant
+n1=1;
+n2=2;
+n3=3;
+L=1*10^-10; //side(m)
+
+//Calculation
+E1=n1^2*h^2/(8*m*L^2); //lowest energy of electron(joule)
+E2=n2^2*h^2/(8*m*L^2); //energy of electron in 1st state(joule)
+E3=n3^2*h^2/(8*m*L^2); //energy of electron in 2nd state(joule)
+
+//Result
+printf("\n lowest energy of electron is %0.4f *10^-17 joule",E1*10^17)
+printf("\n energy of electron in 1st state is %0.3f *10^-17 joule",E2*10^17)
+printf("\n energy of electron in 2nd state is %0.3f *10^-17 joule",E3*10^17)