3

我正在尝试使用 PuLp 解决具有不同元素(铁、汞......)的混合问题。但是,我需要最大限度地利用我的约束,而不是最大化/最小化一些利润/成本。所以在Excel中我有这样的东西(在伪代码中):

max Sum (for each Element: (Sumproduct([DecisionVariables] * [Values]) / [MaximumAllowedValueForThisElement]))

我从来没有使用过这样的目标函数,但它似乎在 Excel 中工作。

现在我想在纸浆中模拟同样的问题。我想我需要的是这样的想法:

for Element in ELEMENTS:
    prob += lpSum(DecisionVariable[Concentrate]*dic[Element][Concentrate]/ MaxAmount[Element] for Concentrate in CONCENTRATES)

其中 ELEMENTS 是包含所有元素的列表,CONCENTRATES 是从 0 到 100 的值列表,而 dic[Element][Concentrate] 存储来自每个元素及其所有浓缩物的值。

现在使用上面的代码,目标函数在每个循环中都被覆盖。我不需要覆盖旧的目标函数,而是需要 append() 之类的东西来将每个 loops=lpSums 添加到我的概率变量?类?

一般来说,我对编程相当陌生,我想我的问题更多地与我缺乏 python 编程技能有关,而不是我的(也缺乏 :D)PuLP 技能。但是我在PuLP 文档中找不到任何内容,至少我无法将其连接到任何内容。

编辑:包括一张小桌子来展示问题:

+------------------------------+-------------------------------------------+----+------------------------------+---------------+----------------------+---------------+---------------+-------------------------------+
|       Utilization [%]        |       Sumproduct[Quantity] = [LHS]        |    | Constrains[Quantity] = [RHS] |  Concentrate  |    Element 1 [%]     | Element 2 [%] | Element 3 [%] | Decision Variables [Quantity] |
+------------------------------+-------------------------------------------+----+------------------------------+---------------+----------------------+---------------+---------------+-------------------------------+
| u1 = z1 / MaxAmount Element1 | z1 = Col Element1 * Col Decison Variables | <= | MaxAmount Element1           | Concentrate 1 | % Element 1 in Con 1 |               |               | X1                            |
| u2 = z2 / MaxAmount Element2 | z2 = Col Element2 * Col Decison Variables | <= | MaxAmount Elemen2            | Concentrate 2 | % Element 1 in Con 2 |               |               | X2                            |
| u3 = z3 / MaxAmount Element3 | z3 = Col Element3 * Col Decison Variables | <= | MaxAmount Elemen3            | Concentrate 3 | % Element 1 in Con 3 |               |               | X3                            |
+------------------------------+-------------------------------------------+----+------------------------------+---------------+----------------------+---------------+---------------+-------------------------------+

“元素 2”和“元素 3”列存储与“元素 1”列相同的信息:各元素在浓缩物 1/2/3 中的百分比份额。

目标函数是最大化所有利用率的总和(u1+u2+u3)。所以我试图确定我应该使用多少每种浓缩物,尽可能多地利用每个元素的给定约束。回到我的 PuLp 代码,我想我可以将相当于“u1”的内容添加到我的 PuLp“LpProblem 类”中,但我不知道如何将这些 LpSum 中的多个添加到我的“LpProblem 类”中环形。

4

1 回答 1

4

这是一个版本,带有用于说明目的的虚拟数据。看看这是否对您有帮助。

import pulp
from pulp import *

ELEMENTS = ['Iron', 'Mercury', 'Silver']


Max_Per_Elem = {'Iron': 35, 
         'Mercury': 17, 
         'Silver': 28
               }

# A dictionary of the Iron percent in each of the CONCs
IronPercent = {'CONC_1': 20, 'CONC_2': 10, 'CONC_3': 25}

# A dictionary of the Hg percent in each of the CONCs
MercPercent = {'CONC_1': 15, 'CONC_2': 18, 'CONC_3': 12}

# A dictionary of the Silver percent in each of the CONCs
SilverPercent = {'CONC_1': 30,  'CONC_2': 40, 'CONC_3': 20}

CONCENTRATE_DIC = {'Iron': IronPercent,
              'Mercury': MercPercent,
              'Silver': SilverPercent              
              }

# Creates a list of Decision Variables
concs = ['CONC_1', 'CONC_2', 'CONC_3']

现在,我们准备调用puLP函数。

conc_vars = LpVariable.dicts("Util", concs, 0, 1.0)

# Create the 'prob' variable to contain the problem data
prob = LpProblem("Elements Concentration Problem", LpMaximize)

# The objective function
prob += lpSum([conc_vars[i] for i in concs]), "Total Utilization is maximized"

for elem in ELEMENTS:
    prob += lpSum([CONCENTRATE_DIC[elem][i]/Max_Per_Elem[elem] * conc_vars[i] for i in concs]) <= Max_Per_Elem[elem]/100, elem+"Percent"

要验证,您可以打印prob以查看它的外观:

Elements Concentration Problem:
MAXIMIZE
1*Util_CONC_1 + 1*Util_CONC_2 + 1*Util_CONC_3 + 0
SUBJECT TO
IronPercent: 0.571428571429 Util_CONC_1 + 0.285714285714 Util_CONC_2
 + 0.714285714286 Util_CONC_3 <= 0.35

MercuryPercent: 0.882352941176 Util_CONC_1 + 1.05882352941 Util_CONC_2
 + 0.705882352941 Util_CONC_3 <= 0.17

SilverPercent: 1.07142857143 Util_CONC_1 + 1.42857142857 Util_CONC_2
 + 0.714285714286 Util_CONC_3 <= 0.28

VARIABLES
Util_CONC_1 <= 1 Continuous
Util_CONC_2 <= 1 Continuous
Util_CONC_3 <= 1 Continuous

一旦你对配方感到满意,就解决问题。

prob.writeLP("ElemUtiliztionModel.lp")
prob.solve()
print("Status:", LpStatus[prob.status])
for v in prob.variables():
    print(v.name, "=", v.varValue)

要得到,

Status: Optimal
Util_CONC_1 = 0.0
Util_CONC_2 = 0.0
Util_CONC_3 = 0.24083333

希望能帮助你前进。

于 2018-07-27T01:22:08.197 回答