Half Wave Diode Problem

1 回表示 (過去 30 日間)
JAKE WISNIEWSKI
JAKE WISNIEWSKI 2019 年 12 月 4 日
回答済み: Nishant Gupta 2019 年 12 月 18 日
Screen Shot 2019-12-03 at 10.14.13 PM.png
Screen Shot 2019-12-03 at 10.14.46 PM.png
This is a problem I have. Tried solving it but cant seem to figure it out. Am I on the right track?
C=input('What is C');
R=1800%omega;
V0=12%Volts;
f=60%Hz;
w=2*pi*f;
t=linspace(0,70,1000);
n=length(t);
VS=V0*sin(w*t);
VR=V0*sin(w*t(a))*exp(-(t-ta)/(R*C));
for k=1:n;
V(k)=V0*sin(w*t(k));
if VS(k)==VR(k);
iC=w*C*V0*cos(w*t(k));
iR=(V0*sin(w*t(k)))/R;
else VS(k)>=VR(k);
t(a)=t(k);
VR(k)=V0*sin(w*t(a))*exp(-(t(k)-ta)/(R*C));
end
end
figure(1);
plot(t,VR,'B- -',t,VS,'R-');
xlabel('Time (s)');
ylabel('Voltage (V)');
title('Voltage for AC to DC Converter');
legend('Voltage of resistor','Voltage of Source');

回答 (1 件)

Nishant Gupta
Nishant Gupta 2019 年 12 月 18 日
Few points to be noted:
  1. Find out the value of ta (point at which source voltage is maximum i.e. V0)
  2. You are using both ta and t(a).
  3. In the else statement , you have written t(a) = t(k) which will make the exponent term equal to 1.
  4. You can't give conditional expression with else , use elseif.

カテゴリ

Help Center および File ExchangePower Converters についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by