ISA IND ETHRNT-2005 Industrial Ethernet - How to Plan Install and Maintain TCP IP Ethernet Networks The Basic Reference Guide for Automation and Process Control Engineers (Second E.pdf
《ISA IND ETHRNT-2005 Industrial Ethernet - How to Plan Install and Maintain TCP IP Ethernet Networks The Basic Reference Guide for Automation and Process Control Engineers (Second E.pdf》由会员分享,可在线阅读,更多相关《ISA IND ETHRNT-2005 Industrial Ethernet - How to Plan Install and Maintain TCP IP Ethernet Networks The Basic Reference Guide for Automation and Process Control Engineers (Second E.pdf(142页珍藏版)》请在麦多课文档分享上搜索。
1、Industrial Ethernet2nd EditionIndustrial Ethernet2nd EditionHow to Plan, Install, and Maintain TCP/IP Ethernet Networks: The Basic Reference Guide for Automation and Process Control EngineersBy Perry S. Marshalland John S. RinaldiCopyright 2005 ISAThe Instrumentation, Systems, and Automation Society
2、All rights reserved. Printed in the United States of America. 10 9 8 7 6 5 4 3ISBN 1-55617-892-1No part of this work may be reproduced, stored in a retrieval system, or transmitted inany form or by any means, electronic, mechanical, photocopying, recording or other-wise, without the prior written pe
3、rmission of the publisher.ISA67 Alexander DriveP.O. Box 12277Research Triangle Park, NC 27709www.isa.orgLibrary of Congress Cataloging-in-Publication DataNoticeThe information presented in this publication is for the general education of the reader. Because neither the author nor the publisher have
4、any control over the use of the information by the reader, both the author and the publisher disclaim any and all liability of any kind arising out of such use. The reader is expected to exercise sound professional judgment in using any of the information presented in a particular applica-tion.Addit
5、ionally, neither the author nor the publisher have investigated or considered the affect of any patents on the ability of the reader to use any of the information in a particular application. The reader is responsible for reviewing any possible patents that may affect any particular use of the infor
6、mation presented.Any references to commercial products in the work are cited as examples only. Nei-ther the author nor the publisher endorse any referenced commercial product. Any trademarks or tradenames referenced belong to the respective owner of the mark or name. Neither the author nor the publi
7、sher make any representation regarding the availability of any referenced commercial product at any time. The manufacturers instructions on use of any commercial product must be followed at all times, even if in conflict with the information in this publication.This book is dedicated to the Master E
8、ngineer, whose works inspire and challenge all designers. His creations are beautiful, adaptable, robust, and supremely equipped for their purpose.TABLE OF CONTENTS viiTable of ContentsAbout the Authors .ixChapter 1.0 What Is Industrial Ethernet?11.1 Introduction11.2 A Very, Very Short History of Et
9、hernet and TCP/IP .3Chapter 2.0 A Brief Tutorial on Digital Communication52.1 Digital Communication Terminology.62.2 Whats the Difference Between a Protocoland a Network? .92.3 Basic Topologies .112.4 Arbitration Mechanisms.152.5 LAN vs. WAN vs. VPN 15Chapter 3.0 Ethernet Hardware Basics.173.1 Ether
10、net Terminology 173.2 Ethernet Hardware LEDs263.3 Physical/Embedded Components: MAC, PHY, and Magnetics .273.4 Auto-Negotiation283.5 Network Collisions and Arbitration: An Analogy 303.6 How the CSMA/CD Protocol Works .313.7 The Basic “Ethernet Design Rules”333.8 “Would Somebody Please Explain This 7
11、-Layer Networking Model?” .333.9 Connectors363.10 Pinouts.38Chapter 4.0 Ethernet Protocol 0s are rep-resented by an upward swing from V-to V+. There is ALWAYS a transition, regardless of the actual bit sequence. Advantage: The receiver and transmitter clocks are always synchronized. Disadvan-tage: T
12、his scheme uses twice as many transitions as bits.RZ (Return to Zero): The signal state is determined by the voltage during the first half of each bit, and the signal returns to a resting state (“zero”) during the second half of each bit.NRZ (Non Return to Zero): This is simply a direct, intuitive,
13、“1 = high, 0 = low” designation with no further coding.MLT-3: A three-level algorithm (i.e., high, zero, and low voltages) that changes levels only when a 1 occurs. Not self-clocking.Differential Manchester: Bit value is determined by the presence or absence of a transition at the beginning of a bit
14、 interval; clocking is provided via a mid-interval transition.8 A BRIEF TUTORIAL ON DIGITAL COMMUNICATION4B/5B (4 bit/5 bit): Every four bits is represented as a 5-bit code that never has more than three 0s in a row. This prevents long sequences of 0s or 1s with only a 25% penalty in bandwidth, in c
15、ontrast to the 100% penalty of Manchester.Signaling TypesThe rubber meets the road in an Industrial Ethernet Network when the data from a device is transferred to the communication media. The pro-cess of transferring data to the wire is called signaling and there are two basic types: baseband and br
16、oadband.Baseband signaling is digital. The 1s and 0s of a message are transmit-ted over the media as a sequence of voltage pulses. If you remember the old time westerns, the clerk in the telegraph office would tap out a tele-gram using digital signaling. The major limitation to digital signaling is
17、that only a single message can be transmitted at a time. If there are two clerks in that telegraph office, the second clerk must wait for the first clerk to finish before sending the next message. A second limitation is that the digital voltages are easily attenuated as the distance increases. Commu
18、nication over very large distances requires repeaters and is almost impractical due to the number of repeaters required. Broadband signaling doesnt have this restriction. Broadband signaling uses analog carrier to transport data. Multiple carriers each containing data is analogous to a cable-TV syst
19、em. The cable carries many televi-sion programs all on the same wire; all at the same time. You select a different carrier and a different data stream (a television program) by switching from Channel 9 to Channel 10. BASEBAND BROADBANDDigital Signaling Analog SignalingLimited Distance Long Distances
20、Bus-Oriented Applications such as RS-232 and Controller Area Net-working (CAN)Used for both Bus and Tree Topolo-gies such as Token Ring and Ether-netBi-directional Uni-directionalSingle Message Oriented Multiple carrier signals with multi-ple independent data streamsOften uses Manchester Encoding No
21、 Encoding of digital signalsA BRIEF TUTORIAL ON DIGITAL COMMUNICATION 9Error DetectionThe simplest mode of error detection is “echoing back” the message just sent. However this consumes double bandwidth. Plus if theres an error, its impossible to tell whether it was the original or the copy that was
22、 corrupted.ChecksumThe checksum calculation is effective for small amounts of data. An algo-rithm converts the data to bits that are appended to the data and trans-mitted. The receiver does the same calculation on the same data, if its own result does not match the original checksum, a retransmit re
23、quest is submitted. For a single byte of data, a 1-bit checksum (parity bit) is suf-ficient.Cyclic Redundancy CheckLong messages require a more sophisticated, more accurate detection method. Cyclic Redundancy Check (CRC) views the entire message block as a binary number, which it divides by a specia
24、l polynomial. The result is a remainder, appended to the message just like a checksum. CRC cal-culation is performed in real time by logic gates at the hardware level.Not only are the above mechanisms employed in hardware, they are also employed in higher-level protocols. TCP/IP employs its own erro
- 1.请仔细阅读文档,确保文档完整性,对于不预览、不比对内容而直接下载带来的问题本站不予受理。
- 2.下载的文档,不会出现我们的网址水印。
- 3、该文档所得收入(下载+内容+预览)归上传者、原创作者;如果您是本文档原作者,请点此认领!既往收益都归您。
下载文档到电脑,查找使用更方便
10000 积分 0人已下载
下载 | 加入VIP,交流精品资源 |
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- ISAINDETHRNT2005INDUSTRIALETHERNETHOWTOPLANINSTALLANDMAINTAINTCPIPETHERNETNETWORKSTHEBASICREFERENCEGUIDEFORAUTOMATIONANDPROCESSCONTROLENGINEERSSECONDEPDF

链接地址:http://www.mydoc123.com/p-789879.html