simulation error with PV array

24 ビュー (過去 30 日間)
Ahmad
Ahmad 2024 年 9 月 23 日
コメント済み: Vinay 2024 年 9 月 26 日
An error occurred during simulation and the simulation was terminated
Caused by:
Block 'solar/PV Array/Diode Rsh/Math Function' outputs 'Inf' for element 1 of output port 1 at major time step 0
Component:Simulink | Category:Block error

採用された回答

Vinay
Vinay 2024 年 9 月 24 日
Hi @Ahmad,
The issue arises because the PV array's output voltage is extremely high, resulting in a (Vd/Vt) ratio of around 3. 8e4.The issue can be resolved by decreasing the value of the shunt resistance (Rsh) connected with the diode to reduce the Voltage drop across the PV array as Vd depends on PV array voltage as (Vd=V_PV + Rs*I_PV)
The Number of series cells (Nser) can be increased to increase the threshold voltage of the diode to achieve the desired Vd/Vt levels or to use a DC-DC converter to regulate the output voltage of the PV array
Kindly refer to the below documentation of “pv array” for more details:
I hope this helps!
  2 件のコメント
Ahmad
Ahmad 2024 年 9 月 26 日
from where do i decrease the value of shunt resistor from below picture it is not changable.
Vinay
Vinay 2024 年 9 月 26 日
Hi @Ahmad,
You can use the Ctrl+U to view under the mask in the PV array and can change the value of shunt resistance named "Rsh_5%".

サインインしてコメントする。

その他の回答 (1 件)

Ayush
Ayush 2024 年 9 月 24 日
The error you are encountering is because the model is evaluating the exponential of vd/vt = 3.8e4 as shown in the signal values:
As a workaround you can limit the exponential Input as:
% Pseudo-code for limiting vd/vt
vd_vt_limited = min(vd/vt, max_limit);

カテゴリ

Help Center および File ExchangeElectromechanical についてさらに検索

タグ

製品


リリース

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by