Myat Thwe Naing

  • Gurobi-versary
  • First Comment
  • First Question
  • 合計アクティビティ 13
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 3
  • サブスクリプション 4

アクティビティの概要

Myat Thwe Naingさんの最近のアクティビティ
  • Myat Thwe Naingさんが投稿を作成しました:

    KeyError, Attribute Error.

    回答済み

    Hello! I want to model a bidirectional EV charging & discharging scheduling problem. Right now, I am trying to implement some constraints on the power flow such that  1. the power at the EV chargin...

  • Myat Thwe Naingさんが投稿を作成しました:

    How to Assign a Value to a Decision Variable? + How to Constrain for a Subset of Variables

    回答済み

    enterSoC = [0.1, 0.2, 0.3]m.addConstrs(SoC[0, b] == enterSoC[b] for b in range(noEV))# constrain values of SoC[i+1] to SoC[i]+increment. must be done w add constraintupdatedSoC = m.addConstrs((SoC[...

  • Myat Thwe Naingさんがコメントを作成しました:

    Hello again! I found a solution  from https://www.gurobi.com/documentation/10.0/refman/py_model_addconstrs.html . However,I don't understand why the following is valid while my original code wasnt?...

  • Myat Thwe Naingさんがコメントを作成しました:

    Thank you! This helped me achieve what I wanted.  However, I run into a similar issue when trying to add a condition via m.addGenConstrIndicator().  I want to take x[i+1] = x[i] + someFloat only if...

  • Myat Thwe Naingさんが投稿を作成しました:

    How to Generate Decision Variable Values Iteratively

    回答済み

    I have a problem that I am trying to model: Given a known table of ToU Tariff Prices and initial State of Charge of BEVs to be charged, find the optimal cheapest charging schedule. The objective fu...

  • Myat Thwe Naingさんが投稿を作成しました:

    Help with Incorporating Battery Charging Behaviour into Model Constraints

    ユーザーの入力を待っています。

    Hello, I am trying to self-teach myself how to solve linear programming problems for but i am stuck despite going through some of the beginners' resources here.  My problem is simple. Given a known...