Plot for threshold voltage Voff Vs tAlN
2 views (last 30 days)
Show older comments
I am trying to plot Voff Vs tAlN using the following equation , but I am not getting correct result. Please rectify my code.
Code:
clear;
q=1.6e-19;
E0=8.85e-12;
Ealgan=10.31;
Ealn=10.78;
fieff=(5.1*1.6e-19);
sigmaaln=3.38e17;
sigmaalgan=1.3e17;
detaec=(0.862*1.6e-19);
Nd=1e24;
talgan=23e-9;
p=((q^2)/Ealn)*E0;
sigmatotal=(sigmaalgan+sigmaaln);
taln=0.8:0.1:10;
m=length(taln);
for i=1:m
detaec2 = detaec + (p*sigmaaln*taln(i));
voff(i)=(fieff - detaec2 - (q*Nd*talgan^2/2*Ealgan) - sigmatotal/Ealn*(talgan+taln(i))
end
plot(taln, voff, 'k-o')
xlabel('taln (nm)')
0 Comments
Answers (1)
Bhanu Prakash
on 15 Feb 2023
Edited: Bhanu Prakash
on 23 Feb 2023
Hi Nudrat,
As per my understanding you are trying to plot “Voff vs tAIN” for the mentioned equation but was getting an error during execution.
The code that you have provided has an error in the 18th line, where the equation of “Voff” is defined. The error is because there is a missing parenthesis “)” at the end.
The error could be avoided by adding “ ) ” at the end of the 18th line.
I have attached the edited part of the code, for your reference.
voff(i)=(fieff - detaec2 - (q*Nd*talgan^2/2*Ealgan) - sigmatotal/Ealn*(talgan+taln(i)));
Thanks,
Bhanu Prakash.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!