What are the cause of the infeasibility ? Topic is solved

Solver related questions
Post Reply
Haithamtaha
User
User
Posts: 9
Joined: 4 years ago

What are the cause of the infeasibility ?

Post by Haithamtaha »

Hello All,

i am working on an optimization problem to maximize an objection function in power system load flow MINLP problem using BONMIN solver. Unfortunately the below message appears when the running process is finished:


EXIT : Converged to a point of local infeasibility. Problem may be infeasible.

The solution summary shows :

**** SOLVER STATUS 1 Normal Completion
**** MODEL STATUS 5 Locally Infeasible
**** OBJECTIVE VALUE 2750.2952

I tried to search for any constraints violation, but i couldn't found.

I appreciate if you can help to find out and resolve the infeasibility issue. I am attaching the GAMS file.

Thanks in advance for your cooperation.
Attachments
Max. OF .gms
(6.19 KiB) Downloaded 311 times
Last edited by Haithamtaha 3 years ago, edited 1 time in total.
User avatar
Renger
Posts: 639
Joined: 7 years ago

Re: What are the cause of the infeasibility ?

Post by Renger »

Hi
If I run your model with Bonmin, inspecting the listing files gives me

Code: Select all

**** REPORT SUMMARY :       12     NONOPT ( NOPT)
                           292 INFEASIBLE (INFES)
                    SUM     74.671
                    MAX      1.473
                    MEAN     0.256
                             0  UNBOUNDED
                             0     ERRORS
                          4830  PROJECTED
Searching upwards for INFES gives me, for example,

Code: Select all

---- EQU eq6  

          LOWER     LEVEL     UPPER    MARGINAL

8 .t1       .        0.028      .     1000.000 INFES
8 .t2       .        0.003      .     1000.000 INFES
8 .t3       .    6.1595E-4      .     1000.000 INFES
indicating that these constraints are causing problems.
Take a look at this article on fixing your model.

Cheers
Renger
____________________________________
Enjoy modeling even more: Read my blog on modeling at The lazy economist
Haithamtaha
User
User
Posts: 9
Joined: 4 years ago

Re: What are the cause of the infeasibility ?

Post by Haithamtaha »

Thank you very much, i have just seen your reply. i didn't join the forum long time ago :)
Post Reply