I am trying to run optimal power flow for case5 using the following
commands,
clc
clear
close all;
define_constants;
mpc=loadcase(case5);
mpopt=mpoption('pf.nr.max_it',1000);
results=runopf(mpc,mpopt);After running the program it is showing the error- Numerically Failed Did not converge in 8 iterations. What would i do??
