代写_论文代写_ESSAY PhD团队论文、作业代写-不是中介 更加专业

EssayPhD是来自全球各地TOP名校的PhD自发组成的联盟,旨在为学弟学妹提供专业的英语论文写作指导及留学申请指导,为名解答论文及申请文书写作中的常见疑难问题。
CS IT

PhD计算机Lingo编程代写

时间:2018-06-03 17:14来源:EssayPhD团队 作者:admin 点击:

这是我们在2017年为美国南加州大学的学弟学妹们写的一篇范文,是关于计算机Lingo编程代写,以Company Manufactures Quantitative Management为题,首先介绍文章写作的内容和目的,一家公司在四家工厂生产三种不同的产品,我们的任务是为公司寻找最佳生产和运输计划,以最大限度地降低线性规划和LINGO满足客户需求的成本。该公司的成本包括生产成本,运输成本和库存成本。通过找到最佳的生产和运输计划,我们可以最大限度地降低该公司的成本。一下是我们计算机lingo编程代写范文

1) Executive summary: a short description of the problem and summary of yourResults

A company manufactures three different products at four plants. Our task is to find the optimal production and shipping plan for the company to minimize the cost of meeting customer demands with Linear Programming and LINGO. The cost of this company consists of production cost, transportation cost and inventory cost. By finding the optimal production and shipping plan, we can minimize the cost of this company. With Linear Programming and LINGO, we found global optimal solution of the cost of this company: $836931.1. Specifically, production cost, transportation cost and inventory cost is $750754.6, $85035.13 and $1141.382,respectively.

2) Problem description: rewrite the problem according to your understanding

A company manufactures three different products at four plants. The cost of this company consists of production cost, transportation cost and inventory cost. The production cost is the time spent on machines multiplied by Machine cost per hour. In every plant, the time spent on every machine cannot exceed the available machine time. The transportation cost is the number of product transported from plant to customer multiplied by unit transportation cost. The number of product transported from all plant to a customer cannot exceed the demand of this customer. The inventory cost is the number of inventory product multiplied by unit inventory cost. In first month, the number of inventory product = the number of Initial inventory + the number of product produced in this month – the number of product transported to all customer. In other month, the number of inventory product = the number of inventory product on last month + the number of product produced in this month – the number of product transported to all customer. The number of inventory product must be greater than 0.

3) Formulation of the problem and LINGO implementation

sets:

! four plant, the unitInventoryCost is unit inventory cost of every plant;

plant/1..4/:unitInventoryCost;

! every plant have three machines;

machine/1..3/;

! every plant produce three type of products.

product/1..3/;

! find the optimal production and shipping plan in next four month;

month/1..4/;

! this company have six customer;

customer/1..6/;

! Machine time for product at plant (minutes/unit)

linkPPM(plant,product,machine): MTproduct;

! MTplant is Total machine time at plant for the next four months (Hours);

! MachineCost is Machine cost at plant for the next four months ($/Hour)

linkPMM(plant,machine,month): MTplant,MachineCost;

! InitialInventory is Initial inventory at plant (units)

linkPP(product,plant): InitialInventory;

! demand is Demand for product by customer in each month (units);

! transportsum is the number of product transported to customer;

linkPCM(product,customer,month): demand,transportsum;

! TransporationCostis Transporation cost between plant and customer ($/unit)

linkPC(plant,customer): TransporationCost;

!transport is the number of product transported from a plant to a customer in some month;

linkMPPC(month,plant,product,customer): transport;

! prod is the number of product produced in a plant in some month;

! time is the time spent to produce product in a plant in some month;

! realtrans is the number of product transported in a plant in some month;

! inventory is the number of inventory product in a plant in some month;

linkProd(month,plant,product): prod,time,realtrans,inventory;

EssayPhD--计算机lingo编程代写
EssayPhD--计算机lingo编程代写

endsets

! calculate the time spent to produce product in a plant in some month;

@FOR( month(M): @FOR( plant(I): @FOR( machine(K): time(M,I,K)=@SUM( product(P):MTproduct(I,P,K)*prod(M,I,P)))));

! the time spent to produce product in a plant in some month must be less than the available machine time in that plant

@FOR( month(M): @FOR( plant(I): @FOR( machine(K): time(M,I,K)<=MTplant(I,K,M)*60)));

! calculate the cost of production

productCost = @SUM( month(M): @SUM( plant(I): @SUM( machine(K): (time(M,I,K)/60)*MachineCost(I,K,M))));

! calculate the number of product transported to customer;

@FOR( month(M): @FOR( product(P): @FOR(customer(C): transportsum(P,C,M)=@SUM( plant(I):

transport(M,I,P,C)))));

! the number of product transported to customer must be equal to demand for product by customer;

@FOR( month(M): @FOR( product(P): @FOR(customer(C): transportsum(P,C,M)=demand(P,C,M))));

!calculate the number of product transported in a plant in some month;

@FOR( month(M): @FOR( plant(I): @FOR(product(P): realtrans(M,I,P)=@SUM( customer(C):transport(M,I,P,C)))));

! calculatetransporation cost between plant and customer

transportCost =@SUM(month(M):@SUM(product(P):@SUM(customer(C):@SUM(plant(I):transport(M,I,P,C)*TransporationCost(I,C)))));

! calculate the number of inventory product;

@FOR( month(M): @FOR( plant(I): @FOR( product(P): inventory(M,I,P) = @if(M #eq# 1,prod(M,I,P)+InitialInventory(P,I)-realtrans(M,I,P),prod(M,I,P)+inventory(M-1,I,P)-realtrans(M,I,P)))));

! The number of inventory product must be greater than 0.

@FOR( month(M): @FOR( plant(I): @FOR( product(P): inventory(M,I,P)>=0)));

! calculate the cost of inventory

inventoryCost = @SUM( month(M): @SUM( plant(I): @SUM( product(P): inventory(M,I,P)*unitInventoryCost(I))));

! Object function, minimize the cost of this company

min=productCost +transportCost +inventoryCost ;

4) interpretation of the solution report

With Linear Programming and LINGO, we found global optimal solution of the cost of this company: $836931.1. Specifically, production cost, transportation cost and inventory cost is $750754.6, $85035.13 and $1141.382, respectively. The prod is production plan for the company. The transport is shipping plan for the company.

通过上文的文字分析和计算,得出结论,在叙述结论的时候重复一下写作目的,表明该公司的成本包括生产成本,运输成本和库存成本。重申我们的任务是为公司寻找最佳生产和运输计划,以最大限度地降低线性规划和LINGO满足客户需求的成本。最后在写结论,我们找到了该公司成本的全球最优解决方案:$ 836931.1。具体的计算结果是,生产成本,运输成本和库存成本分别为750754.6美元,85035.13美元和1141.382美元。EssayPhD--计算机lingo编程代写

5) Summary: short description of your solution approach and main results The cost of this company consists of production cost, transportation cost and inventory cost. Our task is to find the optimal production and shipping plan for the company to minimize the cost of meeting customer demands with Linear Programming and LINGO. We found global optimal solution of the cost of this company: $836931.1. Specifically, production cost, transportation cost and inventory cost is $750754.6, $85035.13 and $1141.382, respectively.

需要计算机lingo编程代写的同学,欢迎预约我们计算机PhD哦

------分隔线----------------------------

ESSAY PhD擅长于各类学科写作,为全球留学生提供优质论文代写服务。
全PhD团队为您提供最优质的论文代写服务。我们团队的PhD几乎涵盖各个学科,覆盖全球各个TOP大学。我们将根据作业的要求,为您亲手制定唯一的原创论文。提供TURNITIN和WRITECHECK抄袭检测报告。ESSAY PhD提供一对一指导交流服务,如果您对论文有任何不懂,可以直接和PhD写手联系。我们提供辅导服务,直到您理解掌握为止。我们承诺,用最大的努力满足您对学习的要求。

Terms & Conditions    隐私保护    修改条款    Fair Use Policy

Copyright©2015-2018 ESSAY PhD All Rights Reserved   工作时间:7X24小时全天候在线为你提供服务   工作邮箱:essayphd@yahoo.com   客服QQ:981468205