Курсовая работа: Розрахунок трьохфазного мостового випрямляча
xlabel('t(s)');
ylabel('I(A)');
title('Inductor Current (A)');
hold on;
I=Y;
I(:, 1)=[];
subplot(4,1,2);
plot(t,I);
title('Output Voltage (V)');
xlabel('t(s)');
ylabel('U(V)');
subplot(4,1,3);
plot(P,O);
xlabel('t(s)');
ylabel('U(V)');
title('Secondary Winding Voltage (V)');
subplot(4,1,4);
plot(t,Ufb);
hold on;
plot(Dt, D);
title('Ufb (V)');
xlabel('t(s)');
ylabel('U(V)');
function G = F_first(t, y)
Ud=E*sin(w*t+PhaseShift);
G=[-1/Ld*(-Ud+y(1)*(Rv1+Rv2+Rdr)+y(2)); 1/C*(y(1)-y(2)/Rd)];
end
end