Can anyone help me in taking plot between threshold voltage and thickness of AlN
이전 댓글 표시
I am taking plot between threshold voltage(voff) anf Thickness of AlN (tAlN) using the following formula

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)')
답변 (1개)
Meet
2023년 2월 10일
0 개 추천
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.
카테고리
도움말 센터 및 File Exchange에서 Scripts에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!