Detrmination of Load Parameters From Load Curve
Detrmination of Load Parameters From Load Curve
AIM:
To determine the number of units generated per day, average load, load factor, demand
factor and diversity factor using MATLAB software
APPARATUS REQUIRED:
MATLAB Software
Problem:
PROCEDURE:
COADING
clc;
close all;
clear all;
% % from to AC CFL TV Fri Ir.B FAN Ove WaM Tube Mix Gea
Pum Comp
%
% Data=[0 2 40
% 2 4 40
% 4 6 40
% 6 8 50
% 8 10 50
% 10 12 60
% 12 14 50
% 14 16 50
% 16 18 70
% 18 20 70
% 20 22 40
% 22 24 40
% ];
end
Avg_load=Units_cons/24;
[Peak_Load hour]=max(Load);
Load_factor=100*Avg_load/Peak_Load;
Demand_factor=Peak_Load/con_load;
Diversity_factor=Max_tot/Peak_Load;
bar(Load)
axis tight
xlabel('Interval')
ylabel('Load')
title('Load curve')
Result
4000
3500
3000
2500
Load
2000
1500
1000
500
0
1 2 3 4 5 6 7 8 9 10 11 12
Interval
RESULT:
The average load, number of units generated per day, load factor, demand factor and
diversity factor is determined from the load curve using MATLAB and verified theoretically.