summaryrefslogtreecommitdiff
path: root/3665/CH6/EX6.10/Ex6_10.sce
blob: 51cb8777fd870d575fdea89b77eabe3679e221e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)