机械外文翻译文献翻译--使用LabVIEW中的TCPIP和UDP协议

中文3078字

使用LabVIEW中的TCP/IP和UDP协议

前言

互联网络协议(IP),用户数据报协议(UDP)和传输控制协议(TCP)是网络通信的基本的工具。TCP与IP的名称来自于一组最著名的因特网协议中的两个--传输控制协议和互联网络协议。

你能使用TCP/IP来进行单一网络或者互连网络间的通信。单独的网络会被大的地理距离分隔。TCP/IP把数据从一个子网网络或者因特网连接的计算机发送到另一个上。因为TCP/IP 在大多数计算机上是可用的,它能在多样化的系统中间传送信息。

LabVIEW和TCP/IP

你能在所有平台上的LabVIEW中使用TCP/IP。LabVIEW包含了TCP和UDP程序还有能让你建立客户端或者服务器程序的功能。

IP

IP执行低层次的计算机间的数据传送。在组成部分里的IP数据包称为数据报。一个数据报包含表明来源和目的地地址的数据和报头字。IP为通过网络或者因特网把数据发送到指定的目的地的数据报确定正确的路径。

IP协议并不能保证发送。事实上,如果数据报在传输中被复制,IP可能多次传送一个单独的数据报。所以,程序很少用IP而是用TCP或者UDP代替。

UDP

UDP在计算机进程中提供简单而低层次的通信。进程通过把数据报发送到一个目的地计算机或者端口进行通信。一个端口是你发送数据的位置。IP处理计算机对计算机的发送。在数据报到达目的地计算机后,UDP把数据报移动到其目的端口。如果目的端口不是开放的,UDP 将删除数据报。UDP将发生IP的同样的发送问题。

应用程序的UDP的可靠性不强。例如,一项应用程序能经常把大量信息的数据传送到目的

地而丢失少量的数据是肯定的。

在LabVIEW中使用UDP协议

因为UDP不是一个TCP似的一个以连接为基础的协议,在你发送或者收到数据之前,你不需要和目的地建立一种连接。相反,当你每发送一个数据报时,由你指定数据目的地。操作系统不会报告传输差错

使用UDP打开功能在一个端口上打开一个UDP插口。同时打开的UDP端口的数量仍依赖于操作系统。UDP的打开的功能返回到网络连接时唯一识别UDP套接字。使用这种连接在子VI程序中就是靠这个套接字。

用UDP编写功能发送数据到目的地,然后使用UDP阅读功能阅读那个数据。每写一个操作要求一个目的地地址和端口。每阅读一个操作包含来源地址和端口。UDP保存你所发送的每一个命令所指定的数据报字节。

在理论上,你能发送任何大小的数据报。然而,你最好不使用UDP来发送大的数据报,因为它不像TCP一样可靠。

当你在一个端口上结束所有通信时,使用UDP结束功能去释放系统资源。

UDP多路广播

你能使用UDP的功能来与一个单独的客户端通信或者通过广播对于所有局域网上的计算机通信。如果你想要传送成倍增加具体的计算机信息,你必须通过客户端列表构建UDP功能反复执行。因为LabVIEW能把数据的作为一个单独的拷贝发送到每个客户端并且保存对收到数据感兴趣的客户端列表,所以运用这种技术建立完全相同的网络交换。

使用多路广播可以在网络上的进行单个的发送端和多倍的客户端之间的通信而不需要保存客户列表或者要求发送端把数据多重拷贝后发送给每个客户端。为了通过多路广播收到数据广播,所有客户端必须加入一个多路广播组。而发送端不需要加入该组。发送端只需规定一个多路广播的IP地址来定义这个多路广播组。多路广播的IP地址范围在224.0.0.0到239.255.255.255中。当一个客户端想要加入一个多路广播组时,它只需预定这个组的多路广播的IP地址。在客户端预定到一个多路广播组之后,客户端收到从多路广播的IP 地址发送的数据。

对于LabVIEW中的多路广播,使用UDP多路广播的打开程序有能力读、写或者读和写UDP 数据。规定TTL为写数据,多路广播地址为读数据,多路广播端口号为读写数据。默认TTL

是1,这意味着LabVIEW仅仅把数据报发送到本地的网络上。当一个发送方收到一个多路广播数据报时,它消耗数据报的生存时间。如果TTL大于1,发送方把数据报转发到其它数据报。下面的表格说明了当你规定一个TTL的值时,一个多路广播数据报的运行。

0 主机上还存留数据报

1 数据报发送到每个在同一本地网络上已预定那个IP地址的客户端。中枢/转发器和

桥路/开关转发数据报。发送方不转发数据报如果TTL为1。

如果你规定一个值大于1,数据报通过TTL-1层被发送,并且发送方转发它。

参阅在LabVIEW\例子\comm\UDP.llb中的UDP多路广播接受方程序和UDP多路广播发送方程序VI中使用UDP多路广播的例程。

TCP

TCP保证在网络中的可靠的通信,按顺序发送而没有差错,损失或者重发。TCP直到收到一个确认才转发。

系统要求

在使用TCP/IP之前,确认你有必需的要求,这变化依赖于你使用的平台。

(Windows和UNIX系统)TCP/IP。你不需要使用第三种产品连接使用TCP/IP。如果你的网络适当地被构成,LabVIEW没有要求附加的设置。

(Mac OS系统) LabVIEW网络要求打开传送,包括Mac OS 7.5和更新的版本。

在LabVIEW中使用TCP

TCP是一个以连接为基础的协议,这意味着站点必须在传送数据之前建立一种连接。TCP许可多重、同时的连接。

你可以通过等待一种输入的连接或者通过积极地寻求一种与指定的地址连接建立连接。在建立TCP连接时,你必须指定一个地址和该地址的端口。端口范围在0到65,535点之间。UNIX系统为特殊的应用程序保留端口数少于1,024。在一个给定的地址中不同的端口能识别不同的服务。

使用TCP的打开连接功能来与一个指定地址进行积极的连接。如果连接成功,功能返回网络连接的返回数唯一识别那个连接。使用这种连接refnum来访问子VI程序。

你能使用如下技术来等输入连接:

用TCP听程序创建立一个听者并且在一个指定的端口等待一种可接受的TCP连接。如果连接成功,VI程序返回连接数,地址和远程TCP客户端口。

TCP创建听者功创建一个听者然后用TCP的听者功能上等待的一个听者接受新的连接。

在听者功能上的TCP等待返回你所发送的功能和返回数的同样的听者ID。当你结束等候新的连接时,用TCP关闭连接功能区关闭一个听者。你不能对一个听者进行读写。用第二种技术的优势是你能使用TCP关闭连接功能来取消听操作,这在你想要为了一种连接听而没有超时,但是你想要取消当另一个条件变真时的听时是很有用的。你能在任何时间关闭听程序。

当你建立一种连接时,用TCP读功能和TCP写功能能在远程应用中队数据进行读写。

用TCP关闭连接功能区关闭远程连接。如果没被读的仍保留着而关闭连接,你可能失去数据。当关闭连接时,在你的计算机上使用较高层次协议。在连接被关闭后,你不能再读写它。

TCP和UDP之间的区别

在你想要可靠的数据传输时,TCP是最好的协议。UDP是高性能的无需连接的协议,但是它不保证可靠性。

建立TCP客户端

注意:请参考最近的版本LabVIEW帮助功能对这些指令和功能的细节描述。

完成如下步骤使用TCP功能建立一个TCP顾客。

1.用TCP的打开连接功能来打开一个服务器的连接。你必须规定服务器的因特网地址和服

务器的端口。

地址在网络上识别计算机。远程端口在服务器使用听的计算机上识别一个通信通道。当你建立一个TCP服务器时,你要规定你想要服务器为通信使用的端口。

2.用TCP的写功能把信息发送到服务器上。

3.用TCP的读功能来读发自服务器的信息。你必须规定你想读的字节数。

4.用TCP的关闭功能来关闭与服务器的连接。

请参阅labview\examples\comm\TCP.llb中对单一数据客户端的TCP例程。

超时和差错

当你设计一种网络应用时,应细心考虑失败是如何发生的。例如,如果服务器被毁,确定如何使每个客户VI程序掌控它。

一种解决方式是确保每个客户VI程序有超时功能。如果发生没能在一定量的时间之后生产结果,客户端继续执行。在继续时,客户端能试图重建连接或者报告出错。如果必要的话,客户端VI程序能关闭应用程序。

建立TCP服务器

注意:请参考最近的版本LabVIEW帮助功能对这些指令和功能的细节描述。

完全如下步骤用TCP功能来建立一个TCP服务器。

1.使用TCP听程序等待连接。你必须规定端口。这个端口必须是客户端试图访问的同一个

端口。

2.如果连接被建立,用TCP读功能从接受到信息的端口读信息。

3.用TCP写功能返回结果。数据必须是一种客户端能接受的形式。

4.用TCP关连接功能来关闭连接。

请参阅labview\examples\comm\TCP.llb中对单一数据客户端的TCP例程。

TCP和UDP例子

请参阅labview\examples\comm\TCP.llb和labview\examples\comm\UDP.llb中用TCP和UDP的VI程序和功能。

Application Note 160 Using LabVIEW? with TCP/IP and UDP Introduction

Internet Protocol (IP), User Datagram Protocol (UDP), and Transmission Control Protocol (TCP) are basic tools for network communication. The name TCP/IP comes from two of the best-known protocols of the Internet protocol suite, the Transmission Control Protocol and the Internet Protocol.

You can use TCP/IP to communicate over single networks or interconnected networks. The individual networks can be separated by large geographical distances. TCP/IP routes data from one network or Internet-connected computer to another. Because TCP/IP is available on most computers, it can transfer information among diverse systems.

LabVIEW and TCP/IP

You can use the TCP/IP protocols with LabVIEW on all platforms. LabVIEW includes TCP and UDP VIs and functions you can use to create client or server VIs.

IP

IP performs the low-level service of moving data between computers. IP packages data into components called datagrams.

A datagram contains the data and a header that indicates the source and destination addresses. IP determines the correct path for the datagram to take across the network or Internet and sends the data to the specified destination.

IP cannot guarantee delivery. In fact, IP might deliver a single datagram more than once if the datagram is duplicated in transmission. Programs rarely use IP but use TCP or UDP instead.

UDP

UDP provides simple, low-level communication among processes on computers. Processes communicate by sending datagrams to a destination computer or port. A port is the location where you send data. IP handles the

computer-to-computer delivery. After the datagram reaches the destination computer, UDP moves the datagram to its destination port. If the destination port is not open, UDP discards the datagram. UDP shares the same delivery problems of IP.

Use UDP in applications in which reliability is not critical. For example, an application might transmit informative data to a destination frequently enough that a few lost segments of data are not problematic.

LabVIEW?, National Instruments?, and https://www.360docs.net/doc/4014817435.html,? are trademarks of National Instruments Corporation. Product and company names mentioned herein are trademarks or trade names of their respective companies. For patents covering National Instruments products, refer to the appropriate location: Help?Patents in your software, the

patents.txt file on your CD, or https://www.360docs.net/doc/4014817435.html,/patents.

342028C-01 ? 2000–2004 National Instruments Corporation. All rights reserved. March 2004

Using UDP in LabVIEW

Because UDP is not a connection-based protocol such as TCP, you do not need to establish a connection with a destination before you send or receive data. Instead, you specify the destination for the data when you send each datagram. Operating systems do not report transmission errors.

Use the UDP Open function to open a UDP socket on a port. The number of simultaneously open UDP ports depends

on the operating system. The UDP Open function returns a network connection refnum that uniquely identifies the

UDP socket. Use this connection refnum to refer to this socket in subsequent VI calls.

Use the UDP Write function to send data to a destination, and use the UDP Read function to read that data. Each write operation requires a destination address and port. Each read operation contains the source address and port. UDP preserves the datagram bytes that you specified for each command you send.

In theory, you can send datagrams of any size. However, you typically would not use UDP to send large datagrams because it is not as reliable as TCP.

When you finish all communications on a port, use the UDP Close function to free system resources.

UDP Multicast

You can use the UDP functions to communicate to a single client (single-cast) or to all computers on the subnet through

a broadcast. If you want to communicate to multiple specific computers, you must configure the UDP functions to iterate through a list of clients. Using this technique creates duplicate network traffic because LabVIEW sends a separate copy of the data to each client and maintains a list of clients interested in receiving the data.

Use multicasting to communicate between a single sender and multiple clients on a network without requiring the sender to maintain a list of clients or send multiple copies of the data to each client. To receive data broadcast by a multicast sender, all clients must join a multicast group. The sender does not have to join a group to send data. The sender specifies a multicast IP address, which defines a multicast group. Multicast IP addresses are in the 224.0.0.0

to 239.255.255.255 range. When a client wants to join a multicast group, it subscribes to the multicast IP address

of the group. After subscribing to a multicast group, the client receives data sent to the multicast IP address.

To multicast in LabVIEW, use the UDP Multicast Open VI to open connections capable of reading, writing, or reading and writing UDP data. Specify the time-to-live (TTL) for writing data, the multicast address for reading data, and the multicast port number for reading and writing data. The default TTL is 1, which means LabVIEW sends the datagram only to the local subnet. When a router receives a multicast datagram, it decrements the datagram TTL. If the TTL is greater than 1, the router forwards the datagram to other routers. The following table lists what action occurs to a multicast datagram when you specify a value for the time-to-live parameter.

Datagram remains on the host computer.

1 Datagram sent to every client on the same local subnet that subscribes to that IP address. Hubs/repeaters

and bridges/switches forward the datagram. Routers do not forward the datagram if the TTL is 1.

Application Note 160 2 https://www.360docs.net/doc/4014817435.html,

If you specify a value greater than 1, the datagram is sent and routers forward it through TTL-1 layers.

Refer to the UDP Multicast Receiver VI and the UDP Multicast Sender VI in the labview\examples\comm\UDP.llb for examples of using UDP multicasting.

TCP

TCP ensures reliable transmission across networks, delivering data in sequence without errors, loss, or duplication.

TCP retransmits the datagram until it receives an acknowledgment.

System Requirements

Before using TCP/IP, confirm that you have the necessary requirements, which vary depending on the platform you use.

(Windows and UNIX) TCP/IP is built in. You do not need to use a third-party product to communicate using TCP/IP.

If your network is configured properly, LabVIEW requires no additional setup.

(Mac OS) LabVIEW networking requires Open Transport, included in Mac OS 7.5 and later.

Using TCP in LabVIEW

TCP is a connection-based protocol, which means that sites must establish a connection before transferring data. TCP permits multiple, simultaneous connections.

You initiate a connection by waiting for an incoming connection or by actively seeking a connection with a specified address. In establishing TCP connections, you have to specify the address and a port at that address. A number between 0 and 65,535 represents a port. UNIX reserves port numbers less than 1,024 for privileged applications. Different ports at a given address identify different services at that address.

Use the TCP Open Connection function to actively establish a connection with a specific address and port. If the connection is successful, the function returns a network connection refnum that uniquely identifies that connection.

Use this connection refnum to refer to the connection in subsequent VI calls.

You can use the following techniques to wait for an incoming connection:

Use the TCP Listen VI to create a listener and wait for an accepted TCP connection at a specified port. If the

connection is successful, the VI returns a connection refnum, the address, and the port of the remote TCP client.

Use the TCP Create Listener function to create a listener and use the TCP Wait on Listener function to listen for and accept new connections. The TCP Wait on Listener function returns the same listener ID you wired to the function and the connection refnum for a connection. When you finish waiting for new connections, use the TCP Close Connection function to close a listener. You cannot read from or write to a listener.

The advantage of using the second technique is that you can use the TCP Close Connection function to cancel a listen operation, which is useful when you want to listen for a connection without using a timeout, but you want to cancel the listen when another condition becomes true. You can close the listen VI at any time.

When you establish a connection, use the TCP Read function and the TCP Write function to read and write data to the remote application.

Use the TCP Close Connection function to close the connection to the remote application. If unread data remains and the connection closes, you might lose data. Use a higher level protocol for your computer to determine when to close the connection. After a connection is closed, you cannot read from it or write to it again.

? National Instruments Corporation 3 Application Note 160

Deciding between TCP and UDP

TCP is the best protocol to use if you want reliable data transmission. UDP is a connectionless protocol with higher performance, but it does not ensure reliable data transmission.

机械专业中英文文献翻译

Creating a TCP Client

Note Refer to the LabVIEW Help for the most recent version of these instructions and details for each of the

functions.

Complete the following steps to create a TCP client using the TCP functions.

1. Use the TCP Open Connection function to open a connection to a server. Y ou must specify the Internet address of

the server and the port for the server.

The address identifies a computer on the network. The remote port identifies a communication channel on the computer that the server uses to listen for communication requests. When you create a TCP server, you specify the port that you want the server to use for communication.

2. Use the TCP Write function to send a message to a server.

3. Use the TCP Read function to read a message from the server. Y ou must specify the number of bytes you want to

read.

4. Use the TCP Close Connection function to close the connection to the server.

Refer to the Simple Data Client VI in the labview\examples\comm\TCP.llb for an example of a TCP client. Timeouts and Errors

When you design a network application, consider carefully what should happen if something fails. For example, if the server crashes, determine how each client VI handles it.

One solution is to make sure that each client VI has a timeout. If something fails to produce results after a certain amount of time, the client continues execution. In continuing, the client can try to reestablish the connection or report the error. If necessary, the client VI can shut down the application.

Creating a TCP Server

Note Refer to the LabVIEW Help for the most recent version of these instructions and details for each of the

functions.

Complete the following steps to create a TCP server using the TCP functions.

1. Use the TCP Listen VI to wait for a connection. You must specify the port. This port must be the same port that the

client attempts to access.

2. If a connection is established, use the TCP Read function to read from that port to retrieve a message.

3.

Use the TCP Write function to return results. The data must be in a form that the client can accept. 4. Use the

TCP Close Connection function to close the connection.

Refer to the Simple Data Server VI in the labview\examples\comm\TCP.llb for an example of a TCP server. TCP and UDP Examples

Refer to the labview\examples\comm\TCP.llb and the labview\examples\comm\UDP.llb for examples of using the TCP and UDP VIs and functions.

外文翻译---虚拟仪器(LabVIEW)

虚拟仪器(LabVIEW) 虚拟仪器是一种高效用于构建数据采集与监测系统图形化编程语言。使用虚拟仪器,您快速创建用户界面,让您交互控制您的软件系统。要指定您系统的功能,您只需装配块关系图—一种自然的设计表示科学家和工程师。测量硬件紧密集成方便了数据采集、分析与演示文稿解决方案的快速发展。虚拟仪器包含强大的内置度量分析和一个图形的编辑器实现最佳性能。虚拟仪器是使用于Windows 2000/NT/Me/9x、Mac OS、Linux、Sun Solaris 和HP-UX,有三种不同的开发系统选项。 更快地发展 虚拟仪器通过加快发展了对传统的编程提升了4至10倍!使用模块化和层次结构的虚拟仪器,可以原型,设计,并且在一个短时间内修改系统。您也可以重用虚拟仪器代码轻松快速地在其他应用程序中应用。 更好的投资 使用虚拟仪器系统,每个用户有权访问单一的商业文书的成本低于一个完整的检测实验室。此外,用户还可配置的虚拟仪器系统足够的灵活性,从而更好地长期投资的技术变化与适应。 优化性能 虚拟仪器的所有应用程序执行以获得最佳性能的编译速度。用虚拟仪器专业开发系统或应用程序生成器,可为您的代码的安全通讯生成独立可执行文件或dll。您甚至可以创建共享的库或从其他编程语言中调用虚拟仪器代码的dll。 开放的开发环境 用虚拟仪器在开放开发环境,您可以连接到通过ActiveX、Web、dll、共享的库、SQL (数据库)、DataSocket、TCP/IP和许多其他协议的其他应用程序。虚拟仪器用于快速创建网络的测量和Web发布和远程数据共享最新的科技集成的自动化系统。虚拟仪器也可以用于插件数据采集、信号调理、GPIB、VXI、PXI、基于计算机的仪器、串行协议、图像采集和运动控制的驱动程序。除了在虚拟仪器的开发系统国家仪器还提供多种附加模块和扩展功能的虚拟仪器的工具集。这使您可以快速构建可定制、鲁棒的测量和自动化系统。 虚拟仪器数据记录和监督控制模块 高通道数的分布式应用程序日志记录的虚拟仪器数据和监督控制模块,提供了一个完整的解决方案。此模块提供了I/O管理、事件日志和警报管理、分布式日志记录、历史和实时趋势分析、内置安全、网络功能,可配置、OPC设备的连接和超过3,300内置图形。 实时虚拟仪器 对于需要实时性能的应用国家仪器,提供了实时虚拟仪器。虚拟仪器从Windows运行独立的实时操作系统实时下载标准虚拟仪器代码到专用的硬件目标。 虚拟仪器视觉开发模块 虚拟仪器视觉开发模块是为科学家、自动化的工程师和技术人员正在开发虚拟机器视觉和科学的图像处理应用程序。虚拟仪器视觉开发模块包括IMAQ视觉,视觉的函数库和IMAQ 视觉一起工作来简化视觉软件开发,以便您可以应用视觉测量和自动化应用程序。 广泛的应用 在很多行业全球包括汽车、电讯、航空航天、半导体、电子设计和生产、过程控制生物医学,以及许多其他实现虚拟仪器的应用程序。应用程序覆盖产品从设计到生产和服务的研究开发的所有阶段。利用虚拟仪器在整个组织您可以节省时间和金钱的共享信息和软件。 测试与测量

人工智能专业外文翻译-机器人

译文资料: 机器人 首先我介绍一下机器人产生的背景,机器人技术的发展,它应该说是一个科学技术发展共同的一个综合性的结果,同时,为社会经济发展产生了一个重大影响的一门科学技术,它的发展归功于在第二次世界大战中各国加强了经济的投入,就加强了本国的经济的发展。另一方面它也是生产力发展的需求的必然结果,也是人类自身发展的必然结果,那么随着人类的发展,人们在不断探讨自然过程中,在认识和改造自然过程中,需要能够解放人的一种奴隶。那么这种奴隶就是代替人们去能够从事复杂和繁重的体力劳动,实现人们对不可达世界的认识和改造,这也是人们在科技发展过程中的一个客观需要。 机器人有三个发展阶段,那么也就是说,我们习惯于把机器人分成三类,一种是第一代机器人,那么也叫示教再现型机器人,它是通过一个计算机,来控制一个多自由度的一个机械,通过示教存储程序和信息,工作时把信息读取出来,然后发出指令,这样的话机器人可以重复的根据人当时示教的结果,再现出这种动作,比方说汽车的点焊机器人,它只要把这个点焊的过程示教完以后,它总是重复这样一种工作,它对于外界的环境没有感知,这个力操作力的大小,这个工件存在不存在,焊的好与坏,它并不知道,那么实际上这种从第一代机器人,也就存在它这种缺陷,因此,在20世纪70年代后期,人们开始研究第二代机器人,叫带感觉的机器人,这种带感觉的机器人是类似人在某种功能的感觉,比如说力觉、触觉、滑觉、视觉、听觉和人进行相类比,有了各种各样的感觉,比方说在机器人抓一个物体的时候,它实际上力的大小能感觉出来,它能够通过视觉,能够去感受和识别它的形状、大小、颜色。抓一个鸡蛋,它能通过一个触觉,知道它的力的大小和滑动的情况。第三代机器人,也是我们机器人学中一个理想的所追求的最高级的阶段,叫智能机器人,那么只要告诉它做什么,不用告诉它怎么去做,它就能完成运动,感知思维和人机通讯的这种功能和机能,那么这个目前的发展还是相对的只是在局部有这种智能的概念和含义,但真正完整意义的这种智能机器人实际上并没有存在,而只是随着我们不断的科学技术的发展,智能的概念越来越丰富,它内涵越来越宽。 下面我简单介绍一下我国机器人发展的基本概况。由于我们国家存在很多其

ZigBee技术外文翻译

ZigBee:无线技术,低功耗传感器网络 加里莱格 美国东部时间2004年5月6日上午12:00 技师(工程师)们在发掘无线传感器的潜在应用方面从未感到任何困难。例如,在家庭安全系统方面,无线传感器相对于有线传感器更易安装。而在有线传感器的装置通常占无线传感器安装的费用80%的工业环境方面同样正确(适用)。而且相比于有线传感器的不切实际甚至是不肯能而言,无线传感器更具应用性。虽然,无线传感器需要消耗更多能量,也就是说所需电池的数量会随之增加或改变过于频繁。再加上对无线传感器由空气传送的数据可靠性的怀疑论,所以无线传感器看起来并不是那么吸引人。 一个低功率无线技术被称为ZigBee,它是无线传感器方程重写,但是。一个安全的网络技术,对最近通过的IEEE 802.15.4无线标准(图1)的顶部游戏机,ZigBee的承诺,把无线传感器的一切从工厂自动化系统到家庭安全系统,消费电子产品。与802.15.4的合作下,ZigBee提供具有电池寿命可比普通小型电池的长几年。ZigBee设备预计也便宜,有人估计销售价格最终不到3美元每节点,。由于价格低,他们应该是一个自然适应于在光线如无线交换机,无线自动调温器,烟雾探测器和家用产品。 (图1)

虽然还没有正式的规范的ZigBee存在(由ZigBee联盟是一个贸易集团,批准应该在今年年底),但ZigBee的前景似乎一片光明。技术研究公司 In-Stat/MDR在它所谓的“谨慎进取”的预测中预测,802.15.4节点和芯片销售将从今天基本上为零,增加到2010年的165万台。不是所有这些单位都将与ZigBee结合,但大多数可能会。世界研究公司预测的到2010年射频模块无线传感器出货量4.65亿美量,其中77%是ZigBee的相关。 从某种意义上说,ZigBee的光明前途在很大程度上是由于其较低的数据速率20 kbps到250 kbps的,用于取决于频段频率(图2),比标称1 Mbps的蓝牙和54的802.11g Mbps的Wi - Fi的技术。但ZigBee的不能发送电子邮件和大型文件,如Wi - Fi功能,或文件和音频,蓝牙一样。对于发送传感器的读数,这是典型的数万字节数,高带宽是没有必要,ZigBee的低带宽有助于它实现其目标和鲁棒性的低功耗,低成本。 由于ZigBee应用的是低带宽要求,ZigBee节点大部分时间可以睡眠模式,从而节省电池电源,然后醒来,快速发送数据,回去睡眠模式。而且,由于ZigBee 可以从睡眠模式过渡到15毫秒或更少主动模式下,即使是睡眠节点也可以达到适当的低延迟。有人扳动支持ZigBee的无线光开关,例如,将不会是一个唤醒延迟知道前灯亮起。与此相反,支持蓝牙唤醒延迟通常大约三秒钟。 一个ZigBee的功耗节省很大一部分来自802.15.4无线电技术,它本身是为低功耗设计的。 802.15.4采用DSSS(直接序列扩频)技术,例如,因为(跳频扩频)另类医疗及社会科学院将在保持一样使用它的频率过大的权力同步。 ZigBee节点,使用802.15.4,是几个不同的沟通方式之一,然而,某些方面比别人拥有更多的使用权力。因此,ZigBee的用户不一定能够实现传感器网络上的任何方式选择和他们仍然期望多年的电池寿命是ZigBee的标志。事实

中英文文献翻译-加工中心数控技术

加工中心数控技术 出处:数控加工中心的分类以及各自特点 出版社:化学工业出版社; 第1版 (2009年3月16日) 作者:徐衡、段晓旭 加工中心是典型的集高技术于一体的机械加工设备,它的发展代表了一个国家设计制造的水平也大大提高了劳动生产率,降低了劳动成本,改善了工人的工作环境,降低了工人的劳动强度。本文经过对不同运动方案和各部件的设计方案的定性分析比较确定该教立式加工中心的进给传动方案为:采用固定床身,电主轴通过安装座安装在床身导轨的滑座上,床身导轨采用滚动导轨,可以实现Y 方向的进给运动。由X-Y双向精密数控工作台带动工件完成X,Y两个方向的进给运动;X,Y,Z三个方向的进给运动均滚珠丝杠,并由交流伺服电机驱动。导轨、滚珠丝杠有相应的润滑、防护等装置。 加工中心(英文缩写为CNC 全称为Computerized Numerical Control):是带有刀库和自动换刀装置的一种高度自动化的多功能数控机床。在中国香港,台湾及广东一代也有很多人叫它电脑锣。 工件在加工中心上经一次装夹后,数字控制系统能控制机床按不同工序,自动选择和更换刀具,自动改变机床主轴转速、进给量和刀具相对工件的运动轨迹及其他辅助机能,依次完成工件几个面上多工序的加工。并且有多种换刀或选刀功能,从而使生产效率大大提高。 加工中心数控机床是一种装有计算机数字控制系统的机床,数控系统能够处理加工程序,控制机床完成各种动作。与普通机床相比,数控机床能够完成平面曲线和空间曲面的加工,加工精度和生产效率都比较高,因而应用日益广泛。 数控机床的组成 一般来说,数控机床由机械部分、数字控制计算机、伺服系统、PC控制部分、液压气压传动系统、冷却润滑和排泄装置组成。数控机床是由程序控制的,零件的编程工作是数控机床加工的重要组成部分。伺服系统是数控机床的驱动部分,计算机输出的控制命令是通过伺服系统产生坐标移动的。普通的立式加工中心有三个伺服电机,分别驱动纵向工作台、横向工作台、主轴箱沿X向、Y向、Z向运动。X、Y、Z是互相垂直的坐标轴,因而当机床三坐标联动时可以加工空

机械手机械设计中英文对照外文翻译文献

(文档含英文原文和中文翻译) 中英文对照翻译 机械设计 摘要: 机器由机械和其他元件组成的用来转换和传输能量的装置。比如:发动机、涡轮机、车、起重机、印刷机、洗衣机和摄影机。许多机械方面设计的原则和方法也同样适用于非机械方面。术语中的“构造设计”的含义比“机

械设计”更加广泛,构造设计包括机械设计。在进行运动分析和结构设计时要把产品的维护和外形也考虑在机械设计中。在机械工程领域中,以及其它工程领域,都需要机械设备,比如:开关、凸轮、阀门、船舶以及搅拌机等。关键词:设计流程设计规则机械设计 设计流程 设计开始之前就要想到机器的实用性,现有的机器需要在耐用性、效率、重量、速度,或者成本上得到改善。新的机器必需能够完全或部分代替以前人的功能,比如计算、装配、维修。 在设计的初级阶段,应该充分发挥设计人员的创意,不要受到任何约束。即使有一些不切实际的想法,也可以在设计的早期,即在绘制图纸之前被改正掉。只有这样,才不致于阻断创新的思路。通常,必须提出几套设计方案,然后进行比较。很有可能在这个计划最后指定使用某些不在计划方案内的一些想法的计划。 一般当产品的外型和组件的尺寸特点已经显现出来的时候,就可以进行全面的设计和分析。接着还要客观的分析机器性能、安全、重量、耐用性,并且成本也要考虑在内。每一个至关重要的部分要优化它的比例和尺寸,同时也要保持与其它组成部分的平衡。 选择原材料和工艺的方法。通过力学原理来分析和实现这些重要的特性,如稳定和反应的能量和摩擦力的利用,动力惯性、加速度、能量;包括材料的弹性强度、应力和刚度等物理特性,以及流体的润滑和驱动器的流体力学。设计的过程是一个反复与合作的过程,无论是正式的还是非正式的,对设计者来说每个阶段都很重要。。产品设计需要大量的研究和提升。许多的想法,必须通过努力去研究成为一种理念,然后去使用或放弃。虽然每个工

机械毕业设计英文外文翻译247基于制动试验台的虚拟仪器与变频技术

附录 VIRTUAL INSTRUMENT AND FREQUENCY CONVERSION TECHNOLOGY-BASED BRAKE TEST SYSTEM Brake is widely useful and very important safety assuring equipment. The aim of Brake test system,which is based on visual instrument and frequency changing technology,is to integrative measure and analyze the performance and quality of the brake.This paper mainly introduces the principle,composing,function and features of the brake test system. And from the point of view of the principle of Visual Instrument (VI)technology,a test system,based on the VI and frequency changing technologies and consist of frequency changing drive and control sub-system and measuring sub-one,is constructed. With the test system the performances and braking course could be auto controlled and measured to the brakes which includes disc and drum ones. And the measuring and control software is programmed with the LabVIEW published by American NI Corporation,USA.Then data real time acquisition,processing,displaying and recording will be realized. The test system also has the functions of voltage adjusting,rotating speed control,load regulating,JC value setting,temperature - 1 -

文献综述_人工智能

人工智能的形成及其发展现状分析 冯海东 (长江大学管理学院荆州434023) 摘要:人工智能的历史并不久远,故将从人工智能的出现、形成、发展现 状及前景几个方面对其进行分析,总结其发展过程中所出现的问题,以及发展现状中的不足之处,分析其今后的发展方向。 关键词:人工智能,发展过程,现状分析,前景。 一.引言 人工智能最早是在1936年被英国的科学家图灵提出,并不为多数人所认知。 当时,他编写了一个下象棋的程序,这就是最早期的人工智能的应用。也有著名的“图灵测试”,这也是最初判断是否是人工智能的方案,因此,图灵被尊称为“人工智能之父”。人工智能从产生到发展经历了一个起伏跌宕的过程,直到目前为止,人工智能的应用技术也不是很成熟,而且存在相当的缺陷。 通过搜集的资料,将详细的介绍人工智能这个领域的具体情况,剖析其面临的挑战和未来的前景。 二.人工智能的发展历程 1. 1956年前的孕育期 (1) 从公元前伟大的哲学家亚里斯多德(Aristotle)到16世纪英国哲学家培根(F. Bacon),他们提出的形式逻辑的三段论、归纳法以及“知识就是力量”的警句,都对人类思维过程的研究产生了重要影响。 (2)17世纪德国数学家莱布尼兹(G..Leibniz)提出了万能符号和推理计算思想,为数理逻辑的产生和发展奠定了基础,播下了现代机器思维设计思想的种子。而19世纪的英国逻辑学家布尔(G. Boole)创立的布尔代数,实现了用符号语言描述人类思维活动的基本推理法则。 (3) 20世纪30年代迅速发展的数学逻辑和关于计算的新思想,使人们在计算机出现之前,就建立了计算与智能关系的概念。被誉为人工智能之父的英国天才的数学家图灵(A. Tur-ing)在1936年提出了一种理想计算机的数学模型,即图灵机之后,1946年就由美国数学家莫克利(J. Mauchly)和埃柯特(J. Echert)研制出了世界上第一台数字计算机,它为人工智能的研究奠定了不可缺少的物质基础。1950年图灵又发表了“计算机与智能”的论文,提出了著名的“图灵测试”,形象地指出什么是人工智能以及机器具有智能的标准,对人工智能的发展产生了极其深远的影响。 (4) 1934年美国神经生理学家麦克洛奇(W. McCulloch) 和匹兹(W. Pitts )建立了第一个神经网络模型,为以后的人工神经网络研究奠定了基础。 2. 1956年至1969年的诞生发育期 (1)1956年夏季,麻省理工学院(MIT)的麦卡锡(J.McCarthy)、明斯基(M. Minshy)、塞尔夫里奇(O. Selfridge)与索罗门夫(R. Solomonff)、 IBM的洛

信息技术英文缩写与解释

AVI 影音文件Audio Video Interleaved 声音图象交叉存取。AVI是一种微软媒体文件格式,类似于MPEG和QuickTime。在AVI中,声音和图象是交叉的存取在一个文件中的每个段的。 ADSL 非对称数字用户线路 非对称数字用户线路。这种DSL叫做非对称DSL,将成为广大家庭和小型商业客户最熟悉的一种DSL。ADSL之所以叫做非对称是因为它的两个双工通道都用来向用户传输数据。仅有很小一部分带宽用来回送用户的信息。然而,大部Internet 特别是富于图形和多媒体Web 数据需要很大的下传带宽,同时用户信息相对比较少,上传的带宽也不要很大。使用ADSL时,下传的速率可以达到6.1 Mbps,而上传速率也可以达到640 Kbps。高的下传速率意味着您的电话可以传输动画,声音和立体图形。另外,一小部分的带宽可以用来传输语音信号,您可以同时打电话而不用再使用第二条电话线。不象电视线路提供的相同的服务,使用ADSL,您不需要和您的邻居争用带宽。有时候,现有的电话线可以使用ADSL,而有时候却要升级,除非电话公司提供了无分离器的ADSL,您就必须安装一个DSL调制解调器。 ASP (Application Services Provider) 应用服务提供商 是指配置、租赁、管理应用解决方案,它是随着外包趋势、软件应用服务和相关业务的发展而逐渐形成的。ASP具有三大特点:首先,ASP向用户提供的服务应用系统本身的所有权属ASP,用户租用服务之后对应用系统拥有使用权;并且,应用系统被集中放置在ASP的IDC(Internet数据服务中心)中,具有充足的带宽、电力和空间保证以及具有专业质量的系统维护服务;ASP定期向用户收取服务费。应用服务提供商将以全新的方式推动应用服务产业的巨大发展。ATM (Asynchronous Transmission Mode) 异步传输模式 这是为满足宽带综合业务数据通信,在分组交换技术的基础上迅速发展起来的通信新技术。可以实现语音、数据、图像、视频等信号的高速传输。 AI (Artificial Intelligent) 人工智能 是计算机科学的一门研究领域。它试图赋予计算机以人类智慧的某些特点,用计算机来模拟人的推理、记忆、学习、创造等智能特征,主要方法是依靠有关知识进行逻辑推理,特别是利用经验性知识对不完全确定的事实进行的精确性推理。 AD 网上广告 指一则按规定象素尺寸或字节数设定的标语或图像,通常是以动画表现的。 Baseband 基带 在该方式中,电压脉冲直接加到电缆,并且使用电缆的整个信号频率范围。基带与宽带传输相比较,宽带传输中,来自多条信道的无线信号调制到不同的“载波”频率上,带宽被划分为不同信道,每信道上的频率范围一定。LocalTalk及以太网都是基带网络,一次仅传输一个信号,电缆上信号电平的改变表示数字值0或者1。使用电缆的整个带宽建立起两个系统间的通信对话,然后两个系统轮流传送。在此期间,共享电缆的其它系统不能传送。基带传输系统中的直流信号往往由于电阻、电容等因素而衰减。另外马达、荧光灯等电子设备产生的外部电磁干扰也会加快信号的衰减。传输率越高,信号就越容易被衰减。为此,以太网等建网标准规定了网络电缆类型、电缆屏蔽、电缆距离、传输率以及在大部分环境中提供相对无差错服务的有关细节。 BBS (Bulletin Board System) 电子公告板 这是因特网提供的一种信息服务,为用户提供一个公用环境,以使寄存函件,读取通告,参与讨论和交流信息。Bluetooth 蓝牙(一种无线通信的标准) 蓝牙技术涉及一系列软硬件技术、方法和理论,包括:无线通信与网络技术,软件工程、软件可靠性理论,协议的正确性验证、形式化描述和一致性与互联测试技术,嵌入式实时操作系统(Embedded RTOS),跨平台开发和用户界面图形化技术,软/硬件接口技术(如RS232,UART,USB等),高集成、低功耗芯片技术等。蓝牙的目标是要提供一种通用的无线接口标准,用微波取代传统网络中错综复杂的电缆,在蓝牙设备间实现方便快捷、灵活安全、低成本低功耗的数据和话音通信。因此,其载频选用在全球都可用的2.45GHz ISM(工业、科学、医学)频带。 CA (Certificate Authority)认证中心 是在线交易的监督者和担保人,主要进行电子证书管理、电子贸易伙伴关系建立和确认、密钥管理、为支付系统中的各参与方提供身份认证等。CA类似于现实生活中公证人的角色,具有权威性,是一个普遍可信的第三方。

机械类数控车床外文翻译外文文献英文文献车床.doc

Lathes Lathes are machine tools designed primarily to do turning, facing and boring, Very little turning is done on other types of machine tools, and none can do it with equal facility. Because lathes also can do drilling and reaming, their versatility permits several operations to be done with a single setup of the work piece. Consequently, more lathes of various types are used in manufacturing than any other machine tool. The essential components of a lathe are the bed, headstock assembly, tailstock assembly, and the leads crew and feed rod. The bed is the backbone of a lathe. It usually is made of well normalized or aged gray or nodular cast iron and provides s heavy, rigid frame on which all the other basic components are mounted. Two sets of parallel, longitudinal ways, inner and outer, are contained on the bed, usually on the upper side. Some makers use an inverted V-shape for all four ways, whereas others utilize one inverted V and one flat way in one or both sets, They are precision-machined to assure accuracy of alignment. On most modern lathes the way are surface-hardened to resist wear and abrasion, but precaution should be taken in operating a lathe to assure that the ways are not damaged. Any inaccuracy in them usually means that the accuracy of the entire lathe is destroyed. The headstock is mounted in a foxed position on the inner ways, usually at the left end of the bed. It provides a powered means of rotating the word at various speeds . Essentially, it consists of a hollow spindle, mounted in accurate bearings, and a set of transmission gears-similar to a truck transmission—through which the spindle can be rotated at a number of speeds. Most lathes provide from 8 to 18 speeds, usually in a geometric ratio, and on modern lathes all the speeds can be obtained merely by moving from two to four levers. An increasing trend is to provide a continuously variable speed range through electrical or mechanical drives. Because the accuracy of a lathe is greatly dependent on the spindle, it is of heavy construction and mounted in heavy bearings, usually preloaded tapered roller or ball types. The spindle has a hole extending through its length, through which long bar stock can be fed. The size of maximum size of bar stock that can be machined when the material must be fed through spindle. The tailsticd assembly consists, essentially, of three parts. A lower casting fits on the inner ways of the bed and can slide longitudinally thereon, with a means for clamping the entire assembly in any desired location, An upper casting fits on the lower one and can be moved transversely upon it, on some type of keyed ways, to permit aligning the assembly is the tailstock quill. This is a hollow steel cylinder, usually about 51 to 76mm(2to 3 inches) in diameter, that can be moved several inches longitudinally in and out of the upper casting by means of a hand wheel and screw. The size of a lathe is designated by two dimensions. The first is known as the swing. This is the maximum diameter of work that can be rotated on a lathe. It is approximately twice the distance between the line connecting the lathe centers and the nearest point on the ways, The second size dimension is the maximum distance between centers. The swing thus indicates the maximum work piece diameter that can be turned in the lathe, while the distance between centers indicates the maximum length of work piece that can be mounted between centers. Engine lathes are the type most frequently used in manufacturing. They are heavy-duty machine tools with all the components described previously and have power drive for all tool movements except on the compound rest. They commonly range in size from 305 to 610 mm(12 to 24 inches)swing and from 610 to 1219 mm(24 to 48 inches) center distances, but swings up to 1270 mm(50 inches) and center distances up

机械专业外文翻译(中英文翻译)

外文翻译 英文原文 Belt Conveying Systems Development of driving system Among the methods of material conveying employed,belt conveyors play a very important part in the reliable carrying of material over long distances at competitive cost.Conveyor systems have become larger and more complex and drive systems have also been going through a process of evolution and will continue to do so.Nowadays,bigger belts require more power and have brought the need for larger individual drives as well as multiple drives such as 3 drives of 750 kW for one belt(this is the case for the conveyor drives in Chengzhuang Mine).The ability to control drive acceleration torque is critical to belt conveyors’performance.An efficient drive system should be able to provide smooth,soft starts while maintaining belt tensions within the specified safe limits.For load sharing on multiple drives.torque and speed control are also important considerations in the drive system’s design. Due to the advances in conveyor drive control technology,at present many more reliable.Cost-effective and performance-driven conveyor drive systems covering a wide range of power are available for customers’ choices[1]. 1 Analysis on conveyor drive technologies 1.1 Direct drives Full-voltage starters.With a full-voltage starter design,the conveyor head shaft is direct-coupled to the motor through the gear drive.Direct full-voltage starters are adequate for relatively low-power, simple-profile conveyors.With direct fu11-voltage starters.no control is provided for various conveyor loads and.depending on the ratio between fu11-and no-1oad power requirements,empty starting times can be three or four times faster than full load.The maintenance-free starting system is simple,low-cost and very reliable.However, they cannot control starting torque and maximum stall torque;therefore.they are

毕设外文翻译

外文资料译文 基于LabVIEW的变速箱故障诊断系统 摘要 这篇论文主要介绍了变速箱的实施过程和设计原理的故障诊断系统,利用虚拟仪器发展中的software-LabVIEW来实现系统的核心设计,通过小波变换和神经网络,通过例子最终验证了该系统的可行性。 1.介绍 作为一个复杂的齿轮机械系统,变速箱有许多特征参数----固定驱动比,大的驱动力矩和紧凑结构。因此,它通常用来改变转速和转换功率。与此同时,它是一个容易流失的组件,在过去,Matlab软件编程是为了诊断这样的设备的错误,来分析和处理故障诊断信号,其中的错误位置和故障类型是人工判断的。这种方法会给变速箱的故障诊断带来人为因素。这种方法带有局限性,它不容易识别或者是搞清变速箱的故障。 随着计算机技术和机器故障诊断技术的发展,我们提出了一种新思路---基于计算机智能检测的变速箱故障诊断系统,为了提高变速箱故障诊断测量的准确度,快速性,便捷性,和可靠性。该系统利用小波变换从振动信号中提取参数特点,利用神经网络来得出结论。这也同时凸显出原检验方法的弱点,分类智能化变速箱的诊断失误。 本文将简要介绍LabVIEW软件尤其是介绍LabVIEW软件的主要问题和情景结构,该系统发展并实现了基于计算机智能检验的变速箱故障诊断系统。 2.总结虚拟仪器的软件开发 虚拟仪器LabVIEW(实验室)是一种发展工程工作台的工作包,虚拟仪器是一种基于G程序(图形语言)由NI(国家仪器公司)一家美国公司提供的。关于LabVIEW的虚拟仪器的设计能逃避LabVIEW环境。LabVIEW能够模仿传统仪器上的控制面板,并给出了显示结果,同时还可以以各种形式的计算机显示器显示。它拥有强大功能的计算器,可以实现信号数据的操作,分析和处理。此外,它可以完成收集、测量和调节信号I/O接口,从而完成各种测试功能。在世界上,LabVIEW产品广泛应用与众多领域,例如航空、航天、

论文《人工智能》---文献检索结课作业

人工智能 【摘要】:人工智能是一门极富挑战性的科学,但也是一门边沿学科。它属于自然科学和社会科学的交叉。涉及的学科主要有哲学、认知科学、数学、神经生理学、心理学、计算机科学、信息论、控制论、不定性论、仿生学等。人工智能(Artificial Intelligence),英文缩写为AI。它是研究、开发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门新的技术科学。人工智能是计算机科学的一个分支,它企图了解智能的实质,并生产出一种新的能以人类智能相似的方式做出反应的智能机器,该领域的研究包括机器人、语言识别、图像识别、自然语言处理和专家系统等1。 【关键词】:人工智能;应用领域;发展方向;人工检索。 1.人工智能描述 人工智能(Artificial Intelligence) ,英文缩写为AI。它是研究、开发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门新的技术科学2。人工智能是计 算机科学的一个分支,它企图了解智 能的实质,并生产出一种新的能以人 类智能相似的方式作出反应的智能 机器,该领域的研究包括机器人、语 言识别、图像识别、自然语言处理和 专家系统等。“人工智能”一词最初 是在1956 年Dartmouth学会上提出 的。从那以后,研究者们发展了众多 理论和原理,人工智能的概念也随之扩展。人工智能是一门极富挑战性的科学,从事这项工作的人必须懂得计算机知识,心理学和哲学。人工智能是包括十分广泛的科学,它由不同的领域组成,如机器学习,计算机视觉等等,总的说来,人工智能研究的一个主要目标是使机器能够胜任一些通常需要人类智能才能完成的复杂工作。但不同的时代、不同的人对这种“复杂工作”的理解是不同的。例如繁重的科学和工程计算本来是要人脑来承担的,现在计算机不但能完成这种计算, 而且能够比人脑做得更快、更准确,因之当代人已不再把这种计算看作是“需要人类智能才能完成的复 1.蔡自兴,徐光祐.人工智能及其应用.北京:清华大学出版社,2010 2元慧·议当人工智能的应用领域与发展状态〖J〗.2008

通信工程外文翻译---一点多址扩频通信系统的应用

【附录】 英文文献 The Application of one point Multiple Access Spread Spectrum Communication System Liu Jiangang, Nanyang City, HenanProvince Electric Power Industry Bureau 【ABSTRACT】Spread Spectrum Digital Microwave communication as a communication, because their excellent performance have been widely used. The article in Nanyang City Power Industry Bureau one point Multiple Access Spread Spectrum Communication System as an example.briefed the spread spectrum communications, the basic concept and characteristics of the power system communication applications .KEYWORDS:one point multiple access; Spread-spectrum communication; Attenuation Nanyang City in the outskirts of Central cloth 35 to 11 kv substation farm terminals, their operation management rights belong to the Council East, Rural Power Company west (the eastern suburb of agricultural management companies -- four, the western suburbs of Rural Power Company Management 7), Scheduling of the various stations of the means of communication to the original M-150 radio and telephone posts. 2002 With the transformation of rural network, the remote station equipment into operation and communication channels to put a higher demand .As PUC Dispatch Communication Building to the east and west of farmers -- the difference between a company linked to fiber, Therefore, if 11 substations and the establishment of a transfer Link Building links Point may be the data and voice were sent to two rural power companies dispatch room, Rural Network scheduling for the implementation of automation to create the necessary conditions. Given the status and power grid substation level, nature, taking into account the carrier and optical-fiber communications to conduct multiple forwarding, increasing the instability factor, considering the cost and conditions of the urban construction, Finally decided to adopt wireless spread-spectrum technology to establish that 11

相关文档
最新文档