毕设文献翻译

毕设文献翻译
毕设文献翻译

Research on key technologies of

embedded GPS navigation

Embedded GPS navigation, based on embedded platform technology, through GPS and GIS and combined with handheld devices, achieves target location, path calculation, route guidance and surrounding search functions of mobile users. This paper, Symbian OS mobile phones as the terminal, background Linux servers providing the mapping service, path calculation, route guidance, networking search, location query and other functions, using GPRS, WIFI and other wireless communication modes, achieves navigation services provided by professional navigation mobile phones on light weight thin-client, and, at the same time, takes advantage of mobile phone communication to achieve a certain degree of user interaction. Thus, based on the user interface on Symbian platform, GPS, data persistence layer, audio and network programming, an overall solution is proposed and the corresponding key technologies involved are discussed.

With the development of 3G technology, the improvement of wireless network coverage, the embedded navigation of mobile phones, because of its good portability, low price, always online and more flexible ways to obtain such services, is more and more concerned about. However, due to wide sorts of mobile phones for different platforms, corresponding software needs to be developed, and therefore a suitable embedded operating system needs to be selected. Currently on the market there are more than 40 common embedded operating systems, including Linux, Windows CE, Symbian, etc. These embedded systems have different characteristics, and there into Symbian system, developed by Nokia, because of its large user base and good network functions is a successful one. This paper realizes the Symbian-based GPS navigation system. It involves techniques which can be divided into: server-side technology and client-side technology. Client-side technology is mainly related to Symbian programming, GPS module processing, network communication etc; server technology mainly involves Web server technology, database access, and geographic information system technology. After server technology roughly introduced, this paper, mainly aiming at client-side technologies, discusses various technologies

involved when building mobile phone GPS navigation software with the C/S structure.

In order to improve the user experience, it is necessary to convert the operations of high-latency and high memory requirements to the service side. Due to Linux's open source and stability, this paper adopts Linux as the terminal server, uses Apache to build web services, and makes modular map services, POI queries, path calculation\guidance services, and built-in sub-services for the Apache. It shows the General framework of the embedded GPS navigation. Taking into account the mass characteristics of map data, tore duce real-time map data downloads when browsing the map, hierarchical block strategy about map data will be introduced in detail hereafter. Path calculation, as the core of GPS navigation services, supported by navigation data, adopts a dual-side A-Star algorithm to realize optimal path supporting the three kinds of calculation methods of the least time, the shortest distance and less fee. Route guidance, based on path calculation module, analyzes the best sections of the calculated path and the node attributes, dynamically calculates the junction point in need of guidance information, loads on the display points of path calculation by index technology of matching, transfers to the client through the appropriate protocols, and consequently achieve navigation guidance. POI query service is based on full-text retrieval technology. A key technology of full-text Retrieval System to establish the inverted file of location index for each word in the article. Inverted index approach can not solve the problem about space search. So the approach of inverted index combined with spatial segmentation is introduced. Firstly, using a grid method segments all POI information according to the relationship of spatial location. And then inverted index is built for the POI in the space after segmentation. Open extensible multi-tier architecture, combined with search, index, cache and other key technologies for search services, greatly improve service stability and search efficiency Symbian OS, as a set of 32-bit operating system, with multi-tasking, multi-threaded, low-power, low occupation of memory, etc. is very suitable for mobile communication equipment. It is not difficult to arrive at the following conclusion: In the Symbian client, there are map data mapping, GPS data reception and encryption, path computation and guidance analysis, voice broadcast and other modules. This test system is based on C/S mode, so the network communication module is the core module. Due to the transmission delay of network and unknown transmission errors, etc, multi-threaded scheduling download

mechanism is used. And GPS, voice broadcast and some other modules also need an asynchronous implementation, while, other than Windows programs, they use active objects to realize the asynchronous operation instead of the multithreaded model.

HTTP is a basic protocol in Web technologies, which is an application layer protocol, directly using TCP layer to transfer information. The server only needs to accept a request and, according to the user's requests, to send the appropriate file. It is not necessary for the server to record retrieval track so that the number of users supported by a server can greatly increase. However, there are many shortcomings of HTTP: because of its simplification, a TCP connection needs to be built and at the same time a TCP connection needs to be removed each time a file is passed. Therefore, when you want to send a very small file, it is very uneconomical. In addition, as the server can’t reserve retrieval tracks, the password memory, etc. is a big trouble, resulting in decreased efficiency of the system.

Thus, this test system needs to maintain a long connection, to avoid overhead brought by short Http connection. In the WIFI or mobile CMNET mode, Socket mode is used to realize Http download requests. That is to say, the system will establish a connection with the server, format and send the request header, receive the data returned from the server, split and analyze the response header and receive data. Afterwards through the establishment of a Socket connection pool, after the work thread activated, the system gets the network connections from Socket Connection Pool and then makes network requests. Meanwhile the network connection object will be re-used, that is, it will not to be destroyed after download, but to be used continuously until the connection fails. The re-used Socket connection will be put into Socket connection pool to be managed. For Wap of China Unicom or China Mobile, due to its agents through the gateway, the Socket method can’t be used directly to download, so the Socket analog of Http requests or the simple download, directly using the Http protocol interface are necessary. From multi-task download process, it can be seen that, in the main UI process, when the user operates a request, such as POI search, location queries or path calculation, the UI main thread launches the network request, encapsulate the network task and submit it to the Task Manager. As for the tasks in the queue, the Task Manager requests for idle threads to process from the initialized download thread pool, and at the same time marks the task as being processed, making the main UI in a wait state. If there is an idle thread, the system will activate it and initiate a network connection request. If the data download is

complete or the connection is timed out, the system notifies the Task Manager, clears the task from the download queue, and updates the state of the UI main thread. At the same time, the user can manually terminate current download tasks. The test system shows that this process can realize quick downloads and a good user experience.

As for navigation through mobile communication, realtime navigation-related data need to be downloaded to the local. Because wireless communication network bandwidth is limited, in order to improve the response speed of the software to improve the user experience, the local cache technology of communication navigation is produced. Its basic principle is by sacrificing some storage space to maintain a certain priority level of data or information, when the data request is received, firstly check whether the cache can provide the requested data or information, and if it exists, then it can be fleetly extracted from the cache. In this way, the data need not to be 385 downloaded later so as to improve the speed and to reduce network traffic.

When the client requests for services, the requested data will be organized in the local memory in a certain way, which is actually a policy using storage space to exchange the rate. In the local cache, an index mechanism needs to be established, and then in the next request, starting with query in the local cache, if the requested data can not be found in the local cache, the server will be submitted a request to in succession. Cache is the core of the flow chart, and the manipulation on the cached data must be efficient, so cached data must be effectively organized to be managed. As for GIS web service clients, the most data involved in its request are spatial data, so the data management in the cache can adopts the data organization model consistent with spatial data organization model in the server. That is to say, hierarchical management model is a choice. For different data types different directories can be used. A data type corresponds to a directory, as for the same directory data, and a logical layer in the spatial database is expressed as a logical layer in the cache directory. The cache does not cache all of the layers in the database, but only stores specific areas of data in those layers selected by the user. Management and organization chart of cache data All of the work of cache module is carried out around the cache index, and all cache operations such as query, add, delete, update, etc, are realized through the cache index. In order to query quickly, Index data in the cache are generally built in the form of hash table. Each data object in the cache corresponds to a node in the hash table.

Data updates in the cache are generally because the updates of server-side data

cause the original cache data not available. When data are cached in the local, the data version needs to be recorded. But after updates of service-side data, during the cache operation the validity of the data in the cache can be determined, and as to invalid data, they will be removed from the cache and then re-downloaded. It is a flow chart of file data update. When the user requests for data update detection the client sends a request to the server. The Server-side will read and returns the latest timestamp of all files in the cache. The client will determine whether the time stamp of the local file and the returned timestamp is the same, and if they are different the update bit of the file will be modified in the index file. When the file needs to be accessed again, the client will firstly check whether the file exists in the index file and whether the file needs to be updated. And if updates are necessary the server will be requested to download the data once again.

Active object and an event scheduler together provide the non-preemptive multitasking, which can be used to replace the multi-threading in Symbian OS. Principle and flow of the local cache 386 active object is: compared with the use of threads, it is programming-simple and CPU-efficient.

As the GPS navigation and voice broadcast both need to obtain information in real time and can not affect the operation of UI, the system will respectively establish an activity object for them, bind the object with a certain asynchronous function in the system, and register the activity object in event scheduler, and then the event scheduler will wait for the completion message returned from the asynchronous function. On receipt of the completion message, the scheduler traverses registered activity objects, and if status!= KRequestPending is found, it will find the activity object corresponding to the status the object, call Run function of it and to tell us asynchronous function has been performed in the way of events. The test proves that asynchronous operations are well realized in this way, and better system performance can be achieved.

In this paper, according to the above C/S architecture, through various navigation services deployed in the background Linux servers and combined with the three strategies of the client, a test system is established in Nokia 5800 mobile phone, and through GPRS/WIFI and server [6], the information returned from the server is parsed as the appropriate customer requested information. The test shows that the average delay of path calculation is about 3-10s, and as for POI queries, etc, due to the optimized number of results, the transmission delay is roughly 1-3s. According to the

number of blocks in a screen, a map is downloaded with an average size of no more than 10k after Gzip compression. Through the pre-download mechanism, real-time download of lots of data is well avoided, and smoothly dragging and download and display of map data are realized. Running effect of the test system is shown in Figure 6.

Navigation, as a major hot spot application in the IT industry, due to the rapid development of hardware and software technology in recent years, has been remarkably progressing and gradually transiting from the traditional local car navigation to the handheld communication navigation and three-dimensional navigation. Especially with the maturity of SOA technology, services as one of the major trends in IT industry, various industries are making traditional applications service-oriented, thereby providing more comprehensive and personalized user experience. In this paper, through a preliminary overview of key technologies of the embedded GPS navigation, on this basis, a prototype system is developed and tested to verify the correctness and feasibility of the idea.

研究嵌入式GPS导航的关键技术

嵌入式GPS导航,基于嵌入式平台技术,通过GPS和GIS相结合,与手持设备,达到目标位置、路径计算、路径引导和周围环境的搜索功能。本文,塞班操作系统手机的终端、背景Linux服务器提供映射服务,路径计算、路线引导,网络搜索,位置查询等功能,利用GPRS,WIFI和其他无线通信方式,实现导航所提供的服务的专业导航手机轻量级的客户机,同时,利用移动电话通信实现一定程度的用户交互。因此,基于用户界面在塞班平台、GPS、数据持久化层、音频和网络编程,一个整体的解决方案,提出了相应的关键技术进行了讨论。

随着3G技术的进步,提高无线网络覆盖,嵌入式导航的手机,因其良好的可移植性,低价格、永远在线、更灵活的方式来获得这样的服务,是越来越多的关注。然而,由于广泛的各种针对不同平台的手机,需要开发相应的软件,因此一个合适的嵌入式操作系统需要选择。目前市场上有超过40个常见嵌入式操作系统,包括Linux,Windows CE、塞班等。这些嵌入式系统有不同的特征,其中塞班系统,开发了诺基亚,因为其庞大的用户基础和良好的网络函数是非常成功的。本文实现了塞班GPS导航系统。它涉及技术可以分为:服务器技术和客户端技术。客户端技术是主要涉及塞班编程、GPS模块处理、网络通信等;服务器技术主要包括网络服务器技术、数据库访问、和地理信息系统技术。在服务器技术大致介绍,本文主要针对客户端技术,讨论了各种技术涉及在构建手机GPS导航软件与C / S结构。

为了改善用户体验,这是必要的转换的操作和高内存操作需求到服务端。由于Linux的开源和稳定性,本文采用Linux作为终端服务器,使用Apache来构建web服务,并使模块化的地图服务、芋泥查询、路径计算\指导服务,对于Apache 和内置的附加服务。图1显示通用框架的嵌入式GPS导航。考虑到质量特征的地图数据,减少实时地图数据下载当浏览地图,分级块策略对地图数据详细介绍了以后。路径计算,为核心的GPS导航服务,支持导航数据,采用双侧a *算法实现最优路径支持三种计算方法最少的时间,最短的距离和更少的费用。路径诱导,基于路径计算模块,分析了最好的部分计算出的路径和节点属性,动态计算结点需要指导信息,显示屏上的加载点的路径计算的指数技术的匹配,转移到客户端通过适当的协议,从而实现导航指导。芋泥查询服务是基于全文检索技术。一个全文数据库检索系统的关键技术是建立倒排文件的位置指数对于每个词在文章中。反向索引方法不能解决问题关于空间搜索。所以这种方法结合空间分割介绍。首先,使用网格法段都POI信息根据空间位置的关系。然后反向索引是建立在空

间的山芋之后分割。开放的可扩展的多层体系结构,结合搜索、索引、缓存和其他关键技术搜索服务,大大提高服务。

塞班操作系统,一套32位操作系统,多任务,多线程,低功耗,低占领内存等,非常适合于移动通信设备。不难到达以下结论:

在塞班客户端,有地图数据映射、GPS数据接收和加密,路径计算和指导分析、语音广播和其他模块。这测试系统是基于C / S模式,所以网络通信模块是核心模块。由于传输延迟的网络和未知的传输错误等,多线程调度下载机制使用。和GPS、语音广播和一些其他模块也需要异步执行,同时,除了Windows程序,他们使用活动对象实现异步操作而不是多线程模型。

HTTP是一个基本的协议在网络技术,这是一个应用程序层协议,直接使用TCP层传输信息。服务器只需要接受请求,根据用户的请求,发送适当的文件。没有必要为服务器记录检索跟踪,以便支持的用户数量一个服务器可以大大增加。然而,有许多缺点的HTTP:因为它的简单化,TCP连接需要构建和在同一时间一个TCP连接需要删除每次文件被传递。因此,当你想把一个非常小的文件,它是非常不经济的。此外,由于服务器不能储备检索跟踪,密码记忆等等,是一个大麻烦,从而降低了系统的效率。因此,该测试系统需要维护一个长连接,以避免带来的开销短Http连接。在无线或移动CMNET模式,插座模式是用来实现Http下载请求。这是说,该系统将建立与服务器的连接,格式和发送请求头,接收返回的数据从服务器,分离和分析响应头和接收数据。后来通过建立一个套接字连接池,在工作线程激活,系统获取网络连接的套接字连接池,然后使网络请求。与此同时,网络连接对象将被重用,也就是说,它不会被摧毁,但要下载后继续使用直到连接失败。这些重复使用套接字连接将被放入套筒连接池来被管理。对Wap的中国联通还是中国移动,由于其代理通过网关,该套接字的方法不能直接用来下载,所以插座模拟的Http请求或简单的下载,直接使用Http协议接口是必要的。从多任务下载过程中,它可以见过,在主UI过程,当用户运行一个请求,如山芋搜索、位置查询或路径计算,UI线程启动网络的主要要求,封装网络任务,并提交任务管理。至于任务队列,任务管理器空闲的线程来处理请求,从初始化下载线程池,同时标志着任务正在处理,使主UI在等待状态。如果有是一个空闲的线程,系统将启动它,发起网络连接请求。如果数据下载完成或者连接超时,系统通知任务管理器,清除任务从下载队列,并更新状态的UI主线程。与此同时,用户可以手动终止当前的下载任务。这个测试表明,系统能够实现这个过程快下载和一个良好的用户体验。

至于导航通过移动通信,实时导航相关数据需要被下载到当地。因为无线通信网络带宽是有限的,为了提高响应速度的软件来改善用户体验,本地缓存通信导航技术生产。它的基本原则是:通过牺牲一些存储空间来维持一定的优先级的

数据或信息,当收到请求的数据,首先检查缓存是否可以提供所请求的数据或信息,如果它存在,那么它可以快速地提取从缓存中。通过这种方式,不需要的数据下载后,以提高速度和减少网络流量。当客户端请求服务,请求的数据将组织在本地内存中一个特定的方式,这实际上是一个政策使用存储空间来交换这个速度。在本地缓存中,索引机制的需要建立,然后在接下来的请求,从查询在本地缓存中,如果请求的数据不能被发现本地缓存,服务器将提交一个请求在演替。

活动对象和事件调度程序一起提供对其采用非中断的多任务处理,可以用来取代在塞班操作系统的多线程。原理和流的本地缓存。活动对象:与使用线程,它是编程简单和CPU效率。随着GPS导航和语音广播都需要实时获取信息并不能影响操作的界面,系统将分别建立活动对象,对象绑定到一个特定的异步函数在系统,注册这个活动对象在事件调度器,然后事件调度器将等待完成消息返回异步函数。在收到竣工消息,调度程序遍历注册活动对象,如果状态!= KRequestPending找到,它就会发现活动对象对应于状态对象,调用Run函数,来告诉我们异步函数已经被执行的事件。测试证明,异步操作都意识到在这种方式,和可以实现更好的系统性能。

在本文中,根据上面的C / S架构,通过各种导航部署的服务背景Linux服务器,结合三个策略的客户端,一个测试系统是建立在诺基亚5800手机,并通过GPRS / WIFI和服务器通信,从服务器返回的信息解析与适当的客户请求的信息。测试表明,平均延迟路径的计算关于3-10s,至于芋泥查询等,由于优化数量的结果,大概是1-3s传输延迟。据块的数量在一个屏幕,一个地图下载的平均大小不超过10 k后压缩。通过预下载机制,实时下载大量数据是好。

导航,作为一个主要的热点应用它行业,由于硬件的快速发展,软件技术近年来取得了显著的进步,逐步从传统的凌日当地的汽车导航到手持通信导航和三维导航。尤其是在成熟的SOA技术、服务为一体的专业IT行业的趋势,各种行业都做传统的面向服务的应用程序,从而提供更全面和个性化的用户体验。在本文通过初步概述的关键技术的嵌入式GPS导航,在此基础上,开发了原型系统和测试来验证想法的可行性和正确性。

毕设外文资料翻译.

理工学院 毕业设计外文资料翻译 专业:计算机科学与技术 姓名:马艳丽 学号: 12L0752218 外文出处:The Design and Implementation of 3D Electronic Map of Campus Based on WEBGIS 附件: 1.外文资料翻译译文;2.外文原文。

附件1:外文资料翻译译文 基于WebGIS的校园三维电子地图的设计与实现 一.导言 如今,数字化和信息化是当今时代的主题。随着信息革命和计算机科学的发展,计算机技术已经渗透到科学的各个领域,并引起了许多革命性的变化,在这些科目,古代制图学也不例外。随着技术和文化的不断进步,地图变化的形式和内容也随之更新。在计算机图形学中,地理信息系统(GIS)不断应用到Web,制作和演示的传统方式经历了巨大的变化,由于先进的信息技术的发展,地图的应用已经大大延长。在这些情况下,绘图将面临广阔的发展前景。电子地图是随之应运而生的产品之一。随着计算机技术,计算机图形学理论,遥感技术,航空摄影测量技术和其他相关技术的飞速发展。用户需要的三维可视化,动态的交互性和展示自己的各种地理相关的数据处理和分析,如此多的关注应支付的研究三维地图。东北石油大学及其周边地区的基础上本文设计并建立三维电子地图。 二.系统设计 基于WebGIS的校园三维电子地图系统的具有普通地图的一般特性。通过按键盘上的箭头键(上,下,左,右),可以使地图向相应的方向移动。通过拖动鼠标,可以查看感兴趣的任何一个地方。使用鼠标滚轮,可以控制地图的大小,根据用户的需求来查看不同缩放级别的地图。在地图的左下角会显示当前鼠标的坐标。在一个div层,我们描绘了一个新建筑物的热点,这层可以根据不同的地图图层的显示,它也可以自动调整。通过点击热点,它可以显示热点的具体信息。也可以输入到查询的信息,根据自己的需要,并得到一些相关的信息。此外,通过点击鼠标,人们可以选择检查的三维地图和卫星地图。 主要功能包括: ?用户信息管理:检查用户名和密码,根据权限设置级别的认证,允许不同权限的用户通过互联网登录系统。 ?位置信息查询:系统可以为用户提供模糊查询和快速定位。

论文外文文献翻译3000字左右

南京航空航天大学金城学院 毕业设计(论文)外文文献翻译 系部经济系 专业国际经济与贸易 学生姓名陈雅琼学号2011051115 指导教师邓晶职称副教授 2015年5月

Economic policy,tourism trade and productive diversification (Excerpt) Iza Lejárraga,Peter Walkenhorst The broad lesson that can be inferred from the analysis is that promoting tourism linkages with the productive capabilities of a host country is a multi-faceted approach influenced by a variety of country conditions.Among these,fixed or semi-fixed factors of production,such as land,labor,or capital,seem to have a relatively minor influence.Within the domain of natural endowments,only agricultural capital emerged as significant.This is a result that corresponds to expectations,given that foods and beverages are the primary source of demand in the tourism economy.Hence,investments in agricultural technology may foment linkages with the tourism market.It is also worth mentioning that for significant backward linkages to emerge with local agriculture,a larger scale of tourism may be important. According to the regression results,a strong tourism–agriculture nexus will not necessarily develop at a small scale of tourism demand. It appears that variables related to the entrepreneurial capital of the host economy are of notable explanatory significance.The human development index(HDI), which is used to measure a country's general level of development,is significantly and positively associated with tourism linkages.One plausible explanation for this is that international tourists,who often originate in high-income countries,may feel more comfortable and thus be inclined to consume more in a host country that has a life-style to which they can relate easily.Moreover,it is important to remember that the HDI also captures the relative achievements of countries in the level of health and education of the population.Therefore,a higher HDI reflects a healthier and more educated workforce,and thus,the quality of local entrepreneurship.Related to this point,it is important to underscore that the level of participation of women in the host economy also has a significantly positive effect on linkages.In sum, enhancing local entrepreneurial capital may expand the linkages between tourism and other sectors of the host country.

毕设外文文献翻译

xxxxxxxxx 毕业设计(论文)外文文献翻译 (本科学生用) 题目:Poduct Line Engineering: The State of the Practice 生产线工程:实践的形态 学生姓名:学号: 学部(系): 专业年级: 指导教师:职称或学位: 2011年3月10日

外文文献翻译(译成中文1000字左右): 【主要阅读文献不少于5篇,译文后附注文献信息,包括:作者、书名(或论文题目)、出版社(或刊物名称)、出版时间(或刊号)、页码。提供所译外文资料附件(印刷类含封面、封底、目录、翻译部分的复印件等,网站类的请附网址及原文】 Requirements engineering practices A precise requirements engineering process— a main driver for successful software development —is even more important for product line engineering. Usually, the product line’s scope addresses various domains simultaneously. This makes requirements engineering more complex. Furthermore, SPL development involves more tasks than single-product development. Many product line requirements are complex, interlinked, and divided into common and product-specific requirements. So, several requirements engineering practices are important specifically in SPL development: ? Domain identification and modeling, as well as commonalities and variations across product instances Separate specification and verification for platform and product requirements ? Management of integrating future requirements into the platform and products ? Identification, modeling, and management of requirement dependencies The first two practices are specific to SPL engineering. The latter two are common to software development but have much higher importance for SPLs. Issues with performing these additional activities can severely affect the product line’s long-term success. During the investigation, we found that most organizations today apply organizational and procedural measures to master these challenges. The applicability of more formal requirements engineering techniques and tools appeared rather limited, partly because such techniques are not yet designed to cope with product line evelopment’s inherent complexities. The investigation determined that the following three SPL requirements engineering practices were most important to SPL success. Domain analysis and domain description. Before starting SPL development, organizations should perform a thorough domain analysis. A well-understood domain is a prerequisite for defining a suitable scope for the product line. It’s the foundation for efficiently identifying and distinguishing platform and product requirements. Among the five participants in our investigation, three explicitly modeled the product line requirements. The others used experienced architects and domain experts to develop the SPL core assets without extensive requirements elicitation. Two organizations from the first group established a continuous requirements management that maintained links between product line and product instance requirements. The three other organizations managed their core assets’ evolution using change management procedures and versioning concepts. Their business did not force them to maintain more detailed links between the requirements on core assets and product instances. The impact of architectural decisions on requirements negotiations. A stable but flexible architecture is important for SPL development. However, focusing SPL evolution too much on architectural issues will lead to shallow or even incorrect specifications. It can cause core assets to ignore important SPL requirements so that the core assets lose relevance for SPL development. Organizations can avoid this problem by establishing clear responsibilities for requirements management in addition to architectural roles. The work group participants reported that a suitable organizational tool for balancing requirements and architecture is roundtable meetings in which requirements engineers,

毕业论文英文参考文献与译文

Inventory management Inventory Control On the so-called "inventory control", many people will interpret it as a "storage management", which is actually a big distortion. The traditional narrow view, mainly for warehouse inventory control of materials for inventory, data processing, storage, distribution, etc., through the implementation of anti-corrosion, temperature and humidity control means, to make the custody of the physical inventory to maintain optimum purposes. This is just a form of inventory control, or can be defined as the physical inventory control. How, then, from a broad perspective to understand inventory control? Inventory control should be related to the company's financial and operational objectives, in particular operating cash flow by optimizing the entire demand and supply chain management processes (DSCM), a reasonable set of ERP control strategy, and supported by appropriate information processing tools, tools to achieved in ensuring the timely delivery of the premise, as far as possible to reduce inventory levels, reducing inventory and obsolescence, the risk of devaluation. In this sense, the physical inventory control to achieve financial goals is just a means to control the entire inventory or just a necessary part; from the perspective of organizational functions, physical inventory control, warehouse management is mainly the responsibility of The broad inventory control is the demand and supply chain management, and the whole company's responsibility. Why until now many people's understanding of inventory control, limited physical inventory control? The following two reasons can not be ignored: First, our enterprises do not attach importance to inventory control. Especially those who benefit relatively good business, as long as there is money on the few people to consider the problem of inventory turnover. Inventory control is simply interpreted as warehouse management, unless the time to spend money, it may have been to see the inventory problem, and see the results are often very simple procurement to buy more, or did not do warehouse departments . Second, ERP misleading. Invoicing software is simple audacity to call it ERP, companies on their so-called ERP can reduce the number of inventory, inventory control, seems to rely on their small software can get. Even as SAP, BAAN ERP world, the field of

外文文献翻译——参考格式

广东工业大学华立学院 本科毕业设计(论文) 外文参考文献译文及原文 系部经济学部 专业经济学 年级 2007级 班级名称 07经济学6班 学号 16020706001 学生姓名张瑜琴 指导教师陈锶 2011 年05月

目录 1挑战:小额贷款中的进入和商业银行的长期承诺 (1) 2什么商业银行带给小额贷款和什么把他们留在外 (2) 3 商业银行的四个模型进入小额贷款之内 (4) 3.1内在的单位 (4) 3.2财务子公司 (5) 3.3策略的同盟 (5) 3.4服务公司模型 (6) 4 合法的形式和操作的结构比较 (8) 5 服务的个案研究公司模型:厄瓜多尔和Haiti5 (9)

1 挑战:小额贷款中的进入和商业银行的长期承诺 商业银行已经是逐渐重要的运动员在拉丁美洲中的小额贷款服务的发展2到小额贷款市场是小额贷款的好消息客户因为银行能提供他们一完整类型的财务的服务,包括信用,储蓄和以费用为基础的服务。整体而言,它也对小额贷款重要,因为与他们广泛的身体、财务的和人类。如果商业银行变成重的运动员在小额贷款,他们能提供非常强烈的竞争到传统的小额贷款机构。资源,银行能廉宜地发射而且扩张小额贷款服务rela tively。如果商业广告银行在小额贷款中成为严重的运动员,他们能提出非常强烈的竞争给传统的小额贷款机构。然而,小额贷款社区里面有知觉哪一商业银行进入进入小额贷款将会是短命或浅的。举例来说,有知觉哪一商业银行首先可能不搬进小额贷款因为时候建立小额贷款操作到一个有利润的水平超过银行的标准投资时间地平线。或,在进入小额贷款,银行之后可能移动在-上面藉由增加贷款数量销售取利润最大值-或者更坏的事,退出如果他们是不满意与小额贷款的收益性的水平。这些知觉已经被特性加燃料商业银行的情形进入小额贷款和后来的出口之内。在最极端的,一些开业者已经甚至宣布,”降低尺度死!”而且抛弃了与主意合作的商业银行。 在最 signific 看得到的地方,蚂蚁利益商业银行可能带给小额贷款,国际的ACCION 发展发射而且扩张的和一些商业银行的关系小额贷款操作。在这些情形的大部分方面, ACCION 和它的合伙人正在使用方法,已知的当做服务公司模型,表演早答应当做一个能工作的方法克服真正的。 商业银行的障碍进入和穿越建立长命的小额贷款操作一个商业银行 这论文描述如何服务公司模型、住址商业银行中的主要议题进入进小额贷款,监定成功建立的因素动作井小额贷款服务公司,和礼物结果和小额贷款的课servic e 公司用最长的经验,在海地和审判官席 del 的 SOGEBANK│ SOGESOL 初期结果指出那这服务公司模型表现一重要的突破在促成商业银行进入和留在小额贷款。在厄瓜多尔的 Pichincha│ CREDIFE。初期结果指出服务公司模型在促成商业广告中表现一次重要的突破银行进入而且留在小额贷款。

毕设英文翻译英文版

72页 Machine Tools Objectived. Machine tools are the main engines of the manufacturing industry. This chapter covers a few of the details that are common to all classes of machine tools discussed in this book. After completing the chapter, the reader will be able to >understand the classification of the various machine tools used in manufacturing industries. >identify the differences between generating and forming of surfaces. > identify various methods used to generate different types of surfaces. >distinguish between the different accuracies and surface finishes that are achievable with different machine tools. >understand the different components of the machine tools and their functions. >learn about the different support structures used in the machine tools. >understand the various actuation systems that are useful to generate the required surfaces. >Learn the different types of guideways used in the machine tools. >understand the work holding requirements. 3.1 INTRODUCTION The earliest known machine tools are the Egyptian foot-operated lathes.

毕业设计外文翻译

毕业设计(论文) 外文翻译 题目西安市水源工程中的 水电站设计 专业水利水电工程 班级 学生 指导教师 2016年

研究钢弧形闸门的动态稳定性 牛志国 河海大学水利水电工程学院,中国南京,邮编210098 nzg_197901@https://www.360docs.net/doc/fe12100664.html,,niuzhiguo@https://www.360docs.net/doc/fe12100664.html, 李同春 河海大学水利水电工程学院,中国南京,邮编210098 ltchhu@https://www.360docs.net/doc/fe12100664.html, 摘要 由于钢弧形闸门的结构特征和弹力,调查对参数共振的弧形闸门的臂一直是研究领域的热点话题弧形弧形闸门的动力稳定性。在这个论文中,简化空间框架作为分析模型,根据弹性体薄壁结构的扰动方程和梁单元模型和薄壁结构的梁单元模型,动态不稳定区域的弧形闸门可以通过有限元的方法,应用有限元的方法计算动态不稳定性的主要区域的弧形弧形闸门工作。此外,结合物理和数值模型,对识别新方法的参数共振钢弧形闸门提出了调查,本文不仅是重要的改进弧形闸门的参数振动的计算方法,但也为进一步研究弧形弧形闸门结构的动态稳定性打下了坚实的基础。 简介 低举升力,没有门槽,好流型,和操作方便等优点,使钢弧形闸门已经广泛应用于水工建筑物。弧形闸门的结构特点是液压完全作用于弧形闸门,通过门叶和主大梁,所以弧形闸门臂是主要的组件确保弧形闸门安全操作。如果周期性轴向载荷作用于手臂,手臂的不稳定是在一定条件下可能发生。调查指出:在弧形闸门的20次事故中,除了极特殊的破坏情况下,弧形闸门的破坏的原因是弧形闸门臂的不稳定;此外,明显的动态作用下发生破坏。例如:张山闸,位于中国的江苏省,包括36个弧形闸门。当一个弧形闸门打开放水时,门被破坏了,而其他弧形闸门则关闭,受到静态静水压力仍然是一样的,很明显,一个动态的加载是造成的弧形闸门破坏一个主要因素。因此弧形闸门臂的动态不稳定是造成弧形闸门(特别是低水头的弧形闸门)破坏的主要原是毫无疑问。

PLC毕业设计的外文文献(及翻译)

PLC technique discussion and future development Test Equipment-principles and Applications Princeton University .America Along with the development of the ages, the technique that is nowadays is also gradually perfect, the competition plays more strong; the operation that list depends the artificial has already can't satisfied with the current manufacturing industry foreground, also can't guarantee the request of the higher quantity and high new the image of the technique business enterprise. The people see in produce practice, automate brought the tremendous convenience and the product quantities for people up of assurance, also eased the personnel's labor strength, reduce the establishment on the personnel. The target control of the hard realization in many complicated production lines, whole and excellent turn, the best decision etc, well-trained operation work, technical personnel or expert, governor but can judge and operate easily, can acquire the satisfied result. The research target of the artificial intelligence makes use of the calculator exactly to carry out, imitate these intelligences behavior, moderating the work through person's brain and calculators, with the mode that person's machine combine, for resolve the very complicated problem to look for the best path. We come in sight of the control that links after the electric appliances in various situation, that is already the that time generation past, now of after use in the mold a perhaps simple equipments of grass-roots control that the electric appliances can do for the low level only; And the PLC emergence also became the epoch-making topic, adding the vivid software control through a very and stable hardware, making the automation head for the new high tide. The PLC biggest characteristics lie in: The electrical engineering teacher already no longer electric hardware up too many calculations of cost, as long as order the importation that the button switch or the importation of the sensors order to link the PLC up can solve problem, pass to output to order the conjunction

英文文献及中文翻译撰写格式

关于毕业设计说明书(论文)英文文献及中文翻译撰写格式 为提高我校毕业生毕业设计说明书(毕业论文)的撰写质量,做到毕业设计说明书(毕业论文)在内容和格式上的统一和规范,特规定如下: 一、装订顺序 论文(设计说明书)英文文献及中文翻译内容一般应由3个部分组成,严格按以下顺序装订。 1、封面 2、中文翻译 3、英文文献(原文) 二、书写格式要求 1、毕业设计(论文)英文文献及中文翻译分毕业设计说明书英文文献及中文翻译和毕业论文英文文献及中文翻译两种,所有出现相关字样之处请根据具体情况选择“毕业设计说明书” 或“毕业论文”字样。 2、毕业设计说明书(毕业论文)英文文献及中文翻译中的中文翻译用Word 软件编辑,英文文献用原文,一律打印在A4幅面白纸上,单面打印。 3、毕业设计说明书(毕业论文)英文文献及中文翻译的上边距:30mm;下边距:25mm;左边距:3Omm;右边距:2Omm;行间距1.5倍行距。 4、中文翻译页眉的文字为“中北大学2019届毕业设计说明书” 或“中北大学××××届毕业论文”,用小四号黑体字,页眉线的上边距为25mm;页脚的下边距为18mm。 5、中文翻译正文用小四号宋体,每章的大标题用小三号黑体,加粗,留出上下间距为:段前0.5行,段后0.5行;二级标题用小四号黑体,加粗;其余小标题用小四号黑体,不加粗。 6、文中的图、表、附注、公式一律采用阿拉伯数字分章编号。如图1.2,表2.3,附注3.2或式4.3。 7、图表应认真设计和绘制,不得徒手勾画。表格与插图中的文字一律用5号宋体。

每一插图和表格应有明确简短的图表名,图名置于图之下,表名置于表之上,图表号与图表名之间空一格。插图和表格应安排在正文中第一次提及该图表的文字的下方。当插图或表格不能安排在该页时,应安排在该页的下一页。 图表居中放置,表尽量采用三线表。每个表应尽量放在一页内,如有困难,要加“续表X.X”字样,并有标题栏。 图、表中若有附注时,附注各项的序号一律用阿拉伯数字加圆括号顺序排,如:注①。附注写在图、表的下方。 文中公式的编号用圆括号括起写在右边行末顶格,其间不加虚线。 8、文中所用的物理量和单位及符号一律采用国家标准,可参见国家标准《量和单位》(GB3100~3102-93)。 9、文中章节编号可参照《中华人民共和国国家标准文献著录总则》。

毕设外文翻译

英文翻译 题目: 通过分析变压器中溶解气体而进行故障诊断的专家系统 姓名: 宋日成 学院: 工学院 专业: 自动化 班级: 自动化112 班学号: 32211218 指导教师: 陆静职称: 讲师 2015年3月14日 南京农业大学教务处制

An Expert System for Transformer Fault Diagnosis Using Dissolved Gas Analysis W. S. Chan ·Y. L. Xu ·X. L. Ding ·W. J. Dai Received: 9 November 2005 / Accepted: 11 August 2006 / Published online: 7 September 2006? Springer-Verlag 2006 Abstract In order to automate the transformer fault diagnosis, improve the accuracy of judgment, the introduction of artificial intelligence expert system fault diagnosis. The system is based on fuzzy reasoning confidence by observing the information, the use of knowledge to reach a conclusion. Test proved this method reduces the randomness of judgment, improved diagnosis. Keywords:Expert System Transformer Troubleshooting 1 Introduction The power transformer is a major apparatus in a power system, and its correct functioning is vital to system operations. In order to minimize system outages,many devices have evolved to monitor the serviceability of power transformers. These devices, such as, Buchholz relays or differential relays, respond only to a severe power failure requiring immediate removal of the transformer from service, in which case, outages are inevitable. Thus, preventive techniques for early detection faults to avoid outages would be valuable. In this way, analysis of the mixture of the faulty gases dissolved in insulation oil of power transformer has received worldwide recognition as an effective method for the detection of incipient faults. Many researchers and electrical utilities have reported on their experience and developed interpretative criteria on the basis of DGA. However, criteria tend to vary from utility to utility. Each approach has limitations and none of them has a firm mathematical description. Therefore, transformer diagnosis is still in the heuristic stage. For this reason, knowledge-based programming is a suitable approach to implement in such a diagnostic problem. Based on the interpretation of DGA, a prototype of an expert system for diagnosis of suspected transformer faults and their maintenance procedures is proposed. The significant source in this knowledge base is the gas ratio method. Some limitations of this approach are overcome by incorporating the diagnostic procedure and the synthetic expertise method. Furthermore, data bases adopted from TPCS gas records of transformers are incorporated into the expert system to increase the practical performance. Uncertainty of diagnosis is managed by using fuzzy set concepts. This expert system is constructed with rule based knowledge representation, since it can be expressed by experts. The expert system building tool, Knowledge Engineering System (KES), is used in the development of the knowledge system

英语专业翻译类论文参考文献

参考文献 一、翻译理论与实践相关书目 谢天振主编. 《当代国外翻译理论导读》. 天津:南开大学出版社,2008. Jeremy Munday. 《翻译学导论——理论与实践》Introducing Translation Studies---Theories and Applications. 李德凤等译. 北京:商务印书馆,2007. 包惠南、包昂. 《中国文化与汉英翻译》. 北京:外文出版社, 2004. 包惠南. 《文化语境与语言翻译》. 北京:中国对外翻译出版公司. 2001. 毕继万. 《世界文化史故事大系——英国卷》. 上海:上海外语教育出版社, 2003. 蔡基刚. 《英汉汉英段落翻译与实践》. 上海:复旦大学出版社, 2001. 蔡基刚. 《英汉写作对比研究》. 上海:复旦大学出版社, 2001. 蔡基刚. 《英语写作与抽象名词表达》. 上海:复旦大学出版社, 2003. 曹雪芹、高鄂. 《红楼梦》. 陈定安. 《英汉比较与翻译》. 北京:中国对外翻译出版公司, 1991. 陈福康. 《中国译学理论史稿》(修订本). 上海:上海外语教育出版社. 2000. 陈生保. 《英汉翻译津指》. 北京:中国对外翻译出版公司. 1998. 陈廷祐. 《英文汉译技巧》. 北京:外语教学与研究出版社. 2001. 陈望道. 《修辞学发凡》. 上海:上海教育出版社, 1979. 陈文伯. 《英汉翻译技法与练习》. 北京:世界知识出版社. 1998. 陈中绳、吴娟. 《英汉新词新义佳译》. 上海:上海翻译出版公司. 1990. 陈忠诚. 《词语翻译丛谈》. 北京:中国对外翻译出版公司, 1983. 程希岚. 《修辞学新编》. 吉林:吉林人民出版社, 1984. 程镇球. 《翻译论文集》. 北京:外语教学与研究出版社. 2002. 程镇球. 《翻译问题探索》. 北京:商务印书馆, 1980. 崔刚. 《广告英语》. 北京:北京理工大学出版社, 1993. 单其昌. 《汉英翻译技巧》. 北京:外语教学与研究出版社. 1990. 单其昌. 《汉英翻译讲评》. 北京:对外贸易教育出版社. 1989. 邓炎昌、刘润清. 《语言与文化——英汉语言文化对比》. 北京:外语教学与研究出版社, 1989. 丁树德. 《英汉汉英翻译教学综合指导》. 天津:天津大学出版社, 1996. 杜承南等,《中国当代翻译百论》. 重庆:重庆大学出版社, 1994. 《翻译通讯》编辑部. 《翻译研究论文集(1894-1948)》. 北京:外语教学与研究出版社. 1984. 《翻译通讯》编辑部. 《翻译研究论文集(1949-1983)》. 北京:外语教学与研究出版社. 1984. . 范勇主编. 《新编汉英翻译教程》. 天津:南开大学出版社. 2006. 方梦之、马秉义(编选). 《汉译英实践与技巧》. 北京:旅游教育出版社. 1996. 方梦之. 《英语汉译实践与技巧》. 天津:天津科技翻译出版公司. 1994. 方梦之主编. 《译学辞典》. 上海:上海外语教育出版社. 2004. 冯翠华. 《英语修辞大全》,北京:外语教学与研究出版社, 1995. 冯庆华. 《文体与翻译》. 上海:上海外语教育出版社, 2002. 冯庆华主编. 《文体翻译论》. 上海:上海外语教育出版社. 2002. 冯胜利. 《汉语的韵律、词法与句法》. 北京:北京大学出版社, 1997. 冯志杰. 《汉英科技翻译指要》. 北京:中国对外翻译出版公司. 1998. 耿占春. 《隐喻》. 北京:东方出版社, 1993.

相关文档
最新文档