blob: ff04dbec64d8d2efdfff0fdd6cf545e1fdafc95f (
plain)
1
2
3
4
5
6
7
8
|
a=1.247;
b=0.3;
c=a*b; //say c=ΔEg
printf('\n The value of ΔEg is %feV',c);
d=c*0.6; //say ΔEc=d
printf('\n The value of ΔEc is %feV',d);
e=c-d; //say ΔEv=e
printf('\n The barrier height for valence band is %feV',e);
|