
Rahul Kowshik
- 合計アクティビティ 46
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 20
- サブスクリプション 4
アクティビティの概要
Rahul Kowshikさんの最近のアクティビティ-
Rahul Kowshikさんがコメントを作成しました:
Hej Jaromil, Now I can confirm that it worked finally without any transhipment. I had to add another constraint to make it work. Thank you for everything and wish you a great weekend. Regards, Rah...
-
Rahul Kowshikさんがコメントを作成しました:
Hello again, So all of that got sorted out but the same problem again as it was before we introduced big M constraints. Its still doing transhipment instead of taking it from port. Could it be beca...
-
Rahul Kowshikさんがコメントを作成しました:
for j in inland_terminal: for t in time: m.addConstr(sum(flow_bin[i,j,t] for i in inland_terminal if i!=j) <= 1)#constantsM = 21for j in inland_terminal: for t in time: ...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Jaromil, If you want to model a constraint of the form \begin{align*}\sum_{i=0}^N f^{bin}_i &= 0 \rightarrow \sum_{i=0}^L f_i = 0\quad(*)\\f^{bin}_i,f_i &\in \{0,1\}\end{align*} You have writ...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Eli, The order of summation is not of concern but rather the grouping of terms as you mention. It's important because I cannot have incoming flows from different origins i, for different operat...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Jaromil, Couldn't it be better this way, e.g., if the distance for shipping from port and terminal8 to terminal 5 and then 6 to terminal4 is indeed shorter than shipping from port to terminal...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Eli, If you see my original post with the black brackets. I want the sum of all of those terms in the first bracket to be considered as one single term and then all the terms in the second brac...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Jaromil, I think I was too quick to dismiss the problem thinking that I got it cleared. It just does not seem to work. I have been trying to strictly restrict flow in arcs and it always does so...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Eli, Thanks for the input, unfortunately, I have already tried that. The output from both suggestions is not what I am looking for. To provide more context, the elements in the tuple are as fol...
-
Rahul Kowshikさんがコメントを作成しました:
Hej Jaromil, I have solved this problem. Also, you point of correctly that there is a for loop missing which I fixed. The model is running now and works perfectly. This is how I fixed the for loop...