An Integrated System for Command and Control of Cooperative Robotic Systems

合集下载

PT7C4337中文资料

PT7C4337中文资料
(Year/Month/Date/Day) counter functions (BCD code) • Programmable square wave output signal • Two Time-of-Day Alarms • Oscillator Stop Flag • Operating range: 1.8V to 5.5V
Time Counter .............................................................................................................................................................................. 9 Days of the week Counter ......................................................................................................................................................... 10 Calendar Counter ...................................................................................................................................................................... 10 Alarm Register .......................................................................................................................................................................... 11 Alarm Function ........................................................................................................................................................................... 12 I2C Bus Interface............................................................................................................................................................................. 14 Overview of I2C-BUS .................................................................................................................................................................. 14 System Configuration ................................................................................................................................................................. 14 Starting and Stopping I2C Bus Communications ..................................................................................................................... 15 Slave Address .............................................................................................................................................................................. 17 Maximum Ratings........................................................................................................................................................................... 19 Recommended Operating Conditions ........................................................................................................................................... 19 DC Electrical Characteristics......................................................................................................................................................... 20 AC Electrical Characteristics......................................................................................................................................................... 21 Mechanical Information ................................................................................................................................................................. 22

jfugue简介

jfugue简介

1Getting Started with JFugue JFugue makes programming music easy. This chapter explains how to set upand get started with JFugue.Downloading JFugueDownloading JFugue is easy: go to and click on “Download”. Save the jfugue.jar file to your local system.Personal TipWhen I download third-party libraries, I place them into a foldercalled “C:\Java Libraries”, where I extract the library’scompressed files, including source files and JavaDoc. When Ineed to use the jar file in a specific project, I copy the jar file intomy project’s lib directory.Running a Test ProgramTo be sure you are able to use JFugue after you download it, compile and run the following test program.import org.jfugue.*;public class MyMusicApp{public static void main(String[] args){Player player = new Player();Pattern pattern = new Pattern("C D E F G A B");player.play(pattern);System.exit(0); // If using Java 1.4 or lower}}To compile and run this program from a command prompt, follow the following steps (if you’re using Eclipse, NetBeans, or another Java editor, you may jump ahead to the next section).Step 1. To compile this program, enter this command at the command prompt, replacing %JFUGUE_DIR% with the directory into which you have placed jfugue.jar:javac -classpath %JFUGUE_DIR%\jfugue.jar MyMusicApp.javaThis will compile MyMusicApp.java and generate a .class file.Step 2. To run the .class file, enter this line:java -cp %JFUGUE_DIR%\jfugue.jar;. MyMusicAppBe sure to copy this line exactly. The semicolon and period indicate where Java will find the MyMusicApp class – in the current (i.e., “.”) directory.Special Note for Mac UsersIf you’re using a Mac, replace the semicolon (;)with a colon (:).You might wonder why it's necessary to put System.exit(0); at the end of the test program. Prior to Java 5.0 (also known as 1.5), the Java MIDI classes open a number of threads, but they're not all closed properly when the song is done playing (see Java bug 4735740). This prevents the program from ending on its own, but it does not otherwise affect the execution of the program. Therefore, the System.exit(0); call is necessary to end the program when using versions of Java earlier than 5.0.Using JFugue from an Integrated Development EnvironmentIf you’re using an Integrated Devlopment Environment (IDE), like Eclipse or NetBeans, you’ll need to include the JFugue jar file into your project. If you’re using Eclipse (), go Project > Properties, select Java Build Path, select the Libraries tab, and click the “Add JARs…” or “Add External JARs…”button. Find jfugue.jar and add it to your project.Personal TipFor each of my projects, I create a lib directory, where I placethird-party jar files.To run the test program from Eclipse, right-click on the test program’s filename and select Run As…> Java Application.Deciding which version of JFugue to useThe latest version of JFugue is 4.0, and it is designed to work with Java 5.0 (a.k.a. Java 1.5) and later. A lot of MIDI bugs have been fixed in this version of Java . See /download.html for a link to the Java MIDI bugs fixed in Java 5.0.If you’re limited to an older version of Java, you can still use JFugue. JFugue version 2.1 works with Java versions 1.3 and 1.4. While JFugue 2.1 does not contain all of the latest features, you can still create music using most of the commonly used features of MusicStrings and Patterns. The JFugue download page at /download.html contains lists of changes between JFugue versions, so you can identify what features exist and do not exist in JFugue 2.1. Since JFugue 2.1 is no longer actively supported, the source files and JavaDoc are provided with the download.Using MIDI SoundbanksJFugue relies on Java’s MIDI capabilities to produce music. Java MIDI uses the Java Sound engine, which in turn uses a soundbank to generate sounds using the synthesizer. A soundbank is a collection of audio samples for each instrument that are played by the synthesizer. A variety of soundbanks provided by Sun Microsystems are available for free download; some of these may provide richer sounds than the default soundbank that is packaged with the Java Runtime Environment (JRE).In addition, there are third-party MIDI soundbanks that have incredibly rich sound. Many of these are available for purchase only. Try doing an online search for “midi sound bank” to see some examples.Author on a SoapboxMIDI is often ridiculed as producing dry, unemotional, dinkymusic – but in reality, MIDI is simply a format for communicatingmusical events between electronic musical instruments. Thelack of freely available, widespread, symphonic-qualitysoundbanks is what makes many developers think that MIDI isnot up to modern standards of music. Interestingly, this is abelief held more commonly by software developers thanmusicians. Fortunately, there are ways around this supposedlimitation, as you’ll see in the sections ahead.Downloading SoundbanksSoundbanks provided by Sun Microsystems can be downloaded from /products/java-media/sound/soundbanks.html. This page offers three soundbanks:Minimal (0.35 MB)This soundbank is packaged by default with Java SDK Standard Edition versions 1.2.2 and higher. It is the smallest soundbank available, and its sound samples are of slightly less quality than those found in the midsize soundbank.Midsize (1.09 MB)This soundbank shipped with Java2 versions 1.2 and 1.2.1.Deluxe (4.92 MB)This soundbank contains higher-quality sound samples.Installing the Java Media SoundbanksInstalling a soundbank is as simple as moving the file you’ve downloaded to the correct directory.First, download and unzip the soundbank you are interested in. You will see a file with a “.gm” extension.On Windows computers, move this file toC:\Program Files\JavaSoft\JRE\<version>\lib\audio. If there is no audio directory, create it. In addition, if you are using a Java SDK that you’ve downloaded, also copy the soundbank file to <jdk-install-dir>\jre\lib\audio.On Linux or Solaris machines, move the soundbank file to<install-dir>/jre/lib/audio. If the audio directory does not exist, create it.Java will automatically use the highest-quality soundbank available, so if there is an existing soundbank file in the audio directory, you don’t have to delete or rename it.After you have moved your soundbank to the correct directory, be sure to exit any running Java programs. When you start them up again, they will use the new soundbanks.In The Complete Guide to JFugue,this chapter continues with the following section:Using Gervill to Load SoundbanksWhen Sun Microsystems released Java under an open source license, there were some interesting implications related to closed-source, licensed libraries that were used by the JDK. One of these libraries is the audio synthesis library, which is proprietary and cannot be released as open source software. In addition, the current audio synthesis engine used in Java can only use GM soundbank files, which is an unpublished, proprietary format that is not used as commonly as some other soundbank formats, such as SoundFont from Creative Technology Ltd. or Downloadable Sounds (DLS) from the MIDI Manufacturers Association Incorporated.In response to this limitation, a project known as the Audio Synthesis Engine Project was started (see /projects/audio-engine) . The goal of this project is to create a new, open source version of Java’s MIDI synthesizer.Gervill is a software synthesizer created as a proposal for the Audio Synthesis Engine Project. It is open source, and is available at https://. It is also very easy to use; here are the steps to get Gervill working with your JFugue program (or any Java program that uses MIDI):Read more in The Complete Guide to JFugue /book.htmlDetailed Table of Contents ofThe Complete Guide to JFugue/book.htmlTable of Contents (7)Detailed Table of Contents (9)Forward (13)Getting Started with JFugue (15)Downloading JFugue (15)Running a Test Program (15)Using JFugue from an Integrated Development Environment (16)Deciding which version of JFugue to use (17)Using MIDI Soundbanks (17)Downloading Soundbanks (18)Installing the Java Media Soundbanks (18)Using Gervill to Load Soundbanks (19)Using the JFugue MusicString (21)Introducing the MusicString (21)Learning the Parts of the MusicString (22)Notes, Rests, and Chords (22)Sharps, Flats, and Naturals (23)Octave (23)Chords (24)Chord Inversions (25)Duration (26)Triplets and Other Tuplets (27)Ties (28)Attack and Decay Velocities (29)Notes played in Melody and Harmony (29)Measure (30)Key Signature (31)Instrument (31)Voice (34)MIDI Percussion Track (34)Layer (35)Tempo (36)Pitch Wheel (36)Channel Pressure (37)Polyphonic Pressure (37)Controller Events (37)Constants (40)Timing Information (41)MusicString Style (41)JFugue Elements: Using Objects instead of MusicStrings (42)Getting Assistance with Notes (45)Transcribing Sheet Music to JFugue MusicString (46)Working with Patterns (49)What is a Pattern? (49)Using Patterns as Musical Building Blocks (50)Using Patterns to Construct Music (51)Observing Changes to a Pattern with a PatternListener (53)Maintaining Properties within a Pattern (53)Loading and Saving Patterns (54)Transforming Patterns with PatternTransformer (55)PatternTransformers Included with with JFugue (56)How to Create a PatternTransformer (57)How to Use a PatternTransformer (59)PatternTransformers In Action (59)Using a ParserListener to Analyze a Pattern (60)Working with MIDI Patterns (62)The JFugue Player (63)Playing Music (63)Starting a Player with a Known Sequencer or Synthesizer (64)Pausing, Rewinding, and Forwarding the Player (64)The Streaming Player (65)How to Simulate a Pipe Organ (67)Throttling the Delivery of New Fragments (68)The Anticipator: Know Upcoming Events Before They Happen (68)Working with MIDI Files (71)Understanding MIDI Support in JFugue (71)Playing MIDI Files (72)Creating MIDI Files (72)Converting MIDI to JFugue MusicStrings (72)Using JFugue with MIDI Devices (75)Why Communicate with External Devices? (75)Setting Up Communication with External Devices (75)JFugue’s Device Classes (76)Using the Intelligent Device Resolver (76)Sending Music to a MIDI Device (77)Listening to Music from a MIDI Device (78)Troubleshooting Your Connections (79)Rhythms, Intervals, and Microtones (81)Rhythm (81)Interval Notation (85)Combining Rhythm and Interval Notation (86)Microtonal Music (88)The Architecture of JFugue (89)Parsers and ParserListeners (or Renderers) (89)JFugue Supports MusicXML (90)Recombine Parsers and Renderers Endlessly (90)Creating a New Parser (90)Creating a New Renderer (91)Ideas for New Parsers and Renderers (92)Working with MusicStringParser (92)Adding a new JFugue Element (92)Exploring JFugue’s “Extras” Package (97)FilePlayer (97)Midi2JFugue (98)JFugue by Example (99)The Quintessential Music Program (99)How to Save Music as a MIDI file (99)How to Load and Play a MIDI file (100)How to Save a Pattern (100)How to Load a Pattern (100)How to Load a MIDI file and convert it into a JFugue MusicString (101)How to Combine Patterns (101)How to Repeat a Pattern (101)How to Create an Anonymous ParserListener (101)How to Create Your Own Parser (102)How to Create Your Own Renderer (102)How to Connect a Parser to a Renderer (103)How to Parse MIDI and Render a MusicString (103)How to Parse a MusicString and Render MIDI (103)How to Create a Rhythm (103)How to Use Interval Notation (104)How to Combine Intervals and Rhythms (104)How to Use Microtone Notation (105)How to Send MIDI to an External Device (106)How to Send a Pattern to an External Device (106)How to Listen for Music from an External Device (106)How to Use JFugue with Loaded Soundbanks (107)Creative Applications with JFugue (109)JFugue Drum Circle (109)Lindenmayer System (L-System) Music (114)Conclusion (117)。

思科2900路由器密码恢复

思科2900路由器密码恢复
• Cisco 2900 Series Integrated Services Router (SR)
The information in this document was created from the devices in a specific lab environment. All of the devices used in this document started with a cleared (default) configuration. If your network is live, make sure that you understand the potential impact of any command.
Related Products
Refer to Password Recovery Procedures for information on how to recover passwords for related products.
Conventions
Refer to Cisco Technical Tips Conventions for more information on document conventions.
Introduction
This document describes how to recover the enable password and the enable secret passwords. These passwords protect access to privileged EXEC and configuration modes. The enable password password can be recovered, but the enable secret password is encrypted and must be replaced with a new password. Use the procedure described in this document in order to replace the enable secret password.

PT7C4337WE中文资料

PT7C4337WE中文资料

Crystal: 32.768kHz
Source
External input
1
Oscillator
Oscillator enable/disable
Oscillator fail detect
2
Time
Time display
12-hour 24-hour
Century bit
3
Alarm interrupt
Product Features
Product Description
• Using external 32.768kHz quartz crystal • Supports I2C-Bus's high speed mode (400 kHz) • Includes time (Hour/Minute/Second) and calendar
Control and status register........................................................................................................................................................... 7 Oscillator related bits .............................................................................................................................................................. 7 Square wave frequency selection bits ..................................................................................................................................... 7 Interrupt related bits ................................................................................................................................................................ 8

WMC weigh模块说明书

WMC weigh模块说明书

W M C W e i g h M o d u l e sSmall in Size High in PerformanceWMC Weigh Modules Highest precision Smallest dimensionsFastest weighing2The innovative WMC weigh module is the perfect combination of compact-ness and high accuracy. It exceeds the performance for such modules and enables new applications. Thus, METTLER TOLEDO is introducing a new character into the field of weighing technology.Make an Intelligent Movewith the Innovative WMC Weigh ModuleW M C W e i g h M o d u l e sThe compact WMC weigh module is ideal for precise and fast, au-tomated filling of vials, ampoules and syringes.At coating or etching processes the difference in material can be precisely determined due to the high absolute accuracymodule is innovative because it combines high accuracy with minimum construction space. Thus METTLER TOLEDO provides the prerequisites for completely new applications in instruments and machinery.An innovation clearly differenti-ates from known solutions, e.g. a novel combination of function and design. An innovation often triggers a chain of new developments. Ex-isting solutions are miniaturized or even result in previously unimagi-nable solutions. The WMC weigh3The completeness of components, density of tool shaped parts or the material quantities of encapsula-tions can be tested reliably within a minimum of construction space.The fast data transfer of up to 92 filtered weight values per sec-ond via RS232 or fieldbus com-munication to the controller allows for precise dosing of powders and liquids.The compact WMC weigh module easily finds space in the labora-tory machines. This allows for precise filling of tubes or on board calibration of pipettes and meter-ing pumps.4W M C W e i g h M o d u l esThe high-precision WMC weigh module is ultra compact and rugged by design. As such, it is suitable for semi- and fully-automatic processes, as well as for manual weighing, wherever space is at a premium.Designed for Automation Fast, Rugged, and ReliableWith their extensive parameter sets, WMC weigh modules can be configured so that they are optimized for virtually any applica-tion and environment. A computer based software for parameteriza-tion, diagnostics, and data backup makes getting started easy.The low mass of the force resto-ration device of the WMC weigh module protects against vibration. Thus enables very fast and ac-curate weighing with 92 filtered weight values sent via RS232 or Fieldbus to the control system.rately weigh several tens ofthousands of samples in an hour.Flexible and service friendly The number of weigh modules in an array has no limits. It can range from two to dozens of modules. The fact that such an array consists of independent modules it makes it easy to replace one when a repair or service is required.The small size enables to build arrays with a minimal pitch. This facilitates to place numerous weigh modules on a small space to form a compact array for parallel multi line filling or check weigh-ing. It speeds up the entire process if multiples of vials, ampoules, syringes, tablets or capsules are weighed in parallel on such an ar-ray within fractions of a second. With this allocation of weigh mod-ules it is even possible to accu-Configurable firmware Very fast weighing5C o u r t e s y A s y r i l6W M C W e i g h M o d u l e sTerminal with touchscreen keypad The optional terminal with mono-chrome display can serve as an operator interface for semi auto-matic applications.Versatile Use Easy to IntegrateWMC Models Readability Weighing RangeRepeatability at 5 g Repeatability at Full Range Order Number WMC25-SH 0.01 mg 21 g 0.012 mg 0.02 mg 11149000WMC15-SH 0.01 mg 11 g 0.012 mg 0.02 mg 11149009WMC24-SH0.1 mg21 g0.08 mg0.1 mg11149002Order NumberSWT Terminal : Touchscreen, monochrome display 11 121 057Interface Options and Accessories RS232C (second RS232C-interface)11132500PS/2: Connect commercial keyboards and barcode readers 1) 11132520BT (Bluetooth): For wireless control of up to 7 peripheral devices 1)11132530BT (Bluetooth): Wireless connection to a BT-P42 printer, a second BT-BLD display or PC 1)11132535Ethernet TCP/IP: For connecting to an Ethernet network11132515USB – RS232C-Converter111036911)Only with terminalExternal Communication Modules Profibus ® DP 42102809Profinet IO 42120859EtherNet/IP ™ 42102860DeviceNet ™42102810Mechanical AccessoriesTerminal holder for SWT terminal, including mounting screws.11121255Flexible layout and assembly The electronic unit can be installed separately from the weighing cell. The devices can be located up to 3m apart. A set for optional DIN rail mounting is supplied with themodule.7Dimensions WMCmm (inch)74.45 (2.93)Optional SWT Terminalmm (inch) Mettler-Toledo AGIndustrialCH-8606 Greifensee, Switzerland Phone +41 44 944 22 11Fax +41 44 944 30 60© 08/2011 Mettler-Toledo AG Printed in Switzerland MTSI 44098199It’s easy to set up communication between WMC weigh modules and Industrial computers or PLC systems. Thanks to program function blocks and engineering notes it takes very little time and effort to set up commu-nication via standardized interfaces.Fieldbus Module to communicate with weigh moduleAutomatic parameter detection and an integrated command set for the weigh module make it easy to put the METTLER TOLEDO Field-bus Modules for Profibus ® DP , DeviceNet ™, Ethernet/IP ™, orProfinet ® IO into operation. DIN rail assembly enables efficient installation.Flexible Communication Modular and CompatibleModular hardware concept for InterfacesVarious interface options (plug-in module) are available for the con-nection to Ethernet TCP/IP , PS2, Bluetooth converter or an additional RS232. The RS232 standard inter-face remains freely available at all times for service and configuration work./wmc。

机务专业英语

机务专业英语
稍等启动-- Standby for start
稍等推出-- Standby for pushback
在左(或右)方打手势--Hand signal on the left(or right)
aircraft crew, air crew 机组, 机务人员
pilot 驾驶员, 机长
POWER PLANT . . . . . . . . . . . . . . . . . . . . . . . . . . 71
ENGINE. . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
ENGINE FUEL AND CONTROL . . . . . . . . . . . . . . . . . . . . 73
WATER AND WASTE . . . . . . . . . . . . . . . . . . . . . . . . 38
AIRBORNE AUXILIARY POWER. . . . . . . . . . . . . . . . . . . . 49
STRUCTURE _________
main airport building, terminal building 机场主楼
emergency landing runway, forced landing runway 紧急着陆跑道
taxiway 滑行跑道
runway 跑道
omnirange radio beacon 全向式无线电航空信标
EQUIPMENT/FURNISHINGS . . . . . . . . . . . . . . . . . . . . . 25

克罗韦尔 1756 ControlLogix 集成运动技术 数据表

克罗韦尔 1756 ControlLogix 集成运动技术 数据表

Technical Data1756 ControlLogix Integrated Motion Modules SpecificationsSERCOS Motion Catalog Numbers 1756-M03SE, 1756-M08SE, 1756-M16SE, 1756-M08SEG Analog Motion Catalog Numbers 1756-M02AE, 1756-M02AS, 1756-HYD02The controller can control servo drives through these motion interfaces.Some servo drives are supported through communication interface modules. The controller can communicate with these servo drives over these networks.For more information, see the Motion Analyzer CD to size your motion application and to make final component selection. Download the software from /motion/software/analyzer.htmlTopicPage SERCOS Interface Modules 3Analog Motion Modules5ApplicationCatalog Number Rockwell Automation SERCOS interface drives1756-M16SE 1756-M08SE 1756-M03SESERCOS interface drives that are Extended Pack Profile compliant 1756-M08SEG Analog servo interface drives with quadrature feedback 1756-M02AE Analog hydraulic servo interface drives LDT feedback 1756-HYD02 Analog servo interface drives with SSI feedback1756-M02ASDrives (1)EtherNet/IP ControlNet DeviceNet Universal Remote I/O RS-232 Serial DH-4852098 Ultra3000 DeviceNet servo driveNo No Yes No No No 2098 Ultra5000 intelligent positioningNoNoYesNoYesNo(1)Each drive has different options you order for its supported communication networks. See the appropriate catalog or selection information for a drive to make sure you select the appropriate option when specifying a drive for a specific network.1756 ControlLogix Integrated Motion Modules SpecificationsImportant User InformationSolid state equipment has operational characteristics differing from those of electromechanical equipment. Safety Guidelines for the Application, Installation and Maintenance of Solid State Controls (publication SGI-1.1 available from your local Rockwell Automation sales office or online at /literature/) describes some important differences between solid state equipment and hard-wired electromechanical devices. Because of this difference, and also because of the wide variety of uses for solid state equipment, all persons responsible for applying this equipment must satisfy themselves that each intended application of this equipment is acceptable.In no event will Rockwell Automation, Inc. be responsible or liable for indirect or consequential damages resulting from the use or application of this equipment.The examples and diagrams in this manual are included solely for illustrative purposes. Because of the many variables and requirements associated with any particular installation, Rockwell Automation, Inc. cannot assume responsibility or liability for actual use based on the examples and diagrams.No patent liability is assumed by Rockwell Automation, Inc. with respect to use of information, circuits, equipment, or software described in this manual.Reproduction of the contents of this manual, in whole or in part, without written permission of Rockwell Automation, Inc., is prohibited.Throughout this manual, when necessary, we use notes to make you aware of safety considerations.Rockwell Automation, Rockwell Software, Allen-Bradley, TechConnect, ControlLogix, Kinetix, Ultra3000, and Ultra5000 are trademarks of Rockwell Automation, Inc.Trademarks not belonging to Rockwell Automation are property of their respective companies.WARNINGIdentifies information about practices or circumstances that can cause an explosion in a hazardous environment, which may lead to personal injury or death, property damage, or economic loss.IMPORTANTIdentifies information that is critical for successful application and understanding of the product.ATTENTIONIdentifies information about practices or circumstances that can lead to personal injury or death, property damage, or economic loss. Attentions help you identify a hazard, avoid a hazard, and recognize the consequenceSHOCK HAZARDLabels may be on or inside the equipment, for example, a drive or motor, to alert people that dangerous voltage maybe present.Labels may be on or inside the equipment, for example, a drive or motor, to alert people that surfaces may reach dangerous temperatures.1756 ControlLogix Integrated Motion Modules SpecificationsSERCOS Interface ModulesThe SERCOS interface modules use a single, digital fiber-optic link, which eliminates as many as 18 digital wires per axis. Detailed drive-statusinformation can be sent from drive to controller and from controller to drive.The SERCOS interface modules can connect to these servo drives:•2093 Kinetix 2000 multi-axis servo drive •2094 Kinetix 6000 multi-axis servo drive •2099 Kinetix 7000 high-power servo drive •2098 Ultra3000 SERCOS servo driveTechnical Specifications - 1756 SERCOS Interface ModulesAttribute1756-M03SE 1756-M08SE 1756-M16SE 1756-M08SEGNumber of drives, max 3 8168 (Extended Pack Profile compliant)SERCOS data rate4 Mbps 8 MbpsSERCOS cycle time @ 4 Mbps0.5 ms, up to 2 drives (1)1 ms, up to 4 drives 2 ms, up to 8 drives SERCOS cycle time @ 8 Mbps0.5 ms, up to 4 drives (1) 1 ms, up to 8 drives 2 ms, up to 16 drives Drive control modes Position, velocity, and torque Position onlyCurrent draw @ 5.1V DC 760 mA Current draw @ 24V DC 2.5 mA Power dissipation 5.0 W Slot width 1Module location Chassis-based, any slotChassis1756-A4, 1756-A7, 1756-A10, 1756-A13, 1756-A17Power supply, standard 1756-PA72/C, 1756-PA75/B, 1756-PB72/C, 1756-PB75/B, 1756-PC75/B, 1756-PH75/B Power supply, redundant 1756-PA75R, 1756-PB75R, 1756-PSCA2Plastic fiber-optic cables2090-SCEP xx -0 non-jacketed, chlorinated polyethylene 2090-SCVP xx -0 standard jacket, polyvinyl chloride 2090-SCNP xx -0 nylon jacketGlass fiber-optic cables 2090-SCVG xx -0 standard jacket, polyvinyl chloride Enclosure type ratingNone (open-style)(1)Kinetix 6000 drives let you use a 0.5 ms cycle time.Environmental Specifications - 1756 SERCOS Interface ModulesAttribute1756-M03SE, 1756-M08SE, 1756-M16SE, 1756-M08SEG Temperature, operatingIEC 60068-2-1 (Test Ad, Operating Cold),IEC 60068-2-2 (Test Bd, Operating Dry Heat),IEC 60068-2-14 (Test Nb, Operating Thermal Shock)0…60 °C (32…140 °F)Temperature, storageIEC 60068-2-1 (Test Ab, Unpackaged Nonoperating Cold),IEC 60068-2-2 (Test Bb, Unpackaged Nonoperating Dry Heat),IEC 60068-2-14 (Test Na, Unpackaged Nonoperating Thermal Shock) -40…85 °C (-40…185 °F)Relative humidityIEC 60068-2-30 (Test Db, Unpackaged Nonoperating Damp Heat)5…95% noncondensing1756 ControlLogix Integrated Motion Modules SpecificationsVibrationIEC 60068-2-6 (Test Fc, Operating)2 g @ 10…500 HzShock, operatingIEC 60068-2-27 (Test Ea, Unpackaged Shock)30 gShock, nonoperatingIEC 60068-2-27 (Test Ea, Unpackaged Shock)50 gEmissions CISPR 11: Group 1, Class AESD immunity IEC 61000-4-24 kV contact discharges 8 kV air dischargesRadiated RF immunity IEC 61000-4-310V/m with 1 kHz sine-wave 80% AM from 80... 2000 MHz 10V/m with 200 Hz 50% Pulse 100% AM @ 900 MHz10V/m with 200 Hz 50% Pulse 100% AM @ 1890 MHzEnvironmental Specifications - 1756 SERCOS Interface ModulesAttribute1756-M03SE, 1756-M08SE, 1756-M16SE, 1756-M08SEGCertifications - 1756 SERCOS Interface ModulesCertification(1)1756-M03SE, 1756-M08SE, 1756-M16SE, 1756-M08SEGc-UL-us UL Listed Industrial Control Equipment, certified for US and Canada. See UL File E65584.UL Listed for Class I, Division 2 Group A,B,C,D Hazardous Locations, certified for U.S. and Canada. See UL FileE194810.CE European Union 2004/108/IEC EMC Directive, compliant with:•EN 61326-1; Meas./Control/Lab., Industrial Requirements•EN 61000-6-2; Industrial Immunity•EN 61000-6-4; Industrial EmissionsEN 61131-2; Programmable Controllers (Clause 8, Zone A & B)C-Tick Australian Radiocommunications Act, compliant with:AS/NZS CISPR 11; Industrial Emissions(1)When marked. See the Product Certification link at for Declarations of Conformity, Certificates, and other certification details.1756 ControlLogix Integrated Motion Modules SpecificationsAnalog Motion ModulesThe ControlLogix family of analog servo modules is a cost effective option for closed-loop or open-loop motion control of devices that support an analogmotion interface. The analog servo modules provide a ±10V analogoutput-command reference and support a variety of position feedback devices. As many as two axes can be controlled per module, and multiple modules can be used to provide as many as 32 axes of control per ControlLogix controller.Technical Specifications - 1756 Analog Motion ModulesAttribute1756-M02AE 1756-HYD021756-M02ASNumber of axes per module, max 2Servo loop typeNested PI digital position and velocity servoProportional, integral, and differential (PID) with feed-forwards and directional scalingExternal drive = torquePosition loop: PID with velocity feed-forwardsVelocity loop: PI with accel feed-forwards (nested); with directional scaling and friction compensationExternal drive = velocity or hydraulic Position loop: PID with velocityfeed-forwards and accel feed-forwards with directional scaling and friction compensationVelocity loop: N/A (handled by drive or valve)Gain resolution 32-bit floating pointAbsolute position range ±1,000,000,000 encoder counts 230,000 LDT counts 232 (4,294,967,296) transducer counts Rate5 kHz 500 Hz…4 kHz (selectable)500 Hz, 666.7 Hz, 1 kHz, 2 kHz, 4 kHz (selectable)Current draw @ 5.1V DC 700 mA Current draw @ 24V DC 2.5 mA Power dissipation 5.5 W Thermal dissipation — 18.77 BTU/hr18.77 BTU/hrIsolation voltage — 30V continuous, user to system30V continuous, user to systemRemovable terminal block 1756-TBCH 1756-TBS6H Slot width 1Module location Chassis-based, any slotChassis1756-A4, 1756-A7, 1756-A10, 1756-A13, 1756-A17Power supply, standard 1756-PA72/C, 1756-PA75/B, 1756-PB72/C, 1756-PB75/B, 1756-PC75/B, 1756-PH75/B Power supply, redundant 1756-PA75R, 1756-PB75R, 1756-PSCA2Wire size 0.324…2.08 mm 2 (22…14 AWG) stranded, 1.2 mm (3/64 in.) insulation max (1)Wire category 1(2)2(1)2(1)Wire typeCopper CopperCopperEnclosure type ratingNone (open-style)(1)Maximum wire size requires extended housing, catalog number 1756-TBE,(2)Use this conductor category information for planning conductor routing as described in the system level installation manual. See the Industrial Automation Wiring and Grounding Guidelines, publication 1770-4.1.1756 ControlLogix Integrated Motion Modules SpecificationsInput Specifications1756-M02AE 1756-HYD02 1756-M02ASInput Type Encoder input: Incremental AB quadraturewith marker LDT input: PWM, Start/Stop rising orfalling edgeSSI input: Synchronous Serial InterfaceEncoder mode 4X quadrature — —Encoder rate, max 4 MHz counts per second — —Resolution — <0.001 in. with single recirculation 8…31 bitsElectrical interface Optically isolated, 5V differential Isolated 5V differential (RS-422 signal) Isolated 5V differential (RS-422 signal)On-state voltage range 3.4…5.0V — —Off-state voltage range 0…1.8V — —Input impedance 531 Ω differential 215 Ω differential 215 Ω differentialOutput load, min — 100 Ω min 100 Ω minTransducer — Must use External Interrogation signal Binary or gray codeClock frequency — — 208 kHz or 625 kHzRegistration Input Type Optically isolated, current sinking24V on-state voltage, min 18.5V DC24V on-state voltage, max 26.4V DC24V off-state voltage, max 3.5V DC24V input impedance 9.5 kΩ 1.2 kΩ9.5 kΩ5V on-state voltage, min 3.7V DC5V on-state voltage, max 5.5V DC5V off-state voltage, max 1.5V DC5V input impedance 1.2 kΩ9.5 kΩ 1.2 kΩResponse time (position latched) 1 μs 1 servo update period(1) 1 servo update period(1)Other Input Type Optically isolated, current sinkingInput voltage, nom 24V DCOn-state voltage, min 17V DCOn-state voltage, max 26.4V DCOff-state voltage, max 8.5V DCInput impedance 7.5 kΩ(1)Servo update period is the period at which the position and/or velocity feedback is sampled and a new servo loop is closed to generate a new servo output. The time of this period is a user-defined setting from 250…2000 μs.1756 ControlLogix Integrated Motion Modules SpecificationsOutput Specifications1756-M02AE1756-HYD02 1756-M02ASServo Output Type Analog voltageIsolation 200 kΩ— —Voltage range ±10VVoltage resolution 16 bitsOutput load, min 5.6 kΩ resistiveOutput offset, max 25 mVOutput gain error ±4%Other Outputs Solid-state isolated relay contactOperating voltage, nom 24V DC (Class 2 source) 24V DC 24V DCOperating voltage, max 26.4V DCOperating current 75 mAEnvironmental Specifications - 1756 Analog Motion ModulesAttribute1756-M02AE1756-HYD02, 1756-M02AS Temperature, operatingIEC 60068-2-1 (Test Ad, Operating Cold),IEC 60068-2-2 (Test Bd, Operating Dry Heat),IEC 60068-2-14 (Test Nb, Operating Thermal Shock)0…60 °C (32…140 °F) 0…60 °C (32…140 °F)Temperature, storageIEC 60068-2-1 (Test Ab, Unpackaged Nonoperating Cold),IEC 60068-2-2 (Test Bb, Unpackaged Nonoperating Dry Heat),IEC 60068-2-14 (Test Na, Unpackaged Nonoperating Thermal Shock)-40…85 °C (-40…185 °F) -40…85 °C (-40…185 °F)Relative humidityIEC 60068-2-30 (Test Db, Unpackaged Nonoperating Damp Heat)5…95% noncondensing 5…95% noncondensingVibrationIEC 60068-2-6 (Test Fc, Operating)— 2 g @ 10…500 HzShock, operatingIEC 60068-2-27 (Test Ea, Unpackaged Shock)—30 gShock, nonoperatingIEC 60068-2-27 (Test Ea, Unpackaged Shock)—50 gEmissions—CISPR 11: Group 1, Class AESD immunity IEC 61000-4-2— 6 kV contact discharges8 kV air dischargesRadiated RF immunity IEC 61000-4-3—10V/m with 1 kHz sine-wave 80% AM from80... 2000 MHz10V/m with 200 Hz 50% Pulse 100% AM @900 MHzEFT/B immunityIEC 61000-4-4—±2 kV at 5 kHz on signal portsSurge transient immunity IEC 61000-4-5—±2 kV line-line (DM) and ±2 kV line-earth (CM)on signal portsConducted RF immunity IEC 61000-4-6—10Vrms with 1 kHz sine-wave 80% AM from150 kHz...80 MHz1756 ControlLogix Integrated Motion Modules Specifications1756 Removable Terminal BlocksCertifications - 1756 Analog Motion ModulesCertification (1)1756-M02AE1756-HYD02, 1756-M02ASUL UL Listed Industrial Control Equipment, certified for US and Canada.UL Listed Industrial Control Equipment, certified for US and Canada.CSACSA Certified Process Control Equipment for Class I, Division 2 Group A,B,C,D.CSA Certified Process Control EquipmentCSA Certified Process Control Equipment for Class I, Division 2 Group A,B,C,D Hazardous LocationsCE Marked for applicable directives.European Union 89/336/EEC EMC Directive, compliant with:•EN 50082-2; Industrial Immunity•EN 61326; Meas./Control/Lab., Industrial Requirements •EN 61000-6-2; Industrial Immunity •EN 61000-6-4; Industrial EmissionsC-TickMarked for applicable acts.Australian Radiocommunications Act, compliant with:AS/NZS CISPR 11; Industrial Emissions(1)When marked. See the Product Certification link at for Declarations of Conformity, Certificates, and other certification details.Attribute 1756-TBCH1756-TBS6H1756-TBEDescription 36-pin cage-clamp removable terminal block with standard housing 36-pin spring-clamp removable terminal block with standard housingExtended depth terminal block housing Screw torque 0.4 N•m (4.4 lb•in) —Screwdriver width8 mm (5/16 in.) max1756 ControlLogix Integrated Motion Modules Specifications Notes:Publication 1756-TD004B-EN-E - May 2010Rockwell Automation SupportRockwell Automation provides technical information on the Web to assist you in using its products. At/support/, you can find technical manuals, a knowledge base of FAQs, technical and application notes, sample code and links to software service packs, and a MySupport feature that you can customize to make the best use of these tools.For an additional level of technical phone support for installation, configuration, and troubleshooting, we offer TechConnect support programs. For more information, contact your local distributor or Rockwell Automation representative, or visit /support/.Installation AssistanceIf you experience an anomaly within the first 24 hours of installation, review the information that is contained in this manual.You can contact Customer Support for initial help in getting your product up and running.New Product Satisfaction ReturnRockwell Automation tests all of its products to ensure that they are fully operational when shipped from the manufacturing facility. However, if your product is not functioning and needs to be returned, follow these procedures.Documentation FeedbackYour comments will help us serve your documentation needs better. If you have any suggestions on how to improve this document, complete this form, publication RA-DU002, available at /literature/.United States or Canada 1.440.646.3434Outside United States or CanadaUse the Worldwide Locator at /support/americas/phone_en.html , or contact your local Rockwell Automation representative.United States Contact your distributor. You must provide a Customer Support case number (call the phone number above to obtain one) to your distributor to complete the return process.Outside United StatesPlease contact your local Rockwell Automation representative for the return procedure.。

铁道信号与通信管理考试 选择题 58题

铁道信号与通信管理考试 选择题 58题

1. 铁路信号系统的主要功能是什么?A. 提供娱乐信息B. 确保列车安全运行C. 提供天气预报D. 管理乘客服务2. 下列哪项不是铁路信号的基本类型?A. 视觉信号B. 听觉信号C. 电子信号D. 嗅觉信号3. 铁路信号灯中,红灯通常表示什么?A. 允许通行B. 注意前方C. 禁止通行D. 减速慢行4. 铁路通信系统中,GSM-R是指什么?A. 全球移动通信系统-铁路B. 全球卫星通信系统-铁路C. 地面站移动通信-铁路D. 地面卫星通信-铁路5. 铁路信号系统中的ATP是什么的缩写?A. Automatic Train ProtectionB. Automatic Traffic PlanningC. Advanced Train ProgrammingD. Automated Track Prevention6. 铁路信号系统中的ATO是什么的缩写?A. Automatic Train OperationB. Automated Track OperationC. Automatic Traffic OptimizationD. Automated Train Offloading7. 铁路信号系统中的ATS是什么的缩写?A. Automatic Train SupervisionB. Automated Track SystemC. Automatic Traffic SupervisionD. Automated Train System8. 铁路信号系统中的CCTV主要用于什么?A. 列车调度B. 安全监控C. 乘客服务D. 货物管理9. 铁路信号系统中的PIS是什么的缩写?A. Passenger Information SystemB. Public Information ServiceC. Personal Information SystemD. Private Information Service10. 铁路信号系统中的SCADA是什么的缩写?A. Supervisory Control And Data AcquisitionB. System Control And Data AcquisitionC. Supervisory Command And Data AccessD. System Command And Data Access11. 铁路信号系统中的TMS是什么的缩写?A. Traffic Management SystemB. Train Management SystemC. Track Management SystemD. Terminal Management System12. 铁路信号系统中的VMS是什么的缩写?A. Variable Message SystemB. Vehicle Management SystemC. Visual Management SystemD. Voice Management System13. 铁路信号系统中的WLAN是什么的缩写?A. Wireless Local Area NetworkB. Wide Local Area NetworkC. Wireless Long Area NetworkD. Wide Long Area Network14. 铁路信号系统中的ZC是什么的缩写?A. Zone ControllerB. Zero ControlC. Zone CommandD. Zero Command15. 铁路信号系统中的CTC是什么的缩写?A. Centralized Traffic ControlB. Computerized Traffic ControlC. Centralized Train ControlD. Computerized Train Control16. 铁路信号系统中的DMS是什么的缩写?A. Dynamic Message SystemB. Digital Management SystemC. Dynamic Management SystemD. Digital Message System17. 铁路信号系统中的EOA是什么的缩写?A. End of AuthorityB. End of AreaC. End of ActionD. End of Access18. 铁路信号系统中的FAS是什么的缩写?A. Fire Alarm SystemB. Facility Alarm SystemC. Fire Access SystemD. Facility Access System19. 铁路信号系统中的GPS是什么的缩写?A. Global Positioning SystemB. General Positioning SystemC. Global Planning SystemD. General Planning System20. 铁路信号系统中的HMI是什么的缩写?A. Human Machine InterfaceB. Human Management InterfaceC. Human Monitoring InterfaceD. Human Maintenance Interface21. 铁路信号系统中的IBS是什么的缩写?A. Integrated Booking SystemB. Integrated Braking SystemC. Integrated Bus SystemD. Integrated Billing System22. 铁路信号系统中的IDS是什么的缩写?A. Intrusion Detection SystemB. Integrated Data SystemC. Intelligent Data SystemD. Intrusion Data System23. 铁路信号系统中的LDS是什么的缩写?A. Local Data SystemB. Long Distance SystemC. Local Detection SystemD. Long Distance Service24. 铁路信号系统中的MMS是什么的缩写?A. Multimedia Messaging ServiceB. Mobile Management SystemC. Multimedia Management SystemD. Mobile Messaging Service25. 铁路信号系统中的NMS是什么的缩写?A. Network Management SystemB. Node Management SystemC. Network Monitoring SystemD. Node Monitoring System26. 铁路信号系统中的OCC是什么的缩写?A. Operations Control CenterB. Operations Command CenterC. Operations Communication CenterD. Operations Coordination Center27. 铁路信号系统中的PABX是什么的缩写?A. Private Automatic Branch ExchangeB. Public Automatic Branch ExchangeC. Private Automated Branch ExchangeD. Public Automated Branch Exchange28. 铁路信号系统中的PBX是什么的缩写?A. Private Branch ExchangeB. Public Branch ExchangeC. Personal Branch ExchangeD. Public Business Exchange29. 铁路信号系统中的PCM是什么的缩写?A. Pulse Code ModulationB. Pulse Control ModulationC. Personal Communication ModulationD. Public Communication Modulation30. 铁路信号系统中的PLC是什么的缩写?A. Programmable Logic ControllerB. Programmable Line ControllerC. Personal Logic ControllerD. Public Line Controller31. 铁路信号系统中的PSD是什么的缩写?A. Platform Screen DoorB. Power Supply DeviceC. Platform Safety DeviceD. Power System Device32. 铁路信号系统中的RBC是什么的缩写?A. Radio Block CenterB. Railway Block CenterC. Remote Block CenterD. Regional Block Center33. 铁路信号系统中的RTU是什么的缩写?A. Remote Terminal UnitB. Railway Terminal UnitC. Remote Transmission UnitD. Railway Transmission Unit34. 铁路信号系统中的SCC是什么的缩写?A. Signal Control CenterB. System Control CenterC. Signal Command CenterD. System Command Center35. 铁路信号系统中的SCS是什么的缩写?A. Signal Control SystemB. System Control SystemC. Signal Command SystemD. System Command System36. 铁路信号系统中的SDH是什么的缩写?A. Synchronous Digital HierarchyB. Synchronous Data HierarchyC. Synchronous Digital HybridD. Synchronous Data Hybrid37. 铁路信号系统中的SMS是什么的缩写?A. Short Message ServiceB. System Management ServiceC. Signal Management SystemD. System Monitoring Service38. 铁路信号系统中的SSP是什么的缩写?A. Signal Switching PointB. System Switching PointC. Signal Support PointD. System Support Point39. 铁路信号系统中的TETRA是什么的缩写?A. Terrestrial Trunked RadioB. Trunked Emergency RadioC. Terrestrial Emergency RadioD. Trunked Trunked Radio40. 铁路信号系统中的TMS是什么的缩写?A. Traffic Management SystemB. Train Management SystemC. Track Management SystemD. Terminal Management System41. 铁路信号系统中的TRAIN是什么的缩写?A. Traffic Rail INterfaceB. Train Rail INterfaceC. Track Rail INterfaceD. Terminal Rail INterface42. 铁路信号系统中的UHF是什么的缩写?A. Ultra High FrequencyB. Ultra High FunctionC. Ultra High FrequencyD. Ultra High Function43. 铁路信号系统中的VHF是什么的缩写?A. Very High FrequencyB. Very High FunctionC. Very High FrequencyD. Very High Function44. 铁路信号系统中的VMS是什么的缩写?A. Variable Message SystemB. Vehicle Management SystemC. Visual Management SystemD. Voice Management System45. 铁路信号系统中的WLAN是什么的缩写?A. Wireless Local Area NetworkB. Wide Local Area NetworkC. Wireless Long Area NetworkD. Wide Long Area Network46. 铁路信号系统中的ZC是什么的缩写?A. Zone ControllerB. Zero ControlC. Zone CommandD. Zero Command47. 铁路信号系统中的CTC是什么的缩写?A. Centralized Traffic ControlB. Computerized Traffic ControlC. Centralized Train ControlD. Computerized Train Control48. 铁路信号系统中的DMS是什么的缩写?A. Dynamic Message SystemB. Digital Management SystemC. Dynamic Management SystemD. Digital Message System49. 铁路信号系统中的EOA是什么的缩写?A. End of AuthorityB. End of AreaC. End of ActionD. End of Access50. 铁路信号系统中的FAS是什么的缩写?A. Fire Alarm SystemB. Facility Alarm SystemC. Fire Access SystemD. Facility Access System51. 铁路信号系统中的GPS是什么的缩写?A. Global Positioning SystemB. General Positioning SystemC. Global Planning SystemD. General Planning System52. 铁路信号系统中的HMI是什么的缩写?A. Human Machine InterfaceB. Human Management InterfaceC. Human Monitoring InterfaceD. Human Maintenance Interface53. 铁路信号系统中的IBS是什么的缩写?A. Integrated Booking SystemB. Integrated Braking SystemC. Integrated Bus SystemD. Integrated Billing System54. 铁路信号系统中的IDS是什么的缩写?A. Intrusion Detection SystemB. Integrated Data SystemC. Intelligent Data SystemD. Intrusion Data System55. 铁路信号系统中的LDS是什么的缩写?A. Local Data SystemB. Long Distance SystemC. Local Detection SystemD. Long Distance Service56. 铁路信号系统中的MMS是什么的缩写?A. Multimedia Messaging ServiceB. Mobile Management SystemC. Multimedia Management SystemD. Mobile Messaging Service57. 铁路信号系统中的NMS是什么的缩写?A. Network Management SystemB. Node Management SystemC. Network Monitoring SystemD. Node Monitoring System58. 铁路信号系统中的OCC是什么的缩写?A. Operations Control CenterB. Operations Command CenterC. Operations Communication CenterD. Operations Coordination Center 答案部分1. B2. D3. C4. A5. A6. A7. A8. B9. A10. A11. B12. A13. A14. A15. A16. A17. A18. A19. A20. A21. B22. A23. A24. A25. A26. A27. A28. A29. A30. A31. A32. A33. A34. A35. A36. A37. A38. A39. A40. A41. A42. A43. A44. A45. A46. A47. A48. A49. A50. A51. A52. A53. B54. A55. A56. A57. A58. A。

常见的军事术语

常见的军事术语

常见的军事术语A:Attacker = 攻击机AA:Anti-Air = 防空AAA:Anti-Air Artillery = 高射炮AAAV:Advanced Amphibious Assault Vehicle = 先进两栖突击车AAM:Air-to-Air Missile = 空对空导弹AAR:Air-to-Air Refueling = 空中加油AAW:Anti-Air Warfare = 防空作战ABL:AirBorne Laser = 机载激光器ABM:Anti-Ballistic Missile = 反弹道导弹ACMS:Air Combat Maneuvering System = 空战机动系统ACV:Armored Combat Vehicle = 装甲战车AEGIS:Airborne Early-warning Ground Integrated System = 空中预警-地面综合系统(神盾) AFV:Armored Fighting Vehicle = 装甲战车AEM&C:Airborne Early Warning and Control = 空中预警与指挥AEW:Airborne Early Warning = 空中早期预警AFB:Air Force Base = 空军基地AGM:Air-to-Ground Missile = 空对地导弹AGS:Advance Gun System = 先进火炮系统AGS:Armored Gun System = 装甲火炮系统AIM:Air Intercept Missile = 拦射空空导弹ALBM:Air-Launched Ballistic Missile = 空射弹道导弹ALCM:Air-Launched Cruise Missile = 空射巡航导弹AMRAAM:Advanced Medium Range Air-to-Air Missile = 先进中程空空导弹APAR:Active Phase-Array Radar = 主动相控阵雷达APC:Armored Personnel Carrier = 装甲人员输送车APFSDS-T:AP Fin-Stab. Discarding Sabot-Tracer = 尾翼稳定脱壳穿甲曳光弹APS:Artillery Pointing System = 火炮指示系统ARM:Anti Radiation Missile = 反辐射导弹ASM:Air-to-Surface Missile = 空对舰导弹ASMS:Advanced Surface Missile System = 先进舰载导弹系统ASRAAM:Advanced Short Range Air-to-Air Missile = 先进短程空空导弹ASROC:Anti-Submarine Rocket = 反潜火箭ASuW:Anti-Surface Warfare = 反面作战ASW:Anti-Submarine War = 反潜ASW:Anti-Submarine Warfare = 反潜作战ATC:Air Traffic Control = 空中交通管制ATGM:Anti-Tank Guided Missile = 反坦克导弹ATM:Advanced Turret Module = 先进炮塔模块AUV:Autonomous Underwater Vehicle = 自主式水下航行器AWAC:Airborne Warning And Control = 空中预警和控制AWACS:Airborne Warning And Control System = 空中预警与指挥系统AWOL:Absent WithOut Leave = 擅离职守;无故离队;开小差B:Bomber = 轰炸机BB:Battle Ship = 战列舰BC:Battle Cruiser = 战列巡洋舰BDA:Battle Damage Assessment = 战斗损害评估BPI:Boost Phase Intercept = 加速阶段拦截BRAA:Bearing, Range, Altitude and Aspect = 目标飞行情况BVR:Beyond Visual Range = 超视距BVRAAM:Beyond Visual Range Air-to-Air Missile = 超视距空空导弹C:Carrier = 运输机C3:Command, Control and Communication = 指挥控制通信系统CAP:Combat Air Patrol = 战斗空中巡逻CAS:Close Air Support = 近距空中支援CASE:Computer Aided Software Engineering = 电脑辅助软件工程CBU:Clustered Bomb Unit = 集束炸弹CENTCOM:CENTral COMmand = 中央司令部CFC:Carbon Fiber Composite = 碳纤维复合材料CC:Cruiser = 巡洋舰CG:Cruiser (Guided-missile) = 导弹巡洋舰CIC:Combat Information Center = 战斗信息中心CIC:Commander in Chief = 最高指挥官CIWS:Close-In Weapon System = 近战武器系统CIWS:Close Intercept Weapon System = 近程防御系统CNO:Chief of Naval Operation = 海军作战部长COMINT:COMmunication INTelligence = 通信情报COMDAC INS:COMmand Display And Control Integrated Navigation System = 集成控制导航系统CR:Close Range = 近程C/S:Course and Speed = 航向与速度CV:Carrier Vessel = 常规动力航空母舰CVN:Carrier Vessel (Nuclear-powered) = 核动力航母CVBG:Carrier Battle Group = 航母战斗群DASS:Defensive Aids Sub-System = 防御性辅助子系统DD:Destroyer = 驱逐舰DDG:Destroyer (Guided-missile) = 导弹驱逐舰DU:Depleted Uranium = 贫铀DVI:Direct Voice Input = 直接语音输入技术E:Electronic = 电子战机ECM:Electronic Counter Measures = 电子对抗,电子战ECCM:Electronic Counter-Counter Measures = 电子反对抗,反电子战ELINT:ELectronic INTelligence = 电子情报EMCON:EMissions CONtrol = 发射控制EML:ElectricMagnet Launcher = 电磁炮EMP:ElectricMagnet Palse = 电磁脉冲ERAAM:Extended Range Air-to-Air Missile = 延程空空导弹ESM:Electronic Signal Measures = 电子信号警告ESM:Electronic Support Measures = 电子支援ETG:Electro Thermal Gun = 电热炮ETCG:Electro Thermal Chemical Gun = 电热化学炮EW:Electronic Warfare = 电子战EW:Early Warning = 预警EWAC:Early Warning And Control= 预警及控制F:Fighter = 战斗机FAE:Fuel Air Explosive = 油气炸弹FCS:Fire Control System = 火控系统FEL:Free Elctron Laser = 自由电子激光器FF:Frigate = 护卫舰FFG:Frigate(Guided-missile) = 导弹护卫舰FLIR:Forward Looking Infra-Red = 前视红外FLOT:Forward Line Of Troops = 前线FMRAAM:Future Medium Range Air-to-Air Missile = 未来中程空空导弹FMTV:Family of Medium Tactical Vehicles = 中型战术车族GEM:Guidance-Enhanced Missile = 制导增强导弹GEO:Geo-Stationary Orbit = 地球同步轨道GPS:Global Positioning System = 全球定位系统GZ:Ground Zero = 核爆炸中心地面投影H:Helicopter = 直升机HE:High Explosive = 高爆炸药HEAT:High-Explosive Anti-Tank = 高爆反坦克炸药(成形炸药)HMD:Helmet Mounted Display = 头盔显示器HPM:High Power Microwave = 高功率微波HQ:HeadQuarters = 总部HUD:Head-Up Display = 抬头显示器HVU:High value Unit = 高价值单位IADS:Integrated Air Defense System = 综合防空系统ICBM:Intercontinental Ballistic Missile = 洲际弹道导弹IFF:Identification of Friend or Foe = 敌我识别IFV:nfantry Fighting Vehicle = 步兵战车IPE:Individual Protection Ensemble = 单兵防护装备IRBM:Intermediate-Range Ballistic Missile = 中程弹道导弹IRST:Infra-Red Search and Track = 红外搜索跟踪JDAM:Joint Direct Attack Munitions = 联合直接攻击弹药JHMCS:Joint Helmet Mounted Cueing System = 联合头盔指引系统JSF:Joint Strike Fighter = 联合打击战斗机J-STAR:Joint Surveillance and Target Attack Radar system = 联合侦察和目标打击系统JTIDS:Joint Tactical Info Distribution System = 联合战术信息分发系统K:Kerosene = 加油机KIA:Kill in Action = 阵亡LANTIRN:Low-Alt. Nav.& Targeting Infra-Red for Night = 低空导航与目标指示红外夜视仪LAV:Light Armored Vehicle = 轻型装甲车辆LCA:Light Combat Aircraft = 轻型战斗机LEO:Low Earth Orbit = 近地轨道LD:Laser Designator = 激光导引LGB:Laser Guided Bomb = 激光制导炸弹LORCAP:Long-Range Combat Air Patrol = 长距离战斗空中巡逻LPT:Low Profile Turret = 低矮炮塔LRBM:Long-Range Ballistic Missile = 远程弹道导弹LRIP:Low Rate Initial Production = 低速试产MBT:Main Battle Tank = 主战坦克MC:Marine Corps = 海军陆战队MCA:Medium Combat Aircraft = 中型战斗机MCM:Mine Counter-Measures = 扫雷MFD:Multi-Function Display = 多功能显示器MFR:Multifunction Radar = 多用途雷达MIA:Missing In Action = 任务中失踪MIL-STD:MILliraty STanDard = 军事标准MLU:Mid-Life Update = 中期延寿(战机)MOPP:Mission-Oriented Protective Posture = 攻击中的防范状态MOAB:Massive Ordnance Air Blast = 巨型空中炸弹MOAB:Mother Of All Bombs = 炸弹之母MPRF:Medium Pulse Repetition Frequency = 中脉冲重复频率MRLS:Multiple Rocket Launching System = 多管火箭发射系统NAVSSI:NAVigation Sensor System Interface = 导航传感器系统界面NCTR:NonCooperative Target Recognition = 非己方目标识别NBC:Nuclear Biological and Chemical = 核、生物、化学OICW:Objective Individual Combat Weapon = 目标单兵战斗武器OOB:Order Of Battle = 战斗序列OPCW:Org. for the Prohibition of Chemical Weapons = 禁止化学武器组织OTH:Over the Horizon = 超视距OWS:Overhead Weapon System = 遥控炮塔P:Patrol = 巡逻机PA:Phase Array = 相控阵PAC:Patriot Advanced Capability = 改进型爱国者导弹PGM:Precision-Guided Munitions = 精确制导炸弹PIM:Path of Intended Motion = 预定机动路线PK:Probability of Kill = 杀伤率PLGR:Precision Lightweight GPS Receiver = 精确轻型GPS接收器R:Reconnaissance = 侦察机RATO:Rocket Assisted Take-Off = 火箭辅助起飞RCS:Radar Cross Section = 雷达截面RLG:Retractable Landing Gear = 回收式起落架ROE:Rules of Engagement = 交战规则ROV:Remote Operated Vehicle = 遥控车辆、飞机RPG:Rocket Propelled Grenade = 火箭助推榴弹RTB:Return To Base = 返回基地RTO:Ready to Take-Off = 起飞准备就绪RWR:Radar Warning Receiver = 雷达告警器SAM:Surface to Air Missile = 防空导弹SAR:Search and Rescue = 搜索救援SAR:Synthetic Aperture Radar = 合成孔径雷达SATCOM:SATellite COMmunication = 卫星通信SDV:Swimmer Delivery Vehicle = 潜水员输送载具SEAD:Suppression of Enemy Air Defense = 压制敌方防空任务SLBM:Submarine-Launched Ballistic Missile = 潜射弹道导弹SLGR:Small Lightweight GPS Receiver = 小型轻便GPS接收器SOP:Standard Operation Procedure = 标准操作程序SRBM:Short-Range Ballistic Missile = 近程弹道导弹SSBN:Ballistic-missile Nuclear-powered Strategic Sub. = 战略导弹核潜艇SSL:Solid State Lasers = 固态激光器SSM:Surface-to-Surface Missile = 地对地导弹SSN:Strike Submarine (Nuclear-powered) = 攻击型核潜艇SSNDS:SSN Direct Support = 直接支援核潜艇SSPK:Single-Shot Probability of Kill = 单发杀伤率START:Strategic Arms Reduction Treaty = 战略武器削减条约STK:Strike = 袭击STN:Satellite Tracking Network = 卫星跟踪网STOL:Short Take Off and Landing = 短距起降STOP:Simultaneous Time on Top = 同时到达SURTASS:SURface Towed Array Sonar System = 水面拖曳阵列声纳系统TASM:Tomahawk Anti-Ship Missile = 战斧反舰导弹TEL:Transporter/Erector/Launcher = 运输/起竖/发射车THAAD:Theater High Altitude Area Defense = 战区高空区域防空TLAM:Tomahawk Land Attack Missile = 战斧对地攻击导弹TMA:Target Motion Analysis = 目标运动分析TOW:Tube-launched Optic-tracked Wire-guided = 光学有线制导管内发射反坦克导弹(陶式导弹)TVC:Thrust Vector Converter = 矢量推力UAV:Unmanned Air Vehicle = 无人驾驶飞行器UCAV:Unmanned Combat Air Vehicle = 无人驾驶战斗飞行器UFCP:Up Front Control Panel =(战机座舱)前部控制屏UUV:Unmanned Underwater Vehicle = 无人水下航行器VIP:Very Importent Person = 重要人物VL:Verticle Landing = 垂直起降VLS:Vertical Launch System = 垂直发射系统VTOL:Vertical Take Off and Landing = 垂直起降WECDIS:Warship Electronic Chart Display and Information Systems = 海图显示和信息系统WRM:War Reserve Materials = 战争物资储备W/S:Weapon System = 武器系统WYPT:Waypoint = 路径点THEATRE MISSILE DEFENSE-TMDNational Missile Defense (NMD)ACM:先进巡航导弹;AFB:空军基地;ALCM:空射巡航导弹;GLCM:陆射巡航导弹;NAS:海军一级航空站;NATO:北约(非美国运载系统);NWS:海军兵器站;SLCM:海射巡航导弹;SRAM:短程攻击导弹。

1PPC控制器故障代码查询重要

1PPC控制器故障代码查询重要

Rexroth IndraControl VCP 20Industrial Hydraulics Electric Drivesand ControlsLinear Motion andAssembly Technologies PneumaticsServiceAutomationMobileHydraulicsRexroth VisualMotion 10 Multi-Axis Machine Control R911306327 Edition 01Troubleshooting GuideAbout this Documentation Rexroth VisualMotion 10 Troubleshooting Guide DOK-VISMOT-VM*-10VRS**-WA01-EN-PRexroth VisualMotion 10Multi-Axis Machine ControlTroubleshooting Guide DOK-VISMOT-VM*-10VRS**-WA01-EN-P Document Number, 120-2300-B323-01/ENPart of Box Set, 20-10V-EN (MN R911306370)This documentation describes …•the use of VisualMotion Toolkit for assitance in diagnostics •the proper steps for indentifing diagnostic faults • and the suggested remedies for clearing faults Description ReleaseDateNotes DOK-VISMOT-VM*-10VRS**-WA01-EN-P 08/2004Initial release© 2004 Bosch Rexroth AGCopying this document, giving it to others and the use or communicationof the contents thereof without express authority, are forbidden. Offendersare liable for the payment of damages. All rights are reserved in the eventof the grant of a patent or the registration of a utility model or design(DIN 34-1).The specified data is for product description purposes only and may notbe deemed to be guaranteed unless expressly confirmed in the contract.All rights are reserved with respect to the content of this documentationand the availability of the product.Bosch Rexroth AGBgm.-Dr.-Nebel-Str. 2 • D-97816 Lohr a. MainTel.: +49 (0)93 52/40-0 • Fax: +49 (0)93 52/40-48 85 • Telex: 68 94 21Bosch Rexroth Corporation • Electric Drives and Controls5150 Prairie Stone Parkway • Hoffman Estates, IL 60192 • USATel.: 847-645-3600 • Fax: 847-645-6201/Dept. ESG4 (DPJ)This document has been printed on chlorine-free bleached paper.Title Type of DocumentationDocument TypecodeInternal File Reference Purpose of Documentation Record of Revisions Copyright Validity Published byNoteRexroth VisualMotion 10 Troubleshooting Guide Table of Contents I Table of Contents1VisualMotion Tools for Diagnosing1-1 The Diagnostics Menu.............................................................................................................1-1System Diagnostics.................................................................................................................1-1Tasks Diagnostics...................................................................................................................1-3Drive Overview….....................................................................................................................1-42Monitoring and Diagnostics2-12.1System Diagnostics - Codes and Message...................................................................................2-1Parameters..............................................................................................................................2-2DriveTop..................................................................................................................................2-32.2Control Startup Messages.............................................................................................................2-4PPC Boot-Up Sequence..........................................................................................................2-4Control Firmware Sequence....................................................................................................2-42.3Status Messages (001-199)...........................................................................................................2-5001 Initializing System.............................................................................................................2-5002 Parameter Mode...............................................................................................................2-5003 Initializing Drives...............................................................................................................2-5004 System is Ready...............................................................................................................2-5005 Manual Mode....................................................................................................................2-5006 Automatic Mode: ABCD....................................................................................................2-5007 Program Running: ABCD.................................................................................................2-6008 Single-Stepping: ABCD....................................................................................................2-6009 Select Parameter Mode to Continue................................................................................2-6010 Breakpoint Reached: ABCD.............................................................................................2-6018 Please cycle power to continue........................................................................................2-6019 Executing User Initialization Task....................................................................................2-62.4Warning Messages (201-399).......................................................................................................2-7201 Invalid jog type or axis selected........................................................................................2-7202 Drive %d is not ready.......................................................................................................2-7203 Power Fail detected..........................................................................................................2-7204 Sercos ring was disconnected..........................................................................................2-8205 Parameter transfer warning in Task %c...........................................................................2-8207 Axis %d position limit reached..........................................................................................2-8208 Lost Fieldbus Connection.................................................................................................2-9209 Fieldbus Mapping Timeout...............................................................................................2-9210 File System Defrag: %d completed................................................................................2-10211 Program- & Data memory cleared..................................................................................2-10212 Option Card PLS Warning, see ext. diag.......................................................................2-10213 Sercos cycle time changed.............................................................................................2-11214 PCI Bus Cyclic Mapping Timeout...................................................................................2-11 DOK-VISMOT-VM*-10VRS**-WA01-EN-PII Table of Contents Rexroth VisualMotion 10 Troubleshooting Guide215 RECO I/O Failure, see ext. diag.....................................................................................2-11216 Control PLS %d warning, see ext. diag..........................................................................2-12217 PCI Bus Communication, see ext. diag..........................................................................2-12218 PCI Bus Register Mapping Timeout...............................................................................2-13219 PCI Bus Lifecounter Timeout.........................................................................................2-13220 Excessive deviation in PMG%d, see ext. diag...............................................................2-13221 Excessive Master Position Slip Deviation......................................................................2-13222 ELS Config. Warning, see ext. diag...............................................................................2-14223 PCI Bus reset occurred, cyclic data are invalid..............................................................2-14225 System booted................................................................................................................2-14226 RS485 Serial Communication Error (port X1%d)...........................................................2-15227 Control Over-temperature Warning................................................................................2-15228 Control - SYSTEM WARNING.......................................................................................2-152.5Shutdown Messages (400 - 599).................................................................................................2-16400 EMERGENCY STOP......................................................................................................2-16401 Sercos Controller Error: %02d........................................................................................2-16402 Sercos Config. Error: see ext. diag................................................................................2-16403 System Error see ext. diag.............................................................................................2-17405 Phase %d: Drive did not respond...................................................................................2-17407 Drive %d Phase 3 Switch Error......................................................................................2-17409 Sercos Disconnect Error.................................................................................................2-18411 Drive %d Phase 4 Switch Error......................................................................................2-18412 No drives were found on ring..........................................................................................2-18414 Parameters were lost......................................................................................................2-19415 Drive %d was not found..................................................................................................2-19416 Invalid Instruction at %04x..............................................................................................2-19417 SYSTEM ERROR: pSOS #%04x...................................................................................2-19418 No program is active.......................................................................................................2-20419 Invalid Program File: code = %d....................................................................................2-20420 Drive %d Shutdown Error...............................................................................................2-20421 User Program Stack Overflow........................................................................................2-20422 Parameter transfer error in Task %c..............................................................................2-21423 Unimplemented Instruction.............................................................................................2-21425 Instruction error: see Task %c diag................................................................................2-21426 Drive %d is not ready.....................................................................................................2-22427 Calc: invalid table index %d............................................................................................2-22428 Calc: division by zero......................................................................................................2-22429 Calc: too many operands................................................................................................2-22430 Calc: invalid operator......................................................................................................2-23431 Calc error: see Task %c diag.........................................................................................2-23432 Calc: too many nested expressions...............................................................................2-23433 Setup instruction outside of a task.................................................................................2-23434 Axis %d configured more than once...............................................................................2-23435 Axis %d is not assigned to a task...................................................................................2-24436 General Compiler Error: %04x.......................................................................................2-24438 Invalid Axis Selected: %d...............................................................................................2-24DOK-VISMOT-VM*-10VRS**-WA01-EN-PRexroth VisualMotion 10 Troubleshooting Guide Table of Contents III439 Axis %d: Invalid Motion Type.........................................................................................2-24440 I/O Transfer Error: see task diag....................................................................................2-25450 Event %d: invalid event type..........................................................................................2-25451 Invalid event number ‘%d’..............................................................................................2-25452 More than %d event timers armed.................................................................................2-25453 Homing param. transfer error: %d..................................................................................2-25454 Axis %d homing not complete........................................................................................2-26459 Axis %d target position out of bounds............................................................................2-26460 Invalid program %d from binary inputs...........................................................................2-26463 Ratio command: invalid ratio..........................................................................................2-26464 Can't activate while program running.............................................................................2-27465 Drive %d config. error, see ext. diag..............................................................................2-27467 Invalid ELS Master Option..............................................................................................2-27468 ELS adjustment out of bounds.......................................................................................2-27470 Axis %d velocity > maximum..........................................................................................2-28474 Drive %d cyclic data size too large.................................................................................2-28477 Axis D: probe edge not configured.................................................................................2-28478 Calc: operand out of range.............................................................................................2-28483 Parameter Init. Error: see Task %c diag........................................................................2-29484 Control SYSTEM ERROR..............................................................................................2-29486 Sercos Device %d is not a drive.....................................................................................2-29487 CAM %d is invalid or not stored.....................................................................................2-29488 CAM Error: See Task %c diag........................................................................................2-30489 More than %d CAM axes selected.................................................................................2-30490 System Memory Allocation Error....................................................................................2-30492 Programs were lost, see ext. diag..................................................................................2-30496 Can't execute this instruction from an event..................................................................2-31497 Limit switch config. error, see ext. diag.........................................................................2-31498 Drive %d Shutdown Warning..........................................................................................2-32499 Axis number %d not supported in this version...............................................................2-32500 Axis %d is not referenced...............................................................................................2-32501 Drive %d comm. error, see ext. diag..............................................................................2-33502 ELS and cams not supported in this version..................................................................2-33504 Communication Timeout.................................................................................................2-33505 Axis %d is not configured...............................................................................................2-33508 User Watchdog Timeout.................................................................................................2-33509 Control System Timing Error (%d).................................................................................2-34515 PLC Communications Error............................................................................................2-34516 More than %d registration functions enabled.................................................................2-34519 Lost Fieldbus/PLC Connection.......................................................................................2-35520 Fieldbus Mapping Timeout.............................................................................................2-35521 Invalid Virtual Master ID: %d..........................................................................................2-36522 Invalid ELS Master ID: %d..............................................................................................2-36523 IFS status, facility = 0x%x..............................................................................................2-36524 Hardware Watchdog timeout..........................................................................................2-36525 I/O Configuration error, see ext. diag.............................................................................2-36 DOK-VISMOT-VM*-10VRS**-WA01-EN-PIV Table of Contents Rexroth VisualMotion 10 Troubleshooting Guide526 Sercos Multiplex Channel Config, see ext. diag.............................................................2-37527 Control Initialization Error, see ext. diag.........................................................................2-38528 System Event %d Occurred...........................................................................................2-38529 Invalid ELS Group ID: %d...............................................................................................2-38530 CAM %d is active, can't overwrite..................................................................................2-39531 Invalid variable for Fieldbus/PCI Bus Mapping...............................................................2-39532 Power fail brown out condition detected.........................................................................2-39533 Multiple instances of index CAM: %d found...................................................................2-39534 Hardware Version Not Supported..................................................................................2-40539 Invalid Parameter Number..............................................................................................2-40540 Option Card PLS error....................................................................................................2-40541 Link Ring Error, see ext. diag.........................................................................................2-41542 PLC Cyclic Mapping Timeout.........................................................................................2-42543 PCI Bus Runtime Error...................................................................................................2-42544 RECO I/O Failure, see ext. diag.....................................................................................2-42545 Invalid Coordinated Articulation Function ID: %d...........................................................2-43546 Multiple Instance of Coordinated Articulation Function with ID: %d...............................2-43547 Task %c Coordinated Articulation Error, see ext. diag...................................................2-43548 Invalid Kinematic Number: %d.......................................................................................2-43549 Fieldbus Initialization Error.............................................................................................2-43550 User Initialization Task Timeout.....................................................................................2-44551 Master Slip Config. Error, see ext. diag..........................................................................2-44552 Excessive Master Position Slip Deviation......................................................................2-44553 Invalid Parameter Detected, see C-0-2002....................................................................2-44554 Excessive Deviation in PMG%d, see ext. diag...............................................................2-45555 PCI Bus Register Mapping Timeout...............................................................................2-45556 PCI Bus Lifecounter Timeout.........................................................................................2-45557 PMG%d Maximum allowed deviation window is Zero....................................................2-45558 PMG%d Only 1 axis parameterized...............................................................................2-46559 PMG%d Number of offsets does not match number of Axis..........................................2-46560 PMG%d Max. allowed dev. window is larger than 25% of Modulo................................2-46561 PMG%d Offset is larger than Modulo.............................................................................2-46562 PMG%d Parameterized Axis is not in system................................................................2-46563 Invalid Task Specified, Must be A-D..............................................................................2-46564 PMG%d Invalid configuration, see ext. diag...................................................................2-46565 Axis %d: Configuration error, see ext. diag....................................................................2-47566 Filter sample rate and cutoff frequency mismatch.........................................................2-47567 ELS Config. Error, see ext. diag.....................................................................................2-47568 Axis %d: Assigned Task is Not Defined.........................................................................2-48570 ELS Max. Vel. Exceeded, see ext. diag.........................................................................2-48571 No Program Found.........................................................................................................2-49572 PCI Bus reset occurred, cyclic data is invalid.................................................................2-49573 CAM %d is being built....................................................................................................2-49575 ELS Master for ELS Group %d is invalid........................................................................2-49576 Event for input I%d is already armed, cannot arm again...............................................2-50577 Restored non volatile memory from compact flash........................................................2-50DOK-VISMOT-VM*-10VRS**-WA01-EN-PRexroth VisualMotion 10 Troubleshooting Guide Table of Contents V578 Virtual Master %d Exceeded Its Max. Vel., see ext. diag...............................................2-50579 Group %d Exceeded Its Jog Velocity, see ext. diag......................................................2-51580 pROBE Error Occurred in Task:0x%04X.......................................................................2-51581 Probe Function for Axis # is locked by the PLC.............................................................2-51582 Integrated PLC: PLC Stopped in Operation Mode.........................................................2-51583 Integrated PLC: Internal System Error...........................................................................2-51584 ELS System Master %d is invalid, see ext. diag............................................................2-51585 Drive %d separate deceleration not supported..............................................................2-52586 Master Encoder Card Error, see ext diag.......................................................................2-522.6Integrated PLC Status Messages................................................................................................2-536001 Integrated PLC: Running..............................................................................................2-536002 Integrated PLC: Stopped..............................................................................................2-536002 Integrated PLC: Stopped at Breakpoint........................................................................2-532.7Integrated PLC Error Codes........................................................................................................2-530016 Integrated PLC: Software Watchdog Error...................................................................2-530019 Integrated PLC: Program Checksum Error..................................................................2-530020 Integrated PLC: Fieldbus Master Error.........................................................................2-540021 Integrated PLC: I/O Update Error.................................................................................2-542000 Integrated PLC: Internal SIS System Error..................................................................2-542001 Integrated PLC: Internal Acyclic Access Error.............................................................2-542002 Integrated PLC: Internal Acyclic Memory Error............................................................2-542003 Integrated PLC: PLC Configuration Error.....................................................................2-552004 Integrated PLC: File Access Error................................................................................2-552005 Integrated PLC: Internal Fatal Task Error....................................................................2-556011 Integrated PLC: PLC Program Stopped in Operation Mode........................................2-556012 Integrated PLC: General Error.....................................................................................2-552.8Communication Error Codes and Messages...............................................................................2-56!01 Sercos Error Code # xxxx...............................................................................................2-56!02 Invalid Parameter Number..............................................................................................2-57!03 Data is Read Only...........................................................................................................2-57!04 Write Protected in this mode/phase...............................................................................2-57!05 Greater than maximum value.........................................................................................2-57!06 Less than minimum value...............................................................................................2-57!07 Data is Invalid.................................................................................................................2-57!08 Drive was not found........................................................................................................2-57!09 Drive not ready for communication.................................................................................2-57!10 Drive is not responding...................................................................................................2-57!11 Service channel is not open...........................................................................................2-57!12 Invalid Command Class..................................................................................................2-57!13 Checksum Error: xx (xx= checksum that control calculated).........................................2-58!14 Invalid Command Subclass............................................................................................2-58!15 Invalid Parameter Set.....................................................................................................2-58!16 List already in progress..................................................................................................2-58!17 Invalid Sequence Number..............................................................................................2-58!18 List has not started.........................................................................................................2-58!19 List is finished.................................................................................................................2-58 DOK-VISMOT-VM*-10VRS**-WA01-EN-P。

科技文翻译

科技文翻译

英文文献翻译专业班级:自动化06-1班学生姓名:周鑫学号:060410122 二〇一〇年六月一日1.英文资料8051 Embedded System Based on GPRS terminal to achieveWith the surge in demand for wireless data and GPRS mobile services in the painting fully operational, the application of wireless data communications more widely. GPRS network not only has covered a wide range of data transmission speed, high quality, always-on and meter fees in accordance with merit, and itself a packet-based data network to support TCP / IP protocol, without going through the PSTN network switch, etc. Then, communicate directly with the Internet network. GPRS wireless Internet access business, therefore, environmental monitoring, traffic monitoring, mobile office industry with unmatched cost advantage.GPRS terminals to meet the low-cost, compact and mobile and flexible, etc., are now widely used in microcomputer control on the GPRS terminal, and the introduction of embedded system TCP / IP protocol stack. The main difficulty now is: Run the TCP / IP protocol on the computer memory, computing speed higher, and will occupy a lot of system resources; and embedded systems are mostly 8-bit microcontroller, the hardware resources are very limited, support for TCP / IP protocol is difficult. This article uses real-time operating system in embedded uC / OS-II in the transplant of a small TCP / IP protocol stack uIP the ways in which embedded systems based on 8051 GPRS terminal can transmit data in the network; the same time improve the system performance, improved reliability, enhanced system scalability and product development can be continuity.A data transmission network based on GPRSGPRS is based on the introduction of GSM Packet Control Unit (PCU), Service Support Node (SGSN) and gateway support node (GGSN), and other new parts consisting of wireless data transmission system, its users to form groups at the end Next to send and receive data. GPRS network based data transmission system shown in Figure 1. Process-specific data:GPRS terminal through the interface from the client system, remove the user data;GPRS packet data after processing the form sent to the GSM base station (BSS);Packet data packaged by the SGSN, sent to the GPRS IP backbone network;If the packet data is sent to another GPRS terminals are first sent to the destination SGSN, and then sent to the CPBS terminal via BSS; if packet data is sent to the external network (such as the Internet), packets will be grouped by the GGSN to perform the conversion After sending to the external network.2 embedded real-time operating system uC / OS-IIuC / OS-II by Jean J. Prepared by Mr. Labrosse, now a popular free open source real-time operating system. It can be widely used from 8 to 64 different types of SCM, different sizes of embedded systems. With detailed notes of the uC / OS-II source code is only 200 pages or so; of which 95% is written in C, and the MCU type associated with the 8088 assembly code written in no more than 200 lines. uC / OS-II is not only compact in structure, can be cured, can be cut, multi-task and can be denied based real-time kernel, etc; and real-time, stability, reliability skirts have also been widely recognized. uC / OS-II can be compiled to the minimum core 2KB, generally take up memory in 10KB of magnitude for 8051-based embedded system needs. In the system, embedded uC / OS-II can be divided into many tasks throughout the process, relatively independent of each task, and then set the timeout function for each task, time after use, must surrender the right to use MCU. Even if a task problem, it will not affect the operation of other tasks. Embedded microcontroller system in uC / OS-II to improve system reliability, make it easy to debug programs, but also enhance the system scalability and product development can be continuity.However, uC / OS-II real-time operating system kernel is just a, compared with commercial real time operating system package, it lacks the Utilities section, such as file systems, remote function call library, communication software library. Communications software, including: TCP / IP software libraries, Bluetooth communication software library, IrDA infrared communications software libraries. This type of software solution in two ways: one is to purchase third party software; the other is to write your own. If only with MCU TCP / IP protocol in some of the features, you can use a small free open source TCP / IP protocol stack, it ported to uC / OS-II. Currently uC / OS-II's latest version V2.70, but now widespread study and application of the V2.52.3 small TCP / IP protocol stack uIPuIP computer by the Swiss Academy of Sciences, Adam Dunkels a free open source development such as small TCP / IP protocol stack, it is designed for 8-bit and 16-bit MCU write. uIP entirely in C language, it is to ensure a complete TCP / IP stack under the premise of retaining only the most necessary for a series of features to the code at least, occupied RAM minimum; it can only handle a single network interface .Normal TCP / IP stack with BSD socket API, need to multi-tasking operating system from the lower support, and task management, context switching and stack space allocation should occupy much of the overhead, beyond the eight-machine system capacity. uIP using an event-driven interface, by calling the application respond to events. The corresponding application as C function calls. Typically, uIP the source code although only a few KB, RAM occupied by only a few hundred bytes, but uIP provides necessary network communication protocols, including: ARP, SLIP, IP, UDP, ICMP (PINC) and TCP; to meet the 8-bit MCU access to TCP / IP network (such as the Internet) needs. UIP the latest version of the current V0.9, consistent with Internet standards.4 GPRS terminals and hardware implementation of the principleGPRS terminal control module controlled by the TCP / IP module and the wireless transmission module. The block diagram shown in Figure 2.4.1 Control ModuleThe role of the control module are:AT command control module initialization through GPRS wireless module, so attached to the GPRS network, access network operators dynamically allocated to GPRS terminal IP address and with the aim to establish a connection between the terminal or server;RS232 serial control module to the client system by sending and receiving data or instructions;RS232 serial port to the control module through TCP / IP modules send and receive data;control module independently or under remote control commands to take other action.Winbond MCU control module of the eight selection machine WINBOODW77E58. W77E58 is produced by Taiwan's Winbond, and MCS51 MCU-compatible and can be programmed repeatedly fast microprocessors, integrated within its 32KB of reprogrammable Flash ROM, 256 bytes of on-chip memory, IKB use MOVX instruction accesses the SRAM, a programmable watchdog timer, three 16-bit timers, two enhanced full-duplex serial port, on-chip RC oscillator, dual 16-bit data pointer, and many other features. On many occasions, almost no expansion of peripheral chips can meet the system requirements. Because of its design with a new microprocessor core, to remove and store the extra clock cycles, the crystal in the same frequency, according to the instructions of different types, which generally runs faster than the traditional 8051 Series 1.5 ~ 3 times. In general, an average of up to 2.5times. In addition, because a fully static CMOS design W77E58 can work in low-speed oscillator frequency. 8051 compared with the ordinary, if W77E58 with low frequency, in the same instruction throughput, W77E58 in power, will also be greatly enhanced.4.2 TCP / IP moduleTCP / IP module through RS232 serial communication with the GPRS wireless modules provide non-transparent and transparent two-way channel. Corresponding to the module has two transmission modes: transparent mode and non-transparent mode. Software switch module in a different transmission mode, the data flows are also different. When sending AT command set, the module into the transparent mode, you can directly access the GPRS wireless module; when the module into the non-transparent transmission mode, the user data from the serial port into the TCP / IP module, the first 10 d into the TCP / IP packet, and then Send to a GPRS module through the serial port; GPRS wireless module into its package GPRS GPRS packet data packet transmitted online. TCP / IP module from the 8051 microcontroller-based embedded system. Embedded systems use WINBOODW77E58 as microprocessors, embedded real-time operating systems use uC / OS-II, and then in the uC / OS-II in transplant uIP achieve TCP / IP protocol stack.4.3 GPRS wireless moduleGPRS wireless module as GPRS wireless terminal transceiver module, the From the TCP / IP module receives the TCP / IP packet and from the base station receives the GPRS packet data processing before forwarding the corresponding agreement. SIEMENS GPRS wireless module uses the company's MC35 GPRS modules. MC35 module mainly by the RF antenna, the internal Flash, SRAM, GSM baseband processor, power supply and a matching 40-pin ZIF socket component. GSM baseband processor is the core component, which acts as a protocol processor to handle the external system through the serial port to send over the AT command. Main achieved RF antenna signal modulation and demodulation, and the external RF signal and the internal signal conversion between the baseband processor. Matching power supply for the processor and the RF section provides the necessary power. MC35 GPRS module supports GSM900 and GSMl800 dual-band network, to receive rates up to 86.20kbps, send rates up to 21.5kbps, and easy integration. Maximum data throughput of course, also depends on the GPRS network support.5 TCP / IP software implementation5.1 uC / OS-II in 8051 on the transplantationuC / OS-II software is free, non-commercial use, such as research and teachingare free. Any user can download from the Internet, its source code, through appropriate modifications to be transplanted, hardware and systems to meet their own needs. To transplant, need to understand the uC / OS-II operating system, the overall structure, as shown in Figure 3 is the uC / OS-II structure and the relationship with the hardware.And processor-independent code contains uC / OS-II system function, making the system transplantation generally do not need to modify this part; Just UCOS-II. C file included in your project, you can be uC / OS-II in all MCU independent code contains the code to the transplant.And application-related code is the user according to their own custom application system suitable core services, which includes two files: OS_CFG. H, INCLUDES. H. One OS_CFG. H is used to configure the kernel, users needed to customize the kernel, set the system's basic information, such as system can provide the maximum number of tasks, whether custom mail service, the need for system tasks pending features, the availability of dynamic change task priority function. The INCLUDES. H is the system header files.Processor contains the code related to different types of MCU on the support needs of this part of the MCU according to their own modifications. For the Keil C51 compiler and the technical features of the 8051 chip, uC/OS- Ⅱ transplant and three documents related to: processor associated C file (OS_CPU.H, OS_CPU_C.C) and the compilation of documents (OS_CPU_A.ASM).(1) modify OS_CPU. HFile OS_CPU. H includes the use of # define statements related to the definition of processor constant, macro, and type. Transplantation, the main contents of the amendment are:The data type of compiler-related settings. Keil C51 compiler reference to the help file C51. PDF, the specific path for the \ Keil \ C51 \ HLP \ C51. PDF.use the # define statement defines two macros switch interrupts, the specific implementation are:# Define OS_ENTER_CRITICAL () EA = 0 / / off interrupts# Define OS_EXIT_CRITICAL () EA = 1 / / Open interruptAccording to the 8051 definition of the direction of the stack OS_STK_GROWTH.# Define OS_STK_GROWTH 0 / / 8051 stack increment from the bottom up OS_STK_GROWTH set to 0, that stack from the bottom (low address) up (high address) increments; set OS_STK_GROWTH to 1, indicating the stack from the(high address) down (low address) decrease.uC / OS-II from the low priority task to switch to high-priority tasks need to use OS_STK_SW (), through the implementation of OS_STK_SW () imitation interrupt generation. Will provide the majority of CPU instructions soft interrupt or trap (TRAP) to complete this function. Interrupt service routines or instruction trap handler (also called exception handling functions) of the interrupt vector address must point to the assembly language functions OSCtxSw (). Since 8051 there is no soft interrupt instruction, so instead of using program calls.# Define OS_TASK_SW () OSCtxSw ()(2) modify OS_CPU_C. CuC / OS-II porting examples require the user to write a simple C function 10, which OSTaskStklnit () is necessary, the other nine functions must be declared, but not necessarily contain any code. Because the default Keil C51 compiler to function as non-reentrant structure, but the system requirements for multi-task operation concurrent cause re-entry, so each C function and the declaration marked reentrant keyword, the compiler generated code running in support of the function reentrant. Another "pdata", "data" in uC / OS-II used to do some function parameter, but it is also a Keil C51 keyword, this will cause a compiler error. Usually the "pdata''into" ppdala "," data "into" ddata "to solve this problem. Specific changes to the code as follows:In the 8051's uC / OS-II, the transplanted uIP does not require the existing TCP / IP source code to make any changes, it must be for the network equipment (such as LAN chip, serial, etc.) to write a driver. Meanwhile, the integration of some existing systems have to deal with accordingly, for example, when data arrives or periodic timer count full, etc., the main control system should call uIP function [Liu. Portable concrete steps are as follows:In the directory uip-0.9 / directory to create its own, such as uip-0.9/8051 /;the uip_arch. c file from the directory uip-0.9/unix / copied to the directory uip-0.9/8051 in; it contains the C language with 32-bit adder, checksum algorithm;the uipopt. his ulP configuration file, which includes not only the IP address, such as uIP outlets and at the same time such as setting the maximum connection options, but also the system architecture and C compiler specific options;Reference examples unix / tapdev. c and uip / slipdev. c, write drivers for the serial port;Reference examples unix / main. c, write your own master control system to be called in due course ulP function;Compile the source code.This paper describes the embedded system based on the 8051 implementation of GPRS terminals, and introduces embedded RTOS uC / OS-II based on the 8051 transplant, and small TCP / IP protocol stack uIP transplantation: the use of the GPRS network and the GPRS terminals GPRS Internet to the corresponding terminal and the corresponding Internet terminal for data transfer. In the GPRS terminal TCP / IP module to introduce real time operating system will not only improve the system performance, improve system reliability, and enhance the system scalability and product development can be continuity.2.中文资料基于8051嵌入式系统的GPRS终端实现随着数据无线传输需求的骤增和中画移动GPRS业务全面投入运营,无线数据通信的应用越来越广泛。

计算机英语第三版课后题目答案

计算机英语第三版课后题目答案

Unit One/Section AI.Fill in the blanks with the information given in the text:1.Charles Babbage;Augusta Ada Byron2.input;output3.VLSI4.workstations;mainframes5.vacuum;transistors6.instructions;software7.digit;eight;byte8.microminiaturization;chipII.Translate the following terms or phrases from English into Chinese and vice versa:1.artificial intelligence人工智能2.paper-tape reader纸带阅读器3.optical computer光计算机4.neural network神经网络5.instruction set指令集6.parallel processing并行处理7.difference engine差分机8.versatile logical element通用逻辑元件9.silicon substrate硅衬底10.vacuum tube真空管11.数据的存储与处理the storage and handling of data12.超大规模集成电路very large-scale integrated circuit13.中央处理器central processing unit14.个人计算机personal computer15.模拟计算机analogue computer16.数字计算机digital computer17.通用计算机general-purpose computer18.处理器芯片processor chip19.操作指令operating instructions20.输入设备input deviceIII.Fill in each of the blanks with one of the words given in the following list,makingchanges if necessary:We can define a computer as a device that accepts input,processes data,stores data,andproduces output.According to the mode of processing,computers are either analog or digital.They can also be classified as mainframes,minicomputers,workstations,or microcomputers.All else(for example,the age of the machine)being equal,this categorization provides someindication of the computer’s speed,size,cost,and abilities.Ever since the advent of computers,there have been constant changes.First-generationcomputers of historic significance,such as UNIVAC(通用自动计算机),introduced in theearly 1950s,were based on vacuum tubes.Second-generation computers,appearing in theearly 1960s,were those in which transistors replaced vacuum tubes.In third-generationcomputers,dating from the 1960s,integrated circuits replaced transistors.In fourth-generationcomputers such as microcomputers,which first appeared in the mid-1970s,large-scaleintegration enabled thousands of circuits to be incorporated on one chip.Fifth-generationcomputers are expected to combine very-large-scale integration with sophisticated approachesto computing,including artificial intelligence and true distributed processing.IV.Translate the following passage from English into Chinese:计算机将变得更加先进,也将变得更加容易使用。

常见的军事术语

常见的军事术语

常见的军事术语A:Attacker = 攻击机AA:Anti-Air = 防空AAA:Anti-Air Artillery = 高射炮AAAV:Advanced Amphibious Assault Vehicle = 先进两栖突击车AAM:Air-to-Air Missile = 空对空导弹AAR:Air-to-Air Refueling = 空中加油AAW:Anti-Air Warfare = 防空作战ABL:AirBorne Laser = 机载激光器ABM:Anti-Ballistic Missile = 反弹道导弹ACMS:Air Combat Maneuvering System = 空战机动系统ACV:Armored Combat Vehicle = 装甲战车AEGIS:Airborne Early-warning Ground Integrated System = 空中预警-地面综合系统(神盾) AFV:Armored Fighting Vehicle = 装甲战车AEM&C:Airborne Early Warning and Control = 空中预警与指挥AEW:Airborne Early Warning = 空中早期预警AFB:Air Force Base = 空军基地AGM:Air-to-Ground Missile = 空对地导弹AGS:Advance Gun System = 先进火炮系统AGS:Armored Gun System = 装甲火炮系统AIM:Air Intercept Missile = 拦射空空导弹ALBM:Air-Launched Ballistic Missile = 空射弹道导弹ALCM:Air-Launched Cruise Missile = 空射巡航导弹AMRAAM:Advanced Medium Range Air-to-Air Missile = 先进中程空空导弹APAR:Active Phase-Array Radar = 主动相控阵雷达APC:Armored Personnel Carrier = 装甲人员输送车APFSDS-T:AP Fin-Stab. Discarding Sabot-Tracer = 尾翼稳定脱壳穿甲曳光弹APS:Artillery Pointing System = 火炮指示系统ARM:Anti Radiation Missile = 反辐射导弹ASM:Air-to-Surface Missile = 空对舰导弹ASMS:Advanced Surface Missile System = 先进舰载导弹系统ASRAAM:Advanced Short Range Air-to-Air Missile = 先进短程空空导弹ASROC:Anti-Submarine Rocket = 反潜火箭ASuW:Anti-Surface Warfare = 反面作战ASW:Anti-Submarine War = 反潜ASW:Anti-Submarine Warfare = 反潜作战ATC:Air Traffic Control = 空中交通管制ATGM:Anti-Tank Guided Missile = 反坦克导弹ATM:Advanced Turret Module = 先进炮塔模块AUV:Autonomous Underwater Vehicle = 自主式水下航行器AWAC:Airborne Warning And Control = 空中预警和控制AWACS:Airborne Warning And Control System = 空中预警与指挥系统AWOL:Absent WithOut Leave = 擅离职守;无故离队;开小差B:Bomber = 轰炸机BB:Battle Ship = 战列舰BC:Battle Cruiser = 战列巡洋舰BDA:Battle Damage Assessment = 战斗损害评估BPI:Boost Phase Intercept = 加速阶段拦截BRAA:Bearing, Range, Altitude and Aspect = 目标飞行情况BVR:Beyond Visual Range = 超视距BVRAAM:Beyond Visual Range Air-to-Air Missile = 超视距空空导弹C:Carrier = 运输机C3:Command, Control and Communication = 指挥控制通信系统CAP:Combat Air Patrol = 战斗空中巡逻CAS:Close Air Support = 近距空中支援CASE:Computer Aided Software Engineering = 电脑辅助软件工程CBU:Clustered Bomb Unit = 集束炸弹CENTCOM:CENTral COMmand = 中央司令部CFC:Carbon Fiber Composite = 碳纤维复合材料CC:Cruiser = 巡洋舰CG:Cruiser (Guided-missile) = 导弹巡洋舰CIC:Combat Information Center = 战斗信息中心CIC:Commander in Chief = 最高指挥官CIWS:Close-In Weapon System = 近战武器系统CIWS:Close Intercept Weapon System = 近程防御系统CNO:Chief of Naval Operation = 海军作战部长COMINT:COMmunication INTelligence = 通信情报COMDAC INS:COMmand Display And Control Integrated Navigation System = 集成控制导航系统CR:Close Range = 近程C/S:Course and Speed = 航向与速度CV:Carrier Vessel = 常规动力航空母舰CVN:Carrier Vessel (Nuclear-powered) = 核动力航母CVBG:Carrier Battle Group = 航母战斗群DASS:Defensive Aids Sub-System = 防御性辅助子系统DD:Destroyer = 驱逐舰DDG:Destroyer (Guided-missile) = 导弹驱逐舰DU:Depleted Uranium = 贫铀DVI:Direct Voice Input = 直接语音输入技术E:Electronic = 电子战机ECM:Electronic Counter Measures = 电子对抗,电子战ECCM:Electronic Counter-Counter Measures = 电子反对抗,反电子战ELINT:ELectronic INTelligence = 电子情报EMCON:EMissions CONtrol = 发射控制EML:ElectricMagnet Launcher = 电磁炮EMP:ElectricMagnet Palse = 电磁脉冲ERAAM:Extended Range Air-to-Air Missile = 延程空空导弹ESM:Electronic Signal Measures = 电子信号警告ESM:Electronic Support Measures = 电子支援ETG:Electro Thermal Gun = 电热炮ETCG:Electro Thermal Chemical Gun = 电热化学炮EW:Electronic Warfare = 电子战EW:Early Warning = 预警EWAC:Early Warning And Control= 预警及控制F:Fighter = 战斗机FAE:Fuel Air Explosive = 油气炸弹FCS:Fire Control System = 火控系统FEL:Free Elctron Laser = 自由电子激光器FF:Frigate = 护卫舰FFG:Frigate(Guided-missile) = 导弹护卫舰FLIR:Forward Looking Infra-Red = 前视红外FLOT:Forward Line Of Troops = 前线FMRAAM:Future Medium Range Air-to-Air Missile = 未来中程空空导弹FMTV:Family of Medium Tactical Vehicles = 中型战术车族GEM:Guidance-Enhanced Missile = 制导增强导弹GEO:Geo-Stationary Orbit = 地球同步轨道GPS:Global Positioning System = 全球定位系统GZ:Ground Zero = 核爆炸中心地面投影H:Helicopter = 直升机HE:High Explosive = 高爆炸药HEAT:High-Explosive Anti-Tank = 高爆反坦克炸药(成形炸药)HMD:Helmet Mounted Display = 头盔显示器HPM:High Power Microwave = 高功率微波HQ:HeadQuarters = 总部HUD:Head-Up Display = 抬头显示器HVU:High value Unit = 高价值单位IADS:Integrated Air Defense System = 综合防空系统ICBM:Intercontinental Ballistic Missile = 洲际弹道导弹IFF:Identification of Friend or Foe = 敌我识别IFV:nfantry Fighting Vehicle = 步兵战车IPE:Individual Protection Ensemble = 单兵防护装备IRBM:Intermediate-Range Ballistic Missile = 中程弹道导弹IRST:Infra-Red Search and Track = 红外搜索跟踪JDAM:Joint Direct Attack Munitions = 联合直接攻击弹药JHMCS:Joint Helmet Mounted Cueing System = 联合头盔指引系统JSF:Joint Strike Fighter = 联合打击战斗机J-STAR:Joint Surveillance and Target Attack Radar system = 联合侦察和目标打击系统JTIDS:Joint Tactical Info Distribution System = 联合战术信息分发系统K:Kerosene = 加油机KIA:Kill in Action = 阵亡LANTIRN:Low-Alt. Nav.& Targeting Infra-Red for Night = 低空导航与目标指示红外夜视仪LAV:Light Armored Vehicle = 轻型装甲车辆LCA:Light Combat Aircraft = 轻型战斗机LEO:Low Earth Orbit = 近地轨道LD:Laser Designator = 激光导引LGB:Laser Guided Bomb = 激光制导炸弹LORCAP:Long-Range Combat Air Patrol = 长距离战斗空中巡逻LPT:Low Profile Turret = 低矮炮塔LRBM:Long-Range Ballistic Missile = 远程弹道导弹LRIP:Low Rate Initial Production = 低速试产MBT:Main Battle Tank = 主战坦克MC:Marine Corps = 海军陆战队MCA:Medium Combat Aircraft = 中型战斗机MCM:Mine Counter-Measures = 扫雷MFD:Multi-Function Display = 多功能显示器MFR:Multifunction Radar = 多用途雷达MIA:Missing In Action = 任务中失踪MIL-STD:MILliraty STanDard = 军事标准MLU:Mid-Life Update = 中期延寿(战机)MOPP:Mission-Oriented Protective Posture = 攻击中的防范状态MOAB:Massive Ordnance Air Blast = 巨型空中炸弹MOAB:Mother Of All Bombs = 炸弹之母MPRF:Medium Pulse Repetition Frequency = 中脉冲重复频率MRLS:Multiple Rocket Launching System = 多管火箭发射系统NAVSSI:NAVigation Sensor System Interface = 导航传感器系统界面NCTR:NonCooperative Target Recognition = 非己方目标识别NBC:Nuclear Biological and Chemical = 核、生物、化学OICW:Objective Individual Combat Weapon = 目标单兵战斗武器OOB:Order Of Battle = 战斗序列OPCW:Org. for the Prohibition of Chemical Weapons = 禁止化学武器组织OTH:Over the Horizon = 超视距OWS:Overhead Weapon System = 遥控炮塔P:Patrol = 巡逻机PA:Phase Array = 相控阵PAC:Patriot Advanced Capability = 改进型爱国者导弹PGM:Precision-Guided Munitions = 精确制导炸弹PIM:Path of Intended Motion = 预定机动路线PK:Probability of Kill = 杀伤率PLGR:Precision Lightweight GPS Receiver = 精确轻型GPS接收器R:Reconnaissance = 侦察机RATO:Rocket Assisted Take-Off = 火箭辅助起飞RCS:Radar Cross Section = 雷达截面RLG:Retractable Landing Gear = 回收式起落架ROE:Rules of Engagement = 交战规则ROV:Remote Operated Vehicle = 遥控车辆、飞机RPG:Rocket Propelled Grenade = 火箭助推榴弹RTB:Return To Base = 返回基地RTO:Ready to Take-Off = 起飞准备就绪RWR:Radar Warning Receiver = 雷达告警器SAM:Surface to Air Missile = 防空导弹SAR:Search and Rescue = 搜索救援SAR:Synthetic Aperture Radar = 合成孔径雷达SATCOM:SATellite COMmunication = 卫星通信SDV:Swimmer Delivery Vehicle = 潜水员输送载具SEAD:Suppression of Enemy Air Defense = 压制敌方防空任务SLBM:Submarine-Launched Ballistic Missile = 潜射弹道导弹SLGR:Small Lightweight GPS Receiver = 小型轻便GPS接收器SOP:Standard Operation Procedure = 标准操作程序SRBM:Short-Range Ballistic Missile = 近程弹道导弹SSBN:Ballistic-missile Nuclear-powered Strategic Sub. = 战略导弹核潜艇SSL:Solid State Lasers = 固态激光器SSM:Surface-to-Surface Missile = 地对地导弹SSN:Strike Submarine (Nuclear-powered) = 攻击型核潜艇SSNDS:SSN Direct Support = 直接支援核潜艇SSPK:Single-Shot Probability of Kill = 单发杀伤率START:Strategic Arms Reduction Treaty = 战略武器削减条约STK:Strike = 袭击STN:Satellite Tracking Network = 卫星跟踪网STOL:Short Take Off and Landing = 短距起降STOP:Simultaneous Time on Top = 同时到达SURTASS:SURface Towed Array Sonar System = 水面拖曳阵列声纳系统TASM:Tomahawk Anti-Ship Missile = 战斧反舰导弹TEL:Transporter/Erector/Launcher = 运输/起竖/发射车THAAD:Theater High Altitude Area Defense = 战区高空区域防空TLAM:Tomahawk Land Attack Missile = 战斧对地攻击导弹TMA:Target Motion Analysis = 目标运动分析TOW:Tube-launched Optic-tracked Wire-guided = 光学有线制导管内发射反坦克导弹(陶式导弹)TVC:Thrust Vector Converter = 矢量推力UAV:Unmanned Air Vehicle = 无人驾驶飞行器UCAV:Unmanned Combat Air Vehicle = 无人驾驶战斗飞行器UFCP:Up Front Control Panel =(战机座舱)前部控制屏UUV:Unmanned Underwater Vehicle = 无人水下航行器VIP:Very Importent Person = 重要人物VL:Verticle Landing = 垂直起降VLS:Vertical Launch System = 垂直发射系统VTOL:Vertical Take Off and Landing = 垂直起降WECDIS:Warship Electronic Chart Display and Information Systems = 海图显示和信息系统WRM:War Reserve Materials = 战争物资储备W/S:Weapon System = 武器系统WYPT:Waypoint = 路径点THEATRE MISSILE DEFENSE-TMDNational Missile Defense (NMD)ACM:先进巡航导弹;AFB:空军基地;ALCM:空射巡航导弹;GLCM:陆射巡航导弹;NAS:海军一级航空站;NATO:北约(非美国运载系统);NWS:海军兵器站;SLCM:海射巡航导弹;SRAM:短程攻击导弹。

System for providing integrated monitoring, contro

System for providing integrated monitoring, contro

专利名称:System for providing integrated monitoring, control and diagnostics functions forsemiconductor spray process tools发明人:Jay J. Seaton,Michael Allen,DonaldLandis,Patrick Lee,David Linzy,Susan B. Luca申请号:US08/430329申请日:19950428公开号:US05591299A公开日:19970107专利内容由知识产权出版社提供摘要:Method and apparatus for providing integrated monitoring, control and diagnostics functions for semiconductor spray processors is disclosed. In a preferred embodiment, a spray processor host system of the present invention comprises a plurality of PC-class computers interconnected via a network link. Each of a first subset of the spray processor host system computers comprises a supervisor computer connected to one of a plurality of spray process tools, which in the preferred embodiment comprise Mercury® MP processors. The supervisor computers provide ongoing information exchange with the processors and maintain up- to-date status information. Each supervisor computer maintains an event log of processor operations and operator actions, as well as data capture files for storing process variables captured by the supervisor computer. Each of a second subset of the spray processor host system computers comprises an engineer computer for providing the system operator with a command driven interface to the spray processor host system. Each engineer computer can monitor a plurality of supervisor computers and is used to enable such functions asrecipe directory editing, recipe downloading, event log searching, data capture file data graphing and processor status viewing. A third subset of the spray processor host system computers comprises a bridge computer for providing a communications link between the supervisor computers and a upstream host computer outside the spray processor host system, for example, a lot scheduling or material flow control computer.申请人:ADVANCED MICRO DEVICES, INC.代理机构:Haynes and Boone, LP.更多信息请下载全文后查看。

Control system for pay-per-use applications

Control system for pay-per-use applications
专利内容由知识产权出版社提供
专利名称:Control system for pay-per-use applications 发明人:John Anthony Sharrow 申请号:US08/967671 申请日:19971110 公开号:US06061668A 公开日:20000509
摘要:An integrated electronic system consisting of a network of appliances and machines, such as clothes washers and dryers, vendient, controlled from a central management computer. Each networked apparatus is uniquely identified, and is maintained in an inoperative standby state, until a prospective user has a valid account for payment, and authorizes stated charges to be billed to their account, or optionally has presented a charge card, thus paying for use of the respective appliance or machine. Account information is maintained and processed in the central management computer, which can be interactively linked to a separate billing system, property management system, or financial institution, thereby automating the verification and billing process. Message data can be sent to and displayed on any or all appliances and machines, a periodic polling of the network ensures security, and an audit trail is generated, with the operational history of each apparatus on the network. Operation of any or all appliances and machines on the network can be inhibited, on command from the central management computer, and the system has extensive maintenance and diagnostic capabilities.

介绍中国空军英语作文

介绍中国空军英语作文

介绍中国空军英语作文The Chinese Air Force is the aviation branch of the People's Liberation Army, responsible for the air defense of China and the projection of air power. Established in 1949, the Chinese Air Force has evolved from a small force into one of the largest and most technologically advanced air forces in the world. With a focus on modernization and the development of advanced aircraft and weaponry, the Chinese Air Force plays a crucial role in China's national defense strategy.One of the key strengths of the Chinese Air Force is its vast fleet of aircraft. The force operates a wide range of fighters, bombers, transport planes, and support aircraft, including the J-10, J-16, and J-20 fighter jets, the H-6 bomber, and the Y-20 strategic transport. These aircraft are equipped with cutting-edge technology and are capable of performing a variety of missions, from air-to-air combat and ground attack to strategic bombing and air transport.In addition to its impressive fleet, the Chinese Air Force is also known for its advanced air defense systems. The force operates acomprehensive network of surface-to-air missile systems, including the HQ-9 and HQ-22, which are capable of engaging a wide range of aerial targets, from aircraft to ballistic missiles. These systems are integrated with a sophisticated early warning and command-and-control system, allowing the Chinese Air Force to effectively detect and respond to potential threats.Another notable aspect of the Chinese Air Force is its focus on the development of unmanned aerial vehicles (UAVs) and other advanced technologies. The force operates a variety of UAVs, including the CH-4 and Wing Loong, which are used for reconnaissance, surveillance, and strike missions. Additionally, the Chinese Air Force is investing heavily in the development of hypersonic missiles, stealth aircraft, and other cutting-edge technologies that are designed to enhance its combat capabilities.One of the key priorities of the Chinese Air Force is the training and development of its personnel. The force operates a network of air force academies and training bases, where pilots, maintenance crews, and other personnel receive extensive training to ensure they are prepared for a wide range of operational scenarios. This focus on training and readiness is a critical component of the Chinese Air Force's overall strategy, as it allows the force to maintain a high level of combat readiness and respond effectively to emerging threats.In addition to its domestic responsibilities, the Chinese Air Force also plays an important role in China's global engagement and diplomacy. The force has participated in a number of international exercises and operations, including joint training exercises with other countries and peacekeeping missions. These engagements help to strengthen China's relationships with other nations and demonstrate the country's commitment to regional and global security.Despite its impressive capabilities, the Chinese Air Force also faces a number of challenges and limitations. One of the key challenges is the need to continue modernizing and upgrading its aircraft and equipment to keep pace with the rapid technological advancements in the global aviation industry. Additionally, the force must contend with the need to maintain a large and complex logistics and support infrastructure, as well as the ongoing challenge of recruiting and retaining highly skilled personnel.Despite these challenges, the Chinese Air Force remains a formidable and rapidly evolving force that is poised to play an increasingly important role in China's national defense and global engagement. With its focus on modernization, technological innovation, and personnel development, the Chinese Air Force is well-positioned to meet the challenges of the 21st century and to continue to serve as a crucial component of China's overall military strategy.。

Royal Air Force Command and Control Application说明书

Royal Air Force Command and Control Application说明书

The challengeThe Royal Air Force needed to be able to monitor and exercise Command and Control over its operational aircraft worldwide.The RAF’s task is a complex one with operationsoverseas as well as day-to-day training for operations in the UK; they needed an application that could replace their disparate, standalone systems.The lack of a cohesive database meant that air traffic control and operations staff had to phone from base to base to manage flying programmes. Phones were often engaged, out of date information was received and operations staff had to use manual display boards to map the progress of aircraft - archaic and time consuming.The solutionRASDA, the Replicated Air Support Decision Aid, was developed and is now an important part of the RAF’s SECRET level operational systems at bases at home and abroad.RASDA uses Oracle technology , functioning in a Windows environment to provide a flexible and easy to use solution, adaptable to the RAF needs. It uses advanced replication methods to ensure that data is accurately passed around the system and all users have the same information.Fujitsu designed and built the solution, and continues to provide support, working closely with the customer toimplement any changes required.Benefits for our CustomerThe preparation and dissemination of the operational flying programme is now available on one database along with information such as the storage of crew qualifications and currency; the toting of aircraft serviceability and other information to support flying operations.‘RASDA has evolved over time, and the good workingrelationship with Fujitsu has been beneficial to its continuing role in operations.’Flight Lieutenant Chris Davies - RAF Air CommandSUMMARY OF KEY FACTSOrganisationThe Royal Air Force Contract signing date November 1999Service/s deliveredDesign, build, operation and delivery of roll Benefits For MOD• See who is in the air on one screen • A single source of data• Easy management of operations • Uninterrupted operations• Instant access to information at all levels • Integrated with other key applicationsOur ApproachIn the development phase, Fujitsu worked closely withthe customer to identify the functionality of RASDA to make it do what they wanted.Fujitsu used rapid prototyping techniques to develop Oracle forms in conjunction with users in workshops. This enables RASDA to be implemented in phases rolling out updates at user request.RASDA became operational in June 2000 and future developments will migrate onto the DII infrastructure.RASDA is SECRET as standard, but plans are being made to also allow RESTRICTED operation for suchinformation as air traffic control and flight times.Our Expertise Management of the system is very hands-on, with regular meetings at which changes, improvements or problems are discussed and planned with members of the user community .Fujitsu developed the RAF CCIS infrastructure and therefore was a low risk partner for RASDA.Same operational picture seen worldwide Theflying programme information is replicated throughout the system within seconds so that staff and seniorcommanders have visibility of operations throughout all theatres where ever they are in the world.Flexible and evolving The system is flexible and, as procedures evolve, Fujitsu works with the customer to make the necessary changes.More effective way of working Over time, RASDAhas saved the RAF a lot of staff time by eliminating the need for phone calls and the use of manpower to carry out the intensive methods to store and share secure information.Part of a greater Network Enabled Air Commandsystem RASDA has features that allow it to interact with other applications with web features. These capabilities allow RASDA to be fully web enabled and interact with other Air Command and Control systems. This makes it part of a wider Network Enabled Air Command system.。

五年前和五年后家的变化英语作文

五年前和五年后家的变化英语作文

五年前和五年后家的变化英语作文全文共3篇示例,供读者参考篇1My Home: Then and NowIf you had visited my home five years ago, it would have seemed like a pretty ordinary place. Just a regular house in a regular neighborhood filled with the regular trappings of family life. But a lot can change in half a decade, and I expect my home to be quite different five years from now.Five Years AgoWhen I think back to 2019, I remember our home as being a cramped but cozy place. We lived in a three-bedroom ranch house that always felt just a little too small for our family of five. My parents' bedroom was tiny, with just enough space for their double bed and two nightstands. My brother and I shared the slightly larger room across the hall, our twin beds crammed into the corners.The living room served as the main gathering area, with an old but comfortable couch facing the TV. We didn't have cable, so we relied on streaming services and a pretty slow internetconnection for our entertainment. My brother and I would often argue over what to watch or play on the family computer, which was an ancient desktop PC set up on a small desk in the corner.Our kitchen was stuck in the 1980s, with dingy white appliances, wood-paneled cabinets, and a hideous mustard yellow color on the walls. But it was functional and the dining table provided a place for us to enjoy my mom's home cooked meals together every night as a family.In the backyard, we had a pretty basic patio area with an old charcoal grill and some plastic patio furniture. The lawn was mostly crabgrass and weeds, despite my dad's efforts. We had an ancient rusting swing set that my brother and I had basically outgrown by 2019. Overall, it was a humble but comfortable home for our middle-class family.Five Years From NowFast forward to 2029 though, and I imagine my home is going to look dramatically different. For one, I don't think we'll still be living in that same little ranch house. My parents have been talking about either doing a huge renovation and addition or potentially moving to a bigger place once my brother and I have graduated high school and moved out.Whichever path they choose, I'm sure the physical structure and layout is going to be radically transformed. Maybe we'll have a huge open concept layout on the main floor with a gourmet kitchen featuring high-end stainless steel appliances, granite countertops, and a massive island for casual dining and entertaining. I could see adding a four-seasons sunroom off the back as well, creating a comfortable indoor/outdoor living space.In the living room, I bet we'll get rid of that old couch and chair set and replace it with some modern, minimalistic furniture. More of a grown-up, sophisticated look. And of course we'd have a huge 4K or even 8K flat screen TV mounted over the fireplace. We'll definitely need to upgrade our internet as well for streaming ultra high-definition video, gaming, and whatever new tech emerges in the coming years.I could definitely picture the bedrooms getting an overhaul too. My parents may redo the master suite to have a huge walk-in closet and en-suite bathroom with a luxurious glass shower and separate soaking tub. Maybe my old bedroom would get transformed into a home office or gym once I've moved out.On the technology front, I'm sure smart home devices like intelligent assistants, home automation systems, and the latest Internet of Things gadgets will be integrated throughout thehouse. Lights, climate control, security, entertainment - all of it seamlessly controlled by voice commands, apps, or even just automatically adjusting based on our routines and preferences. We'll probably have some kind of home energy management system too for monitoring and reducing our electricity and heating/cooling usage.Outside, I could see us finally landscaping the backyard properly. Maybe adding a slick composite or stone patio area along with some fancy outdoor furniture - couches, a firepit table, even an outdoor kitchen and bar area. Upscale landscaping with sculpted gardens, pathways, exterior lighting, and the perfect lush green lawn. If budget allowed, a swimming pool or hot tub wouldn't be out of the question either!For transportation, I'm sure we'll be part of the electric and self-driving vehicle revolution by 2029. Some kind of modern electric or hybrid car for my parents, maybe even a self-driving model that could whisk them off to work while they relax. And for me, assuming I'm out of college, I'd love to have an efficient and eco-friendly electric motorcycle, scooter, or maybe even a self-driving el-car for zipping around the city.That's just scratching the surface too. Who knows what other new technologies will become mainstream by then? Powerfulhome computing setups, virtual reality entertainment systems, domestic robotics, 3D printing at home, smart appliances and infrastructure... the possibilities are endless for upgrading and enhancing our home life.Of course, with all these potential upgrades and improvements, the downside is the cost. While we were a pretty typical middle-class household five years ago, we may need to be significantly more affluent to afford that kind of higher-end, high-tech lifestyle in 2029. Part of me wonders if we'll even still be in the same town and neighborhood, or if we'll need to move somewhere new to match our changed economic situation.So in many ways, I expect my home environment could shift dramatically over the next five years. While the cozy, lived-in house I grew up in was certainly humble, a new era of automation, smart technology, and modern luxury seems to be on the horizon. Only time will tell just how cutting edge and advanced my family's home ends up becoming. But I'm definitely excited to imagine all the mind-blowing possibilities! After all, my childhood home will always hold a special sense of nostalgia and fond memories for me, but who wouldn't want to take advantage of the latest in futuristic living?篇2My Home: Then, Now, and Looking AheadAs I sit here in my childhood bedroom, I can't help but reflect on how much this space has transformed over the years. When I think back to five years ago, it's almost like recalling a different lifetime. The walls were a bright, vibrant blue that myeight-year-old self had insisted on, and the floor was a constant battlefield of Lego bricks and discarded toys. But now, as a teenager on the cusp of adulthood, my room has undergone a metamorphosis that mirrors my own personal growth.Five years ago, my bed was a cozy little racecar that I would excitedly dive into each night, imagining myself as a skilled driver navigating the twists and turns of an exhilarating racetrack. Nowadays, that whimsical piece of furniture has been replaced by a more mature, albeit less thrilling, queen-sized bed. The walls have shed their bold hue in favor of a more muted, calming gray – a reflection of my newfound appreciation for minimalism and serenity.Perhaps the most significant change, however, is the addition of a desk tucked neatly into the corner of my room. This humble workspace has become the command center for my academic pursuits, playing host to countless hours of studying, writing, and the occasional bout of procrastination (we're allguilty of that, aren't we?). Its surface is a testament to theever-increasing demands of my education, with textbooks, notebooks, and the occasional energy drink can vying for real estate.But my room isn't the only thing that has transformed over the past five years; our entire home has undergone a remarkable evolution. The once-vibrant living room, where my siblings and I would engage in raucous playtime, has now become a more subdued space for family gatherings and the occasional movie night. The kitchen, once a whirlwind of culinary chaos, has been remodeled into a sleek, modern oasis where my parents can indulge their newfound passion for gourmet cooking.As I look ahead to the next five years, I can only imagine the changes that await our humble abode. Perhaps my bedroom will undergo yet another transformation, shedding its remnants of adolescence and embracing a more sophisticated, adult aesthetic. Or maybe the living room will be repurposed into a cozy home office, as remote work becomes increasingly prevalent.One thing is certain, though: our home will continue to evolve, just as our family does. The walls that have witnessed our laughter, our tears, and our growth will bear the scars of time,each scratch and dent a cherished memory etched into the very fabric of our lives.In five years, I may very well be writing this essay from the comfort of a college dorm room or a cozy apartment in a new city. But no matter where life takes me, this house – with all its quirks, its history, and its ever-changing nature – will always be my home. It is the canvas upon which the masterpiece of my life has been painted, and I can't wait to see what the next five years have in store for this remarkable place.篇3My Home: Then, Now, and In Five YearsHome is where the heart is, or so the saying goes. For me, home has always been a place of comfort, familiarity, and cherished memories. However, just as life is a constant journey of change and growth, so too does the place we call home evolve and transform over time. As I reflect on the past five years and contemplate the next five, I can't help but marvel at the remarkable metamorphosis my humble abode has undergone and the exciting prospects that lie ahead.Five Years AgoHalf a decade ago, our home was a modest two-story dwelling, nestled in a quiet suburban neighborhood. The faded beige exterior stood as a testament to the years of laughter, tears, and memories it had witnessed. Inside, the decor was a delightful fusion of hand-me-down furniture and thrift store finds, each piece holding a story of its own.The living room was the heart of our home, where we gathered for movie nights, board game battles, and lively discussions. The well-worn couches, adorned with mismatched throw pillows, invited us to sink in and let the stress of the day melt away. The rickety coffee table, with its chipped veneer and countless water ring stains, served as a canvas for our creativity, adorned with half-finished jigsaw puzzles and scattered art supplies.Down the hall, the kitchen was a symphony of organized chaos. Mismatched plates and mugs adorned the open shelves, a testament to our eclectic tastes and the many yard sales we frequented. The ancient oven, with its temperamental nature, challenged our culinary skills, but the aroma of freshly baked cookies or a sizzling Sunday roast made every effort worthwhile.Upstairs, our bedrooms were sanctuaries of self-expression. My room, with its vibrant blue walls and posters of my favoritebands, reflected my teenage spirit. My sister's domain, adorned with delicate fairy lights and an ever-growing collection of stuffed animals, was a whimsical escape from reality.Despite its quirks and imperfections, our home was a tapestry woven with love, laughter, and cherished memories. It was a place where we could be ourselves, a haven from the outside world, and a constant reminder of the unbreakable bonds that tied our family together.Present DayFast forward to the present, and our home has undergone a remarkable transformation. The once-faded exterior now boasts a fresh coat of crisp white paint, complemented by a meticulously landscaped garden that bursts with vibrant hues in every season. Inside, the decor has been given a modern facelift, blending contemporary styles with sentimental pieces from our past.The living room has shed its well-worn charm in favor of sleek, minimalist furnishings. A plush sectional sofa invites us to lounge in comfort, while a state-of-the-art entertainment system promises immersive movie experiences. Yet, amidst the modern touches, the same rickety coffee table remains, a beloved relic that anchors us to our roots.The kitchen, once a hub of chaos, has been transformed into a chef's dream. Gleaming stainless steel appliances and ample counter space make meal preparation a breeze, while theopen-concept design seamlessly connects the cooking area to the adjacent dining room, fostering a sense of togetherness during mealtimes.Upstairs, our bedrooms have evolved to reflect our changing tastes and lifestyles. My sanctuary now exudes a calming, minimalist aesthetic, with plush textiles and soft lighting creating a serene oasis for rest and rejuvenation. My sister's room, once a whimsical wonderland, has matured into a chic and sophisticated space, complete with a cozy reading nook and a meticulously organized walk-in closet.While the physical structure of our home has undergone a remarkable transformation, its essence remains unchanged. It is still a place where we can retreat from the world, a sanctuary that shelters us from life's storms, and a canvas upon which we can paint new memories and experiences.Five Years From NowAs I gaze into the proverbial crystal ball, I can't help but wonder what the next five years hold for our ever-evolving home. Will it continue to adapt to our changing needs and preferences,or will we outgrow its confines and seek a new dwelling altogether?One possibility is that our home will undergo a significant expansion or renovation to accommodate a growing family. Perhaps we'll add a cozy sunroom, perfect for lazy Sunday mornings with a steaming cup of coffee and a good book. Or maybe we'll finally tackle that long-awaited kitchen remodel, creating a gourmet haven that would make even the most seasoned chef envious.Alternatively, we may seek a fresh start in a new location, trading the familiar comforts of our current abode for the excitement of a new adventure. A charming countryside cottage, nestled amidst rolling hills and babbling brooks, could beckon us to embrace a slower, more serene pace of life. Or perhaps the allure of the city will prove irresistible, drawing us to a chic urban loft where we can immerse ourselves in the vibrant pulse of metropolitan living.Regardless of the path our home takes, one thing is certain: it will continue to be a reflection of our ever-evolving journey through life. Just as our family grows and changes, so too will the walls that shelter us, adapting to our needs, aspirations, and cherished moments.Whether we remain in our current dwelling or embark on a new adventure, our home will forever be a sanctuary, a place where memories are made and love is nurtured. It will be a canvas upon which we can paint the vibrant hues of our lived experiences, a tapestry woven with the threads of laughter, tears, and the countless moments that make life worth living.In the end, home is not merely a physical structure; it is a state of being, a feeling that transcends brick and mortar. It is the place where our hearts reside, where our souls find solace, and where we can truly be ourselves. And as I stand on the precipice of the next five years, I eagerly anticipate the transformations and adventures that await, secure in the knowledge that wherever life takes us, home will always be a constant, a grounding force amidst the ever-changing tides of time.。

EnterpriseSecurity

EnterpriseSecurity

Enterprise SecurityOverviewTridium’s Enterprise Security is a comprehensive access control and security management solution, built on a truly open, IP based platform. Developed using the Niagara AX Framework, Enterprise Security provides unparalleled interoperability not only within traditional security environments, but also extends seamlessly to create a unified, intelligent building by integrating with today’s diverse facility systems including environmental controls, lighting, energy management, fire and video.With Niagara deployed worldwide, the core architecture of Enterprise Security is proven and designed to solve the complexities of integrating disparate systems in real world scenarios.Enterprise Security provides scalability ranging from single door solutions to multi-building/multi-campus deployments. Entirely accessible from any standard web browser, the solution provides flexible anytime,anywhere access into the system while liberating end users from dedicated client workstations in the traditional client /server model. Enterprise Security is open- open architecture, open framework, open distribution and open protocol support.By integrating today’s diverse building systems such as environmental controls, security, lighting, energy, fire and video, the Niagara AX Framework is creating better buildings—ones that are smarter, use less energy, are more efficient, have lower operating costs, are safer and contribute to a sustainable environment.FeaturesE N T E R P R I S E S E C U R I TY•Truly open solution-connectivity via oBIX, BACnet, SNMP, Modbus, and other non-proprietary protocols•Web based security application – easily managed via a standard browser anytime, anywhere• Supports database connectivity to MS SQL Server 2003 and MySQL• Open framework solution for connectivity to edge devices• Distributed architecture provides high availability at remote locations • Common GUI experience regardless of manufacturer or protocol• Centrally managed card holder and credential database•Integrated video solution with interfaces to many leading video manufacturers• Multiple access cards per person • Quick access to video playback related to individual alarm events• UL-294 and CE listed systems available • All-in-one controller that provides access control, HVAC, and video from single device •Built on Tridium’s highly successfully Niagara AX Framework, the industry’s leading facility management software platform• Comprehensive occupancy restriction rules through access zone functionality • Supervisor rule enforcement • Occupancy counting• Scheduled unlock on first validation • Elevator control•Live credential enrollment from any card readerE N T E R P R I S E S E C U R I T YApplication HighlightsEnterprise Level Browser Based SystemTridium’s Enterprise Security solution was built from the ground up on web enabled technologies. Completesystem functionality, system configuration and monitoring are available anytime, anywhere from any standard browser interface removing the PC requirements present in traditional client / server architectures. Video and Graphics SupportComplete integrated facility command and control from a common user experience. Accessible through any standard web browser, with real time information frommany different systems presented through an intuitive, easy to use interface. Also integrates video with access control, building automation and energy management.Activity MonitorComprehensive system wide event viewer provides instant feedback on card access traffic, system administration changes and status updates on system arm/disarm. System activity is stored as historical data and can be retrieved through comprehensive built in reporting tools. Search using a standard list of pre-defined reports orgenerate custom reports using powerful ad-hoc reporting capabilities.Extensive Access Zone ManagementIn addition to common access control functions, enterprise security includes comprehensive rule based access control through access zone management. The system provides one click global lock down as well as supervisor rule enforcement thereby restricting access to areas unless appropriate supervisory staff is present. The extensive occupancy counting functions allow access restrictions based on maximum and minimum number of occupants. Occupancy data can be used to automatically adjust building comfort controls by leveraging the extensive facility integration capabilities.Powerful Integration ToolsetA comprehensive, integrated toolset is a fundamental part of the Tridium Enterprise Security offering. The graphical toolset enables non-programmers (domain experts) to extend the capabilities of the standard product.Using the toolset, integrators can integrate BuildingAutomation, Energy Management, Lighting Control and a wide range of custom solutions tailored to their end user’s needs — all while working in a powerful drag-and-drop, graphical programming environment.E N T E R P R I S E S E C U R I T YOrdering InformationEnterprise Security Server ApplicationsE N T E R P R I S E S E C U R I T YHVAC ControlTemperature MonitoringApplicationSpeci c DevicesLighting ControlIntrusion DetectionAccess ControlAXSupervisorBACnet Equipment Control Industrial DevicesTime and AttendanceAlarm MonitoringNetwork RecorderIP VideoDigital RecorderHTTP , XML, BACnet, SNMP, oBIXWireless Control DevicesWebBrowserBuilding EnergySecurity VideoArchitectureDS-ENTSEC-052009JACE, AX Supervisor, and Niagara liability to provide changes to prior purchasers. Information and specifications published here are current as of the date of publication of this document. Tridium, Inc., reserves the right to change or modify specifications without prior notice. The latest productSpecificationsThese are preliminary values and are subject to change as the system capacity testing is completed.Server Platform Minimum RequirementsAdditional Specifications Supported Databases:• Default : MySQL• Optional : MS SQL Server 2003 or higher Certified Web Browsers • IE 6.0, Firefox 2.0Java VM version - 1.5.0 or higher。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

An Integrated System for Command and Control ofCooperative Robotic SystemsChristopher M. Clark, Eric W. Frew, Henry L. Jones, & Stephen M. RockAerospace Robotics LabDepartment of Aeronautics & AstronauticsStanford University{chrisc, ewf, hlj, rock}@AbstractPresented is an expe im ntal investigation into three issues that enable increased autonomous functionality when using mobile robots. These issues are (1) interfacing a single user with multiple r bots, (2) motion planning for multiple robots, and (3) r bot traject ry generation for target tracking. For this research, the Micro Aut nom us RoverS (MARS) test platform was developed that provides a means for implementing this technology on laboratory robots. Experim ntal results are presented in which a single user is able to command a group of robots to carry out tasks including collision-fr e motion and target tracking. r e o o o o o e e e o t s e1. IntroductionCurrently, remote robotic systems require many humans to operate a single robot. The goal for future systems is to require only one operator for many robots. For example, future space structure construction would benefit from the availability of a large group of robots that can be operated by a small group of humans.While there has been a significant amount of research towards the operation of single remote robots, more work is still required towards the operation of groups of robots. In particular, an increased degree of autonomy must be given to the robots. To realize this autonomy, a variety of fundamental capabilities must be enabled that include: (1) Providing an interface from whichadequate information for decision-making isavailable to th human, and commands to one or several of the robots can be executed. (2) Providing autonom us, real-imeconstruction of collision-free trajectorie for all robots in the group(3) Providing robot trajectory generation that enabl s tracking of moving objects.In previous work, we addressed each of these issues: Jones [6] developed an interface that allows a single human to operate many robots; Clark [2] designed a multi-robot motion planner; and Frew [4] designed a trajectory generator that provides near-optimal solutions for object motionestimation.Figure 1: Rovers from the MARS test platform.In this paper, we present an integrated system demonstration of these technologies.The paper is organized as follows. Section 2 provides a brief description of each of the three research projects. In Section 3, the Micro Autonomous RoverS (MARS) test platform and its application to this research is described. Section 4 details a final demonstration that summarizes the previous research as an integrated system. Conclusions are presented in Section 5.2. Technological Issues2.1. Human InterfaceFor a single human to operate a multi-robot system, the human must have access to all relevant information about the remote environment so that appropriate commands can be executed. Also, the human must be provided with a means of executing these commands to one or several of the robots.In [6], Jones developed an interface based on dialogues between the human and the robots as an effective method for operating multiple robots. In particular, Jones addressed the following issues:- Establishing the structure and scope of thedialogue- Creating a robot infrast ucture capable of conducting an effective dialoguer e - Determining methods for dealing with the social conventions of dialogues- Developing an interface that allows the operator to carry out the dialogu with the robotic system.His result is an implementation of a dialogue interaction patterned after the task-oriented dialogues common in human teams. The hypothesis is that similar dialogues can play a useful role within human-robot teams. The interface was implemented using OpenGL to provide a three-dimensional view of the robot environment. An example screen-shot is shown in Figure 2. Dialogue through the interface takes place electronically rather than through voice. The dialogue begins when objects are selected byclicking on them on the screen. The interface thenresolves the identity of the object and the robot that sensed the object. The interface waits until aresponse from the correct robot has been returnedin the form of a list of tasks that the robot canaccomplish on that object. This list is then displayed in a dialog that pops up next to the object. The user can select from this list of tasks, and the complete command of robot/task/object is sent to the robot for execution.Figure 2: Screen shot of the human-r bot inte face.o rThe screen-shot in Figure 2 provides an example of the interface in use. Two robots (denoted by white cylinders) and 3 objects are located on the test bed workspace. The operator has queried the robot agents to determine what tasks can be performed on the object at the left side of the screen. A pop-upmenu has appeared with a list of the query results.Jones showed that it is possible to build a dialogue-based interaction that enables the control of multiple robots. This interaction, as implemented in a virtual three-dimensional world, provided an intuitive point-and-click method for determining the capabilities of the robot in the appropriate context, and enabled the operator to participate in the resource management and task planning for the robots. 2.2 Motion PlanningWhen large groups of robots and moving obstaclesare working together within a designated area, high-level motion planning is required to avoid collisions. Continuous communication between all robots may not be feasible, and no system of sensors can provide global knowledge. Also, tofunction in a dynamic environment with moving obstacles, the system must be able to react quickly. For this type of multi-robot system, a motion planner that does not need global knowledge or high bandwidth communication, but that can still plan in real-time, is required.A motion planning system that meets this requirement was developed by Clark [2]. The algorithm presented was based on the planner developed by Hsu and Kindel [5]. Their work demonstrates the use of a Kinodynamic Randomized Motion Planner for a single robot maneuvering around stationary and moving obstacles.To handle more than one robot, the Kinodynamic Randomized Motion Planner was extended. In the extended planner, when robots detect one another using local sensors, they communicate with each other. Using a priority system, the robots coordinate their motion plans to avoid collisions. Each robot creates a plan with knowledge of only the few obstacles surrounding it. By planning around only those objects within the robot’s local area, the motion planning problem is greatly simplified leading to decreased planning times. When new objects enter the robot’s field of view, are-plan is called for to ensure that the robot's trajectory is collision-free.An example of a simulation involving 10 rovers, and 5 stationary obstacles is provided if Figure 3. Smaller circles represent the micro-rovers as viewed from above, while crosses represent goal locations and larger circles represent obstacles. Trajectories constructed by each robot's motion planner are indicated with lines that lead to goal locations.The motion planner demonstrated its effectiveness in planning for a large number of robots within a bounded workspace. It planned with a high probability of success, even in "cluttered" environments involving 5 to 15 robots, stationary obstacles and moving obstacles. Planning times on the order of 0.1 s allowed the robots to re-plan in real-time and react quickly to changes in the environment. Although the motion planner was applied to a 2D workspace, it should be noted that the planner is extendible to 3D workspaces.a)b)c) d)e) f)Figure 3: Motion planning simulation example involving 10 rob ts and 5 obstacles. Figure a) illustrates rovers, their goals, and obstacles before the simulation. In b), the simulation has just begun and all rovers have constructed their first plan.Examples of real-time planning on the fly are shown in c) and d). (No e that some initial trajectories pass through obstacles, but as the robots come close enough to sens them, they replan to avoid them.) Finally, in e) the rovers have constructed their last trajctory and are headed towards their respective goal location. Figure f) shows all but one rove having rea hed their goal location.oter c2.3 Trajectory Design for Object State EstimationObject motion estimation is a core capability of autonomous robots. One solution to this problem can be achieved with a single camera by fusing image track data from a single feature with camera motion measurements. Such a system takes advantage of sensors already expected on a human-guided robot (motion sensors that enable navigation and cameras that provide situational awareness) and therefore requires little additional payload. Furthermore, a single camera solution adds redundancy and fault tolerance to current systems that use multiple cameras, combinations of cameras and scanning lasers, or stored environment models [3] [7].Object motion estimation using bearing sensors such as monocular vision has been well studied [1] [8]. The key features of this problem are that the object position and velocity are unobservable at any instant in time and that performance of the estimator is a strong function of the camera trajectory. Exploiting this dependence, Frew [4] developed a new trajectory design method that maximizes the information content provided to the estimation filter. The three main issues addressed by this new method are inclusion of the monocular vision field of view constraints, the quick generation of near-optimal trajectories, and the dependence of the optimal solution on the uncertain object state – the very parameter being estimated.The new trajectory design method uses a pyramid, breadth-first search to generate paths in real-time that achieve a minimum estimate uncertainty bound in fixed time or a desired uncertainty bound in minimum time. The robot trajectories are parameterized as a series of constant-heading, fixed-speed maneuvers. By balancing the trade offs between several design parameters, including the number of maneuvers, size of the discretized heading space, and number of iterations, the new method creates trajectories that achieve near-optimal performance at greatly reduced planning cost and time. Additionally, the design method continually updates the trajectory as new data becomes available and the object estimate converges.Provided is an example of a simulation that uses the new design method to estimate an object moving with a constant velocity of (0.0, -0.015) m/s. The method is called using the fixed-time minimum-uncertainty cost. The robot is allowed five, 6.0 second maneuvers, the heading space is discretized into five intervals, and the pyramid iteration is performed four times. The resulting observer path is shown in Figure 4a) along with the true target path and the evolution of the target estimate over the course of the run. Figure 4b) shows the position errors as a function of time. As expected the error in the y-dimension stays small throughout the run while the error in the x-dimension, which corresponds closely to the object range, takes more time to converge.a)b)Figure 4: Example of a simulation tha implements the new trajectory design method. Figure a) illustrates the resultant robot trajectory while b) displays the target position error as a function of time.t3. MARS Test Platform-New dialogue capabilities were added to the GUI to allow a user to access the new functionalities.The Micro-Autonomous Rovers test platform provides a two-dimensional workspace for researching autonomous rovers. The platform consists of a 12’ x 9’ granite table with six autonomous robots that move about the table’s surface. Each robot has its own planner located off-board. Control signal processing is also done off-board, and the control signals are sent to the individual robots via a wireless RC signal. An overhead vision system provides position sensing using three cameras to detect LED’s mounted on the top surface of robots. -New display symbology was added to the GUI to provide users with the necessary information for the increased functionality.All communication within the MARS platform is accomplished with Real Time Innovation's Network Data Delivery Service software, which works on a publish/subscribe architecture. Hence every node on the network can send and receive different data types. The flow of this data is illustrated in Figure 5.Figure 5: Data Flow in the MARS t st platform . e o t -The tracking robot mounted with the camera was given highest priority for motion planning. This forced all other r bots to construct their trajectories around it.-A common communication protocol between all components was established.-A central clock enabling ime synchronization across the robots was established.The following experiment shows the integration of the three research efforts. The GUI is used to operate multiple robots that use their planners to avoid collisions and locate targets.At the start of the experiment, the robot at the bottom of the picture is first commanded to follow the robot with the camera on the left, (see Figure 5a). It will try to maintain a distance of thirty centimeters from the camera robot. Next, the camera robot detects the target, in this case the robot at the top. In Figure 5b), it is commanded to reduce the uncertainty of the location estimate. The last robot is tasked to move across the table as shown in Figure 5c). The trajectory constructed by the planner is denoted by the curved red line. This motion will bring it in front of and in conflict with the camera robot. In Figure 5d), this last robot senses a conflict with the camera robot and re-plans its path. This new path is created in real time and there is nonoticeable discontinuity in the robot’s motion.To achieve on-board vision, a wireless camera is mounted on the top of one MARS rover looking downward towards the ground. The unit is commercially available and is integrated with a 2.4 GHz wireless video transmitter. Objects are outfitted with an LED to facilitate tracking.Ultimately, the graphical user interface was used to command three robots to achieve useful tasks. The target in the environment was located correctly, this task was successfully monitored by the first robot, and the third robot was able to achieve its position goal while maneuvering around the other objects in the environment.4. Integrated SystemTo integrate the three projects into one system, several technical issues were resolved by way of the following system modifications:5. ConclusionThree tasks fundamental to multi-robot systems were enabled. Specifically, the tasks allow the interfacing of a single user with multiple robots, motion planning for multiple robots, and robot trajectory generation for target tracking. It was shown that the tasks could be merged into an experimental demonstration that highlights their usefulness as components in a larger, more complicated system. The result is a cooperative multi-robot system demonstration where a single user can control robots in a group to carry out individual tasks including collision-free motion and target tracking.6. References[1]V. J. Aidala, "Kalman Filter Behavior in Bearings-OnlyTracking Applications", IEEE Transactions on Aerospaceand Electronic Systems AES 15, No. 1, 29-39, Jan 1979. [2]C. M. Clark, T. Bretl & S. M. Rock, ``ApplyingKinodynamic Randomized Motion Planning with a Dynamic Priority System to Multi-Robot Systems,'' IEEEAerospace Conference, 2002.[3]M. W. M. Dissanayake, P. Newman, S. Clark, H. F.Durrant-Whyte, & M. Csorba, “A Solution to the Simultanewous Localization and Map Building (SLAM) Problem”, IEEE Transactions on Robotics and Automation,June 2001.[4]E. W. Frew & S. M. Rock, ``Trajectory Generation forMonocular Vision-Based Tracking of a Constant Velocity Target,'' To be presented at the IEEE International Conference on Robotics and Automation, 2003.[5]D. Hsu, R. Kindel, J. C. Latombe, & S. Rock, “RandomizedKinodynamic Motion Planning with Moving Obstacles,”Workshop on the Algorithmic Foundations of Robotics, 2000.[6]H. L. Jones & S. M. Rock, ``Dialogue-Based Human-RobotInteraction for Space Construction Teams,'' IEEE Aerospace Conference, 2002.[7]T. Kanade, R. T. Collins, A. J. Liption, P. Burn, & L. Wixson,“Advances in Cooperative Multi-Sensor Video Surveillance,”, DARPA Image Understanding Workshop (IUW), 115-122, Nov. 1998.[8]A. Logothetis, A. Isaksson, and R. J. Evans, "Comparisonof Suboptimal Strategies for Optimal Own-Ship Maneuvers in Bearings-Only Tracking", Proceedings of theAmerican Control Conference, 3334-3338, June 1998.a)b)c)d)e)Figure 5: Hardware is displayed on the left, while the GUI is displayed on the right. Within the GUI, robots are denoted by whi e cylinders. The target trajectory is deno ed by the yell w line in the upper right c rner of the screen shot. Red curves deno e rob t trajectories constructed by the motion planner. The scope of the camera onb ard the tracking rob t is outlined by two purple lines.tt oot ooo。

相关文档
最新文档