blob: aa496449bbaa0b42d7323cf3d1f42e92fc11f6f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc//
//
//
//Variable declaration
n1=1;n2=1;n3=1;
h=6.62*10^-34; //planck's constant
m=9.1*10^-31; //mass(kg)
L=0.1*10^-9; //side(m)
//Calculation
E1=h^2*(n1^2+n2^2+n3^2)/(8*m*1.6*10^-19*L^2); //lowest energy of electron(eV)
//Result
printf("\n lowest energy of electron is %0.1f eV",E1)
|