Paul-Niklas Kandora
- 合計アクティビティ 9
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 3
アクティビティの概要
Paul-Niklas Kandoraさんの最近のアクティビティ-
Paul-Niklas Kandoraさんがコメントを作成しました:
Dear Simran, thanks for the message! This files solves my issueBest, Paul
-
Paul-Niklas Kandoraさんが投稿を作成しました:
See algebraic expressions of problem in debug mode or print
回答済みHello, 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さんが投稿を作成しました:
Problem with solution of soc relaxation of an optimal power flow problem
回答済みHello,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さんがコメントを作成しました:
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さんが投稿を作成しました:
Different solutions for different modelling approaches
回答済みHey, 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...