Hussain Askar
- 合計アクティビティ 12
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
アクティビティの概要
Hussain Askarさんの最近のアクティビティ-
Hussain Askarさんがコメントを作成しました:
thank you sir! I added another constraint to define v and now it works as expected!
-
Hussain Askarさんがコメントを作成しました:
I also noticed that you removed This part [g,t] in uptime constraint: uptime[g,t] So my question is: Is the code you gave me (shown below) will count for all [g,t] values for uptime or just a singl...
-
Hussain Askarさんがコメントを作成しました:
Thank You Eli. My code finally runs without errors, but for a reason it doesn't seem It cares about the constraint because it is not satisfying it! I used your formulation and it worked but the ...
-
Hussain Askarさんが投稿を作成しました:
Optimization using Gurobi
回答済み# Attached is my code, where i'm trying to add a constraint that affects# the future based on data collected from the past and that is the min # run time constraint. However, I keep getting a key e...
-
Hussain Askarさんがコメントを作成しました:
Thank you sir for your help! I appreciate it
-
Hussain Askarさんがコメントを作成しました:
I'm really sorry, just by explaining the problem to you I realized what I was doing wrong. I think this solves it: Line_Con = model.addConstrs(gp.quicksum(output[type, period]*Line_Dfax[type] for ...
-
Hussain Askarさんがコメントを作成しました:
Hi Jaromil, The constraint ( Transmission constraint ) was created to do the following: for period 0 : 0.5 * output [0,0] + 0.4 * output [1,0] + 0.3 * output [2,0] + 0.2 * output [3,0] + ... + (-0...
-
Hussain Askarさんがコメントを作成しました:
I verified that all constraints are working as expected except the transmission constraint. When I checked by hand for period 0, the sum was 15.45 <= 10 which should not be valid but the code did n...
-
Hussain Askarさんがコメントを作成しました:
The issue is that this constraint is ignored. With transmission constraint and without it, the code gives the same results. If this constraint was applied correctly, then our generator 1 output wo...
-
Hussain Askarさんが投稿を作成しました:
please help, how can i fix this multiplication error
回答済みAttached is a code for an optimization problem, Look at the bolded constraint ( transmission constraint), I'm trying to multiply each generator lets say type 1 for all 24 periods by 0.4 and all ty...