Undefined function or variable 'Ybus' error ?

12 views (last 30 days)
Willim
Willim on 5 Dec 2018
Commented: Rik on 20 Dec 2021
I am trying to run the load flow for 50buses. I have inserted the all parameters in the model but when I run the load flow I have an error showing as " Undefined function or variable 'Ybus' error". Does anyone have any clues about how to overcome this error ?
  3 Comments
Nada ZOUZOU
Nada ZOUZOU on 20 Dec 2021
I am having the same error , did you manage to resolve it ? thank you
Rik
Rik on 20 Dec 2021
@Nada ZOUZOU You posted on a thread that is 3 years old. There is an answer from 3 years ago as well. I do not know if it will solve your issue, but you should read the answer and try it. If there is anything unclear, I would suggest posting a comment on the answer.

Sign in to comment.

Answers (1)

Prem Kumar Tiwari
Prem Kumar Tiwari on 12 Dec 2018
It's not very clear what 'load flow' refers to, in the question. It's apparent that you're talking about Simulink Models and there are bus elements in the model, a total of 50.
Though, you've inserted all the parameters in the model, the error "Undefined function or variable -YBus-" indicates that upon Simulation the Model is unable to locate the "YBus" name and hence the error.
You can define a variable with name "YBus" at the Matlab command prompt, so that it comes into context of the currently loaded model, and then try running the model again.Successful execution of the Model indicates that "YBus" was expected to be a variable and not a function, the cause of error has been resolved. If it fails, probably "YBus" should've been a function, you should investigate more in that case.
Once the investigation is complete and you know the cause of the error, you may go ahead with ensuring that YBus, is properly known to the Model before expecting it's successful execution.
Setting Block Parameters - A good link to read about how you can configure parameter values of a Simulink model, properly.

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!