DELTA-PROGRAMMING
DELTA-PROGRAMMING
clc;
clear;
close all;
% Given Data
V_phase = V_LL;
% Display Results
disp(I_phase);
disp(I_line);
disp(S_total);
disp(V_LL_load);
% Plot Results
f = 50; % Frequency in Hz
figure;
hold on;
plot(t * 1000, v_t, 'b', 'LineWidth', 1.5);
hold off;
grid on;
xlabel('Time (ms)');
ylabel('Amplitude');
legend('Voltage (V)', 'Current (A)', 'Power (W)');% Convert Delta Load to Equivalent Wye Load
Z_Y = Z_delta / 3;
disp(I_a);
disp(S_total);
disp(V_LL_load);
% Plot Results
f = 50; % Frequency in Hz