Running a simulation with different parameters on each loop
4 views (last 30 days)
Show older comments
So basically I am modelling a hybrid PV-wind energy system. The main components effecting output are the number of PV arrays, the number of wind turbines and the number of batteries; nPV, nW and nB respectively.
So I want to run this using all possible combinations, eg 1-maxPv, 1-maxW and 1-maxB. I have the algorithm coded up to the point where the timestep t reaches the end. At which point it should then increase one of the parameters and run again.
I'm not sure what the best way to go about this would be. Would it be possible to construct a matrix of all the possible combinations and somehow use this in the loop for the nPV/nW/nB values at that instant? Or maybe a while loop which runs until all 3 values are at the max value (though I wouldn't be sure how I can code that without huge amount of if statements for each combination, and there's already a lot of ifs/elseifs in there already)
Any suggestions appreciated.
2 Comments
Kaushik Lakshminarasimhan
on 15 Feb 2017
This is what 'for' loops are meant to do. Are you familiar with for loops?
Accepted Answer
John Chilleri
on 15 Feb 2017
Hello,
Kaushik Lakshminarasimhan was correct, for loops will check all options:
for nPV = 1:10
for nW = 1:2
for nB = 1:10
% do whatever
end
end
end
nPV will be one and nW will be one while nB runs through everything else. Then nPV will be one, nW will be two while nB runs through everything else. Then nPV will be two, nW will start back at one, nB will run through everything, and it will repeat until all combinations have been checked.
Make sure you have them nested as I showed above.
Hope this helps!
1 Comment
John Chilleri
on 15 Feb 2017
To be confident it contains all combinations, consider this.
With 1:10, 1:2, and 1:10, there are 10 x 2 x 10 combinations, so 200 combinations.
If you run
count = 0;
for nPV = 1:10
for nW = 1:2
for nB = 1:10
count = count+1;
end
end
end
Then you'll see,
>> count
count =
200
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!