
Cassiano Tavares
- 合計アクティビティ 9
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 2
アクティビティの概要
Cassiano Tavaresさんの最近のアクティビティ-
Cassiano Tavaresさんがコメントを作成しました:
I have to solve in each iteration a cluster that is in dict_F_l. This dictionary has the cluster key and the values of the farms that I need to solve in each iteration. Thus, in the first iterati...
-
Cassiano Tavaresさんがコメントを作成しました:
I see...thank you soo much for this analogy! It's very clear to me now. There is anyway that is possible to define sets dynamically into the loop? (Uptading all model)
-
Cassiano Tavaresさんがコメントを作成しました:
Sorry... I believe that the message above is not clear enough... Unfortanelly this strategy (model.copy) don´t work to mee.... I give this error: AttributeError: Unable to retrieve attribute 'x' ...
-
Cassiano Tavaresさんがコメントを作成しました:
%%time global Z1,Z2,Z3,Z4 # Build the new objective function Z1= gp.quicksum(theta[v,l,t] for v in V for l in L for t in T) Z2 = gp.quicksum((ViolaUmin[v,l,t]+ViolaUmax[v,l,t])*PenEqVar[t] for ...
-
Cassiano Tavaresさんがコメントを作成しました:
I need to build the large model once and, solved it in each iteration only the variables associated to pair (key, value) of my dictionary. This strategy is based in decoposition. My problem has ten...
-
Cassiano Tavaresさんが投稿を作成しました:
Change sets in a optimization loop
進行中I had large problem to solve and, I´m decided to create a methaeuristic for decomposit it. Basic I have to redefine 2 sets in a loop: print(dict_F_l.items()) dict_items([(0, [6, 8, 9]), (1, [5, 7...
-
Cassiano Tavaresさんがコメントを作成しました:
Hi Jaromil, a have a similar problem. I need to delete and insert the same objective function during each iteration in the loop of the rolling horizon. I coded my model in Pyomo framework and used...