Paul-Niklas Kandora
- Total activity 9
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 3
Activity overview
Latest activity by Paul-Niklas Kandora-
Paul-Niklas Kandora commented,
Dear Simran, thanks for the message! This files solves my issueBest, Paul
-
Paul-Niklas Kandora created a post,
See algebraic expressions of problem in debug mode or print
AnsweredHello, I have the following toy problem: import gurobipy as gpfrom gurobipy import GRB # Create a new modelmodel = gp.Model("quadratic_constraint_problem") # Add variablesx1 = model.addVar(name="x1...
-
Paul-Niklas Kandora created a post,
Problem with solution of soc relaxation of an optimal power flow problem
AnsweredHello,I implemented (hardcoded) the following jabr-soc-relaxation formulation of the opf from https://ieeexplore.ieee.org/document/7056568 using 2-bus-2-generator instances from IV A: import numpy ...
-
Paul-Niklas Kandora commented,
Jaromił Najman thanks for the response! I was actually able to solve the problem by myself with introducing a support variable (support_quad_expr): factor_obj = { c: m.addVar(name=f"factor_obj_{...
-
Paul-Niklas Kandora created a post,
Different solutions for different modelling approaches
AnsweredHey, I obtain different solutions for different modelling approaches:1.) Approach factor_obj_c = { c: m.addVar(name=f"factor_obj_{c}") for c in C}quad_expr_c = { c: m.addVar(name=f"quad_expr...