Paul-Niklas Kandora
- 合計アクティビティ 9
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 1
- サブスクリプション 3
投稿
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...
-
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 ...
-
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...