Clear Filters
Clear Filters

How do I remove this error? its is in a charge controller connected to a P & O algorithm of a 1.57 MW solar plant.

1 view (last 30 days)
  2 Comments
Joel Van Sickel
Joel Van Sickel on 19 Sep 2022
Hello,
there are many ways this type of interaction could be caused that is model dependent. Are you able to share the model that causes this?
Regards,
Joel

Sign in to comment.

Answers (1)

Dinesh
Dinesh on 7 Jun 2023
Edited: Dinesh on 7 Jun 2023
Hi Phodiso!
This message could be caused by a problem in your system that makes it difficult for the Simulink solver to accurately determine step size due to large differences in state values. Also, Integration cannot work if the derivative gets infinity. To check this, you need to follow these steps:
Step 1
  • In the model editor, click on Simulation and then Configuration Parameters.
  • Select Data Import/Export and check the 'States' option in the 'Save to Workspace' field.
  • This will allow you to log the states as output.
Step 2
  • Run the simulation.
Step 3
Plot the results to determine if there are any large differences in the state values of the system.
  • plot(tout,xout)
To identify if the issue is caused by a singularity in your system, you can check if any of the states are changing significantly more than the others. In case you find such a situation, you can take a couple of steps to fix this. Firstly, you could rescale the model to ensure that the states are comparable in magnitude. Additionally, setting specific error tolerances for your integrator blocks could also help resolve the issue.
To learn more about setting absolute tolerance for your block's outputs, you can reference the setting the absolute tolerance section MATLAB’s integrator block documentation.
Hope this helps,
Thank you!!

Categories

Find more on Modeling in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!