atefeh Behzadi
- 合計アクティビティ 21
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 4
アクティビティの概要
atefeh Behzadiさんの最近のアクティビティ-
atefeh Behzadiさんが投稿を作成しました:
Getting Stuck in gap in MIP optimization model
回答済みI have developed an MIP optimization model for designing a district heating network. The objective of the optimization is to minimize the cost associated with the piping infrastructure. In the code...
-
atefeh Behzadiさんがコメントを作成しました:
Thanks to your recommendation, I upgraded my Gurobi from version 10 to 11.0.0. However, I have issues with the updated version, and it is not functioning as expected, even for problems that worked ...
-
atefeh Behzadiさんがコメントを作成しました:
fix_num = 4 * 1000 # numeratorfix_den = 3.6 * 3.14 * ro * V_max # denominatorfor edge in df_edges.index: model.addConstr(fix_den * D_edge_2[edge] * D_edge_2[edge] == fix_num * mass_edge[edge])
-
atefeh Behzadiさんがコメントを作成しました:
Thank you very much for your assistance; I have implemented all of your suggestions. However, I have a challenge in finding the Incumbent of the objective function. I believe this issue may be a...
-
atefeh Behzadiさんが投稿を作成しました:
Problem in optimization of MIP model
回答済みHello, I have an optimization model in Gurobi optimization in python which has two binary variables and one non convex constraint, I have a problem with finding the initial point. I think The BestB...
-
atefeh Behzadiさんがコメントを作成しました:
Thank you. I have a question about the method that Gurobi employs to find the best objective function. In many of my optimization models, the Best Bound of Objective Bounds is not feasible, especia...
-
atefeh Behzadiさんが投稿を作成しました:
Modeling Issue
回答済みI have developed an optimization model for the design of district heating network pipes. My objective is to identify the presence of each pipe in the network and finalize the network design. To ach...
-
atefeh Behzadiさんがコメントを作成しました:
Yes, i guess it too. Thanks a lot.
-
atefeh Behzadiさんがコメントを作成しました:
Yes, but it is very weird because when i want to limit some variables it takes more time. in this special problem when i set this heuristics solver parameter model.setParam(GRB.Param.Heuristics, 0....
-
atefeh Behzadiさんがコメントを作成しました:
I tried it but it doesn't work (it's same as before). i have a constraint such as: model.addConstr(aux1[edge] == fix * mass_edge[edge] * Bp[edge])model.addConstr(D_edge[edge] * D_edge[edge] >= (au...