Diode i-v Curve Graph
古いコメントを表示
Hello,
I need help to graph that diode i-v curve. my code is here;
clc
clear all
n = 1.65; %Ideality factor
Is = 220*10^-12; % diode reverse saturated current
q = 1.602*10^-19; % electron charge
K = 1.38*10^-23; %Boltzmann constant
T = 300; % Absolute temperature
Vd = ((n.*K.*T)./q).*log((Is./Id)+1);
Id = Is*(exp((q*Vd)./(1.65*K*T))-1);
plot(Vd,Id)
hold on
ylabel('Id')
xlabel('Vd')
Id and Vd values are depending each other so how can graph that depending values?
採用された回答
その他の回答 (3 件)
Sumit Debnath
2021 年 11 月 13 日
0 投票
n = 1.65; %Ideality factor
Is = 220*10^-12; % diode reverse saturated current
q = 1.602*10^-19; % electron charge
K = 1.38*10^-23; %Boltzmann constant
T = 300; % Absolute temperature
Vd = ((n.*K.*T)./q).*log((Is./Id)+1);
Id = Is*(exp((q*Vd)./(1.65*K*T))-1);
plot(Vd,Id)
hold on
ylabel('Id')
xlabel('Vd')
Khuzaim
2022 年 11 月 17 日
0 投票
Use “exponential model with graphical analysis” to
determine VD1, VD2, VD3, ID1, ID2, ID3. Assume that the diode has a current of 0.5 mA at a
voltage of 0.7 V.

Md. Zamil Hasan Shovon
2023 年 1 月 13 日
0 投票
I = Iph - Io [exp(V/n*Vt) – 1]
カテゴリ
ヘルプ センター および File Exchange で Power Converters についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!