How to get built-in data from SIMULINK PV module
7 次查看(过去 30 天)
显示 更早的评论
Good day,
Going directly to my question,
I have the solar module block in SIMULINK.
When I double click on it, many parameters are displayed.
These parameters can be changed by the user. For example, Voc, Isc, Vm and Im.
There are thousands of PV modules in SIMULINK library. I want to collect some data for around 100 PV modules
for the purpose of doing some statistics about PV modules.
I want to create, for example, an Excel sheet that contains all parameters displayed in the PV module including Pm, Vm, Im, Voc, Isc, IL, Rs…etc.
These are highlighted in the following image:
I know that I can do it easily by clicking on each PV module and filling the Excel file manually but this will take a long time as I have to
see around 100 PV modules and do the filling manually which is boring and may subjected also to errors in filling the data.
Is there some easier way to get these data?
Can I get in some way these data saved in the workspace if I run the module so that I just have to copy and paste the data from each PV module to the Excel file?
Regards
0 个评论
采纳的回答
Nishant Gupta
2020-5-9
Step 1: Let us assume model name as 'test'. Then use find_system function to get the list of all the blocks in model 'test'.
BlockPaths = find_system('test','Type','Block')
Step 2: Get a list of block dialog parameters for a particular block (say 'PV Array') from the list.
BlockDialogParameters = get_param('test/PV Array','DialogParameters')
Step 3: To get the value of 'Voc' parameter, use this :
BlockParameterValue = get_param('test/PV Array','Voc')
In this way you can get the all the parameter values and if you want to do it for larger number of blocks, then implement a matlab function including all the above functions.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Modulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!