
Jose peeterson
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
Posts
Recent activity by Jose peeterson-
Algorithms and solution methods to verify the solution from gurobi
AnsweredI have the following objective function: where is the only positive decision variable. is a function of . is equivalent to given in the equality constraint below. Other variables are positive ...
-
Weighted multi-objectives not working as expected
AnsweredHi, I have the following MOO problem for a Electric vehicle charging station. Problem background: Vehicles come to charging slots, v in the charging station with a certain deadline and a demanded ...
-
Different objective functions on different domains
AnsweredHi, My objective function is given below where the domain in y is [0 120] and x is [0 1]. However, this funcion is hard to model in its original form due to many exponential and product of exponent...
-
Function approximation of a complex objective function
AnsweredHi, I would like to approximate the following objective function using a simpler function that can use be defined in gurobi. \begin{equation}\min_{I_{i,v}} \ \sum^{N_v}_{v}\sum^{TT_v}_{i} \ C_{loss...
-
addgenconstrlog() constraint value is different from math.log value (Similar issue with addConstrExp( ) ))
AnsweredHi, The m.addGenConstrLog(x,y) output result is not y = ln(x). m.addGenConstrExp(x,y) output is not y = e^(x) I am trying to solve the following problem. But I keep getting Model is infeasible err...
-
Discrete Coefficient values in objective function as a function of continuous decision variables
AnsweredHi, I want to minimize the objective function given below. The problem is the coefficient B is actually a function of C_rate. C_rate is a positive continuous decision variable. Ah = C_rate * delta...
-
max general constraint violation error
AnsweredHi, I am trying to solve the following optimization problem. The code is given below. import gurobipy as gpfrom gurobipy import GRBimport mathimport sysNv = 3Tdep = [10,4,8]del_t = 2t_s = 0Imax ...