signature=6cebc99f107fe05624d006b5699a4cbd,Optimization in Quality Function Deployment Using Linear ...

质量功能部署(QFD)是一种以客户为中心的产品开发方法。该方法通过科学系统的方式收集客户需求,并利用质量屋(HOQ)将这些需求转化为产品开发各阶段的技术特性。本文提出了四种线性规划模型来优化HOQ中技术特性的目标设定,以期提高整体客户满意度。通过空调开发的案例研究表明,所提出的模型有效,并能帮助设计团队基于HOQ信息确定技术特性的目标水平。
摘要由CSDN通过智能技术生成

摘要:

Quality Function Deployment(QFD)is an approach to customer driven product development.QFD adopts a scientific and systematic method to collect customer requirements,and translates them into appropriate technical charac- teristics for each stage of the product development cycle using a structured framework known as House of Quality (HOQ).An important activity in HOQ is to determine target levels for technical characteristics,based on the collected customer requirements,with a view to achieving a high level of overall customer satisfaction.Traditionally,this complex planning process is accomplished in a subjective manner,which often results in non-optimal or sub-optimal solutions. This paper presents four kinds of linear programming models for such a planning process.Details are given on how the models are derived from an established HOQ.Computational experiment from the development of an air-conditioner shows that the proposed models are effective,and can aid a design team in determining the target levels for technical characteristics based on the information in an HOQ.

展开

好的,这里提供一个基于高德地图 JavaScript API 的绘制路线的地图 demo。以下是代码: ```html <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>高德地图绘制路线 Demo</title> <style type="text/css"> #container { width: 100%; height: 100%; } </style> <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=5823242f184847b2cebc35e7cbafa2b3"></script> </head> <body> <div id="container"></div> <script type="text/javascript"> // 创建地图 var map = new AMap.Map('container', { resizeEnable: true, center: [116.397428, 39.90923], zoom: 13 }); // 随机5个点 var points = [ [116.397428, 39.90923], [116.397428, 39.90923], [116.397428, 39.90923], [116.397428, 39.90923], [116.397428, 39.90923] ]; // 生成两条随机路线 var line1 = new AMap.Polyline({ path: points, strokeColor: "#3366FF", strokeOpacity: 1, strokeWeight: 5, strokeStyle: "solid" }); var line2 = new AMap.Polyline({ path: points.reverse(), strokeColor: "#FF3366", strokeOpacity: 1, strokeWeight: 5, strokeStyle: "solid" }); // 将路线添加到地图上显示 map.add(line1); map.add(line2); </script> </body> </html> ``` 在这个 demo 中,我们利用了高德地图 JavaScript API 中的 `AMap.Map` 类创建了一个地图,并通过 `AMap.Polyline` 类生成了两条随机路线,并将其添加到地图上显示。其中,地图的中心点为 [116.397428, 39.90923],缩放级别为 13。你可以将其中的 `points` 数组替换成你想要的 5 个点的坐标即可。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值