You can use the total_load()
<https://github.com/MATPOWER/matpower/blob/master/lib/total_load.m> function
for that. For example if you use MOST for a deterministic UC and the solution
is in mdo, I think the following should work to get a vector of the total loads
…
load = size(nt, 1);
for t = 1:nt
load(t) = sum(total_load(mdo.flow(t,1,1).mpc));
end
Ray
> On Nov 16, 2018, at 9:23 AM, Ekuru Ebyau <[email protected]> wrote:
>
> Hello,
> I have done a load scale (using a relative factor) on all the Buses on the
> network using the profiles function. However my challenge is plot/ determine
> the total load on the network for the planning period .ie at each time or
> hour.
>
>
> kindest regards
> Ekuru Ebyau.