Can anyone help me in taking plot between threshold voltage and thickness of AlN
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am taking plot between threshold voltage(voff) anf Thickness of AlN (tAlN) using the following formula
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1084260/image.png)
Voff= (fis- (detaEceff/q) + vds)
I have writtent the following code for this ,but I am not getting correct result. Please rectify my code so that I can improve my mistakes.
clear;
q=1.6e-19;
E0=8.85e-12;
Ealgan=10.31;
Ealn=10.78;
fis=(5.1*1.6e-19);
sigmaaln=3.38e17;
sigmaalgan=1.3e17;
detaecalgan=(0.422*1.6e-19);
talgan=23e-9;
vds=10;
p=((q^2)/Ealgan);
taln=0.8:0.1:10;
m=length(taln);
for i=1:m
detaec2 = detaecalgan + (p*sigmaaln^2*taln(i));
voff(i) = (fis-(detaec2/q)+vds);
end
plot(taln, voff)
xlabel('taln (nm)')
0 commentaires
Réponses (1)
Meet
le 10 Fév 2023
Hi,
The code is generating a plot which is linearly decreasing, but I assume that you are expecting a different type of graph. The code you have written seems correct and it models the equations provided by you. Please provide more details on what you are trying to achieve and the result that is expected by you.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!