I have developed a process to semi-automate the Simulink Load Flow Tool to allow the Load Flow to continuously be computed for different Load values. Each time the Load Flow is computed I require the data to be copied from the Powergui Load Flow Tool (Clipboard) to an array, at the moment I am doing this manually and cannot figure out a way to automate. To give reference to the data I require to copy from the clipboard I have attached the following image:Powergui Load Flow Tool, at this stage I only need to copy the data from the 2nd column.
Perhaps a more generic question is how to copy data from a Simulink Simulation GUI to an array in Matlab?
Any help would be greatly appreciated! Thanks
You can use power_loadflow command to perform load flow and store results.
For example, if you run the simulation of Matlab in-built 5 bus system,
LF is a structure where all results are stored, so you may save this variable in Matlab workspace. You can also store the results in Excel file as follows,
Edit
To export to excel: load flow data is anyway stored in the variable
LF
. You can put the following command in your loop to copy the results to your excel file.I used
cellstr
andnum2str
to save the complex results to excel.LF.bus.Vbus
is the vector where bus voltage result is stored.