MES系统数据采集模块的设计与实现

上传人:lizhe****0001 文档编号:36898663 上传时间:2018-04-04 格式:PDF 页数:66 大小:2.88MB
返回 下载 相关 举报
MES系统数据采集模块的设计与实现_第1页
第1页 / 共66页
MES系统数据采集模块的设计与实现_第2页
第2页 / 共66页
MES系统数据采集模块的设计与实现_第3页
第3页 / 共66页
MES系统数据采集模块的设计与实现_第4页
第4页 / 共66页
MES系统数据采集模块的设计与实现_第5页
第5页 / 共66页
点击查看更多>>
资源描述

《MES系统数据采集模块的设计与实现》由会员分享,可在线阅读,更多相关《MES系统数据采集模块的设计与实现(66页珍藏版)》请在金锄头文库上搜索。

1、 Data Collection Module of MES System Design and Implementation of 代代 号号 分类号分类号 学学 号号 密密 级级 10701 TP311 公开公开 0922121476 题题(中、英文)(中、英文)目目 MESMES 系统数据采集模块系统数据采集模块 的设计与实现的设计与实现 作者姓名作者姓名 杨杨 恒恒 指导教师姓名指导教师姓名、职务职务 顾顾 新新 教授教授 学科门类学科门类 工工 学学 提交论文日期提交论文日期 二一二二一二 年年 二二 月月 学科、专业学科、专业 计算机应用技术计算机应用技术 创新性声明 本人声明所呈

2、交的论文是我个人在导师的指导下进行的研究工作及取得的研究成果。尽我所知,除了文中特别加以标注和致谢中所罗列的内容以外,论文中不包含其他人已经发表或撰写过的研究成果,也不包含为获得西安电子科技大学或其它教育机构的学位或证书而使用过的材料。与我一同工作的同志对本研究工作所做的任何贡献均已在论文中作了明确的说明并表示了谢意。 申请学位论文若有不实之处,本人承担一切相关责任。 本人签名: 日期: 关于论文使用授权的说明 本人完全了解西安电子科技大学有关保留和使用学位论文的规定,即:研究生在校攻读学位期间论文工作的知识产权单位属西安电子科技大学。本人保证毕业离校后,发表论文或使用论文工作成果时署名单位仍

3、然为西安电子科技大学。学校有权保留送交论文的复印件,允许查阅和借阅论文;学校可以公布论文的全部或部分内容,可以允许采用影印、缩印或其他复制手段保存论文。 (保密的论文在解密后遵守此规定) 本学位论文属于保密在_年解密后适用本授权书。 本人签名: 日期: 导师签名: 日期: 摘 要 F300 和 SF 系统是美国某大型半导体设备供应商所研发的 MES 系统,它们为半导体制造自动化生产管理提供了一整套解决方案。在现今大型半导体工厂流水线上,数据的实时采集变得尤为重要,本文在对 MES 系统的结构和功能分析的基础上,提供了一种实时的数据采集模块的实现方案。 MES 系统必须提供实时收集生产过程中数据

4、的功能,并做出相应的分析和处理后,将需要的数据存入数据库。 WCF 是由微软发展的一组数据通信的应用程序开发接口, 它是.NET 框架的一部分,使用面向服务架构。由于实际的工厂流水线上,为了协调不同模块不同设备之间的通信,SF 系统采用了 WCF 框架。 本文首先着重阐述了数据采集模块在 MES 系统中的重要地位,并通过对实际项目的分析以及对 WCF 框架的研究,将数据采集模块又分为数据采集功能模块、数据处理功能模块以及数据显示功能模块, 其中数据采集功能模块位于 WCF 框架的 Service 端,负责监控流水线并提供实时的数据采集和存储功能,数据处理及显示功能模块位于 Client 端,

5、采用 MVP 设计模式, 实现从数据库中抓取及处理数据,并以一种友好的形式呈现给用户。 关键词 WCF MES MVPWCF MES MVP 数据采集 Abstract F300 and SF are MES systems developed by a large semiconductor equipment supplier of the United States, which provide a set of solutions for the automated production management of semiconductor manufacturing. In the

6、 current time, it is particularly important to grasp real-time data on the assembly line for large semiconductor producers. This paper provides a real-time data acquisition module scheme, on the basis of analysis of the structure and function of MES system. MES, short for manufacturing execution sys

7、tem, must provide the function of real-time data collection during the process of producing, and make corresponding analysis and processing.and storage the data which are useful into database. Windows Communication Foundation (WCF) is a set of applications development interfaces of data communicatio

8、n developed by the Microsoft, and is a part of framework, using the service-oriented architecture. On the actual factory assembly line, it is necessary to coordinate communication between different modules and different equipments, therefore the SF system uses a WCF framework. This paper emphatical

9、ly elaborates the importance of the data acquisition module in the MES system, and through the analysis of the actual project and the research on the WCF framework, the paper categorizes the data acquisition module into data acquisition function module, data processing function module and data displ

10、ay function module. The data acquisition module is located in the Service port of the WCF framework, in charge of monitoring the assembly line and providing real-time data acquisition and storage functions. The data processing and display function modules are located in the Client port, using the MV

11、P designing patterns, which helps realizing grasping data from the database and processing the data, and then represent the result in a friendly way to the users. Keywords: WCF MES MVP DataCollection 目 录 目 录 第一章第一章 绪论绪论 . 11.1 研究背景 . 1 1.2 研究目的和意义 . 1 1.3 本文主要内容 . 2 1.4 本文组织结构 . 3第二章第二章 相关技术研究相关技术研究 . 52.1 WCF通信原理研究 . 5 2.1.1WCF的拦截机制 . 5 2.1.2 WCF消息传递方法 . 5 2.1.3 WCF服务 . 6 2.1.4 WCF事务 . 7 2.2 MES系统体系结构 . 9 2.2.1 MES系统体系结构 . 9 2.2.2 MES系统网络结构 . 10 2.2.3 MES系统功能 .

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 学术论文 > 毕业论文

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号