필터 지우기
필터 지우기

Plot for threshold voltage Voff Vs tAlN

조회 수: 2 (최근 30일)
Nudrat Sufiyan
Nudrat Sufiyan 2022년 8월 1일
편집: Bhanu Prakash 2023년 2월 23일
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)')

답변 (1개)

Bhanu Prakash
Bhanu Prakash 2023년 2월 15일
편집: Bhanu Prakash 2023년 2월 23일
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.

카테고리

Help CenterFile Exchange에서 Scripts에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by