How to access all data in MATLAB documentation examples?
1 回表示 (過去 30 日間)
古いコメントを表示
In the MATLAB example Detailed Model of a 100-kW Grid-Connected PV Array, there are some variables that don't seem to be accessible.
I have tried using Model Explorer block but the parameter (T_MPPT) cannot be found anywhere. I also tried click on the open as well as explore option but again nothing opens up. Please help in figuring out a way as I need to know the actual values for a thorough understanding.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/663140/image.png)
0 件のコメント
回答 (1 件)
Abhinav Aravindan
2024 年 12 月 3 日
The parameter “T_MPPT” is a Mask Parameter of the “MPPT Controller using 'Incremental Conductance + Integral Regulator’ technique” block in the “100-kW Grid-Connected PV Array” model. The Mask Parameters of the block can be viewed by selecting the block and navigating to “Block -> Edit Mask -> Parameters & Dialog”.
You may access the documentation for "Masking Fundamentals" and “100-kW Grid-Connected PV Array” using the following commands in MATLAB R2019b for more details:
% Masking Fundamentals Documentation
web(fullfile(docroot, 'simulink/ug/block-masks.html'))
% 100-kW Grid-Connected PV Array Documentation
web(fullfile(docroot, 'physmod/sps/examples/detailed-model-of-a-100-kw-grid-connected-pv-array.html'))
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!