UBC Thunderbots 2009 Team Description Paper. Alim Jiwa, Amanda Li, Amir Bahador Moosavi zadeh, Howard Hu, George Stelle, Byron Knoll, Kevin Baillie,

Size: px
Start display at page:

Download "UBC Thunderbots 2009 Team Description Paper. Alim Jiwa, Amanda Li, Amir Bahador Moosavi zadeh, Howard Hu, George Stelle, Byron Knoll, Kevin Baillie,"

Transcription

1 UBC Thunderbots 2009 Team Description Paper Alim Jiwa, Amanda Li, Amir Bahador Moosavi zadeh, Howard Hu, George Stelle, Byron Knoll, Kevin Baillie, Jerome Pasion,, Lawrence Wong, John Yuen University of British Columbia Abstract. This paper gives an overview of the UBC Thunderbots, a new team aiming to participate in the 2009 Robocup Small Size League. The team has made significant development in the electronic, mechanical, artificial intelligence, image recognition and wireless communication aspects of its robot. 1 Introduction UBC Thunderbots is a team of undergraduate students at the University of British Columbia that is currently pursuing its first competitive initiative within the Small Size League at Robocup The team was established in 2006 and has made significant development of its team of autonomous soccer playing robots. This paper will outline the current progress in implementation of the current model of robots, detailing the rationale, design and results of both the hardware and software architecture. 2 Hardware Architecture The hardware architecture of the robots consists of their mechanical and electronics design. 2.1 Mechanical Design The mechanical design of the robot can be broken down into four main components: Chassis, Driving System, Kicking System and Dribbling System.

2 2.1.1 Chassis The chassis is used to hold all other components and also works as heat sink for the H-bridges and the voltage converter. It consists of two aluminum plates which are 10cm apart, and are connected together by four aluminum rods. The bottom plate holds the motors and the kicker mechanism, while the top plate serves to hold the electronics, and the batteries and the motors are placed in between the two plates and are held by aluminum brackets. The robot has a maximum diameter of 172mm and a height of 144 mm Driving System The robots are four wheel omni-directional robots. For all of the robots the two front wheels are separated with an angle of 110, while the configuration of the two back wheels depends on the role of the robot. For attackers, the back wheels are separated with an angle of 60, giving the robot a higher forward speed. For defenders, the back wheels are separated at an angle of 90, giving the robot a higher lateral speed. The wheels are actuated by four Mabuchi brushed DC motors 1 and are connected to a miniature optical encoder 2 which measures the actual speed of the wheel for feedback control purposes. Figure 1 below shows the drawing of the whole robot as it was done in SolidWorks. In this figure the important components of our robot are labeled. Robot Identifiers Main Board Top Plate Wiring Board (Microcontroller) DC Motors Omni directional Wheels Motor Bracket Solenoid Kicker Bar Figure 1: Overall Robot SolidWorks Model Base plate

3 2.1.3 Kicking System The kicking system consists of a solenoid kicker, designed for straight shooting and passing. This consists of a solenoid connected to a straight bar. The following figure shows the speed of the ball as a function of mass of the kicker bar together with the plunger. It turns out that we can achieve maximum ball speed when the kicker (the plunger and the bar) weights the same as the ball (i.e. 46grams) Figure 2: Ball speed as a function of the mass of the plunger and the kicker (regardless of the solenoid) The solenoid is a tubular push solenoid with the maximum stroke length of one inch and maximum force of 340Oz. Using the conservation of momentum, the maximum speed of the ball (when kicked at highest power) is calculated to be 6.6 m/s, when the coefficient of restitution between the ball and the kicker is estimated to be 0.8. Experimental results, also, show that the maximum kicking speed of the robots is about 6m/s Dribbling System The dribbling system is implemented for handling the ball during the game. The axis of dribbler is parallel to the ground plain and it is located at the height of 30mm. The dribbling system consists of a sorbothane cylinder wrapped around an aluminum core and it is driven by a Maxon flat DC Motor. 2.2 Electronic Design The electronics consist of three main parts: the wireless communication, the actuators and the kicking system drivers. All three parts sit on a single main board which is connected directly to the

4 microcontroller board. The microcontroller used 3 is an ATMEL atmega 128 chip pre-built on an electronics i/o board, called the Wiring board. Figure 3 shows the schematics of the robot s main board. Figure 3: Main Board on Robot The wireless communication on the main board consists of an XBee ZigBee OEM RF Module 4, the microcontroller and the interface circuit 5 (AXIC) between the two that adjusts for their different operating voltages. This set up receives commands from a similar one which is connected to the central computer and then sends them to the DC motor controlling circuits. The Mabuchi DC motors are controlled using two Pololu dual motor drivers 6. Each motor driver can provide up to 10 Amps at 14 volts through a Pulse Width Modulated (PWM) signal. The control algorithm also relies on the feedback loop created using the optical encoders. The encoder has a resolution of 360 counts per rotation. Each encoder is connected to a up/down counter chip which records the wheel speed as measured by the encoders and provides it to the microcontroller when enabled. The kicker solenoid is also controlled with PWM and it is capable of kicking at variable speeds. The solenoid is actuated using two MOSFETs and one capacitor.

5 3 Software Design 3.1 Artificial Intelligence The Artificial Intelligence (AI) module of the system receives inputs from the Image Recognition module and the Referee Box. It outputs wireless signals to the robots using a transmitter. Figure 4: IR and AI System Interface The AI module has been divided into five layers as shown in Figure 4. Starting at the Central Analyzing Unit, data is received and analyzed from the Image Recognition module, then used to execute the remaining layers. This design uses a hierarchy from a higher level strategy type (assigned in Decision Unit) to lower level robot behaviors (assigned in Central Strategy Unit) to the lowest level commands (assigned in Local Strategy Unit). The Decision Unit receives inputs from the referee box and sets the global strategy type. Global strategy types within the decision unit include: start of play, penalty kick, free kick, goal kick, throw in, corner kick and ball in play. The global strategy type is then sent to the Central Strategy Unit which determines the behavior assigned to each robot. Behaviors assigned to robots include stop, pass ball to another player, receive pass from another player, shoot ball, chase ball, go to a location on the field, be the goalie and be a defender.

6 Then based off this assigned behavior, lower level commands are sent to the Robot Controller by the Local Strategy Unit. Low level commands include direction to move, direction to face, whether or not to dribble the ball and whether or not to kick the ball. The very last layer is the Robot Controller which translates and transmits low level commands into wireless signals. There are hierarchies within layers of the AI module as well. Within the Local Strategy Unit some of the behaviors are lower level than other behaviors. This allows a behavior to be implemented using a combination of lower level behaviors. For example, to implement the shoot ball behavior, the chase ball behavior can be used if the robot does not have control of the ball. The chase ball behavior in turn can use the move behavior in order to get closer to the ball. Figure 3 Thunderbots AI Simulator (Visualizer) The AI module also includes a Simulator and a Visualizer. The Simulator is used to test robot strategies and behaviors without needing input from Image Recognition or outputting wireless signals to physical robots. It takes the place of all input and output to the AI module (Image Recognition, Referee Box, and wireless signals). In order to update the position of entities on the field it makes predictions based on velocity and acceleration. The Robot Controller updates the acceleration and properties of robots in the Simulator instead of sending out wireless signals. The Visualizer is a graphical interface which displays the position of the ball and robots on the field that can be used for both simulations and actual games in order to observe the current state of the AI module.

7 3.2 Image Processing Our image processing algorithm is broken down into two smaller parts: one dealing with object detection, and the other dealing with object tracking. The reason behind this breakdown may not be obvious for one-of-a-kind objects on the field, such as the ball, because its tracking reduces to its detection frame by frame. However, the situation is slightly different with the robot players, since they are five of a kind, and their identities need to be maintained over time so as to not confuse the strategic AI module. After considering various approaches to the problem, two were selected for further research Color Filtering The first IR approach was based on color filtering. Given a pixel in the image, the algorithm extracts its three color parameters: hue, saturation, and greyscale intensity. Hue is the position of any given color in the color spectrum. Saturation is a measure of how pronounced that color is with respect to black and white. Greyscale intensity is the darkness of the color. The algorithm then proceeds to create ranges for each of them, yielding minimum and maximum values for each parameter. Then, the image is traversed and a new binary image is created, where every pixel color falling within these ranges is highlighted. For example, a filter created based on the pixel taken from the blue marker would highlight all of the blue in the image, which, if the range sizes were selected properly, should be all the other blue makers, and nothing else. Effectively, this takes care of detecting the markers of the same color, and the ball. Our solution to the tracking problem relied on the assumption that the center of the robot cannot move outside of its circumference over the duration of 1 frame update. Despite the robots' high degree of mobility, this is a fair assumption, because the camera refresh rate is as high as 60 frames per second. Having made this assumption, we developed an algorithm that would create a

8 search area for each robot within its previous circumference, and search the filtered image for the center marker of a given robot inside its respective search area. Figure 5 below shows the program outputs during the tracking stage. At the top left there is a simulator view of the robots and the ball with red boxes drawn around them, indicting successful identification. At the top center there is an output of the binary yellow filter, which aligns with the positions of the yellow markers on the original image. On the top right, the hue, saturation, and greyscale intensity ranges for yellow color are displayed. At the bottom, ball and robot coordinates are printed. Figure 5: IR Tracking Outputs This technique proved to work well with the videos generated by the simulator, but its performance with a game video of 2006 RoboCup SSL champion CMDragons 7 was rather poor due to the high fluctuations across the saturation scale. This can probably be considered a video encoding problem which would not be encountered had we been working with raw streaming video instead. Therefore, more conclusive testing needs to be done on the actual game robots.

9 As far as tracking is concerned, the algorithm operated with a high degree of success, falling short in just one crucial aspect: running time. Having to perform computationally intensive color filtering every frame, it could only process 8 frames per second, which is not fast enough for the fast-paced game style of the Small Size League. There is however a number of optimizations that can be made, which may reduce the running time. Some of these include using high-efficiency pixel access provided by OpenCV, creating filters for high-interest regions of the image instead of the whole image, and getting rid of huge overhead used for debugging and testing Lucas-Kanade Optical Flow Estimation Another algorithm that we were experimenting with is based on Lucas-Kanade optical flow estimation. Optical flow algorithms estimate deformations, or changes, between two image frames based on the assumption that pixel intensity does not change much 8. One extra feature that was implemented in order to improve performance of this algorithm in the RoboCup setting was adding background subtraction. The idea behind background subtraction is that before any non-stationary objects are placed on the field, the picture of the field is taken and stored to be later subtracted from every new frame. Such subtraction would create a filter of sorts, which would highlight all the objects that have not been present on the original image. Luckily, these are the very objects that need to be detected and tracked. Lucas-Kanade optical flow is more time-efficient, yielding 12 frames per second. This is still short of 60 frames per second provided by the camera, but a definite improvement over the color filtering method. However, optical flow too has a disadvantage as because it is reliant on pixel intensity alone, it is prone to detecting false positives. For example, when it is used to track the ball, and the ball is crossing a white line on the field, the tracker stops at the line, losing track of the actual ball. In order to account for cases like this, background subtraction was used. Because

10 the white line on the field is present in the original image, it is subtracted away, and not visible on the filtered image, rendering optical flow tracker successful. Figure 4: Ball detection using Lucas-Kanade optical flow estimation On the figures above the optical flow tracking point is meant to track the ball, which is moving upwards away from the robots. On the left image, the tracking point gets stuck on the white line, while the ball continues onwards. On the right image, the tracking point passes the white line while still keeping track of the ball as the background subtraction hides the white line. It becomes clear that both optical flow and color filtering have their shortcomings, and could be improved upon, or used interchangeably to achieve best results. Ranges for color filtering have to be selected very carefully; otherwise either false positives or false negatives are bound to occur. Implementing background subtraction for color filtering may also significantly aid detection quality and speed. Information about object velocities from the previous frames can be used to improve the accuracy of ball and robot location prediction, further narrowing the search area, and thereby increasing detection speed. In short, color and field dynamics should be used together to yield reliable detection and tracking in a timely fashion, however working out the exact way to make the best use of this information is subject to testing in the real world setting. 3.3 Wireless Communication The wireless communication can be described by the hardware, system and software elements. The hardware element has been detailed in section 2.2 regarding the onboard electronic setup.

11 The system of the wireless communication can be seen below in figure 6. Microcontroller Microcontroller Microcontroller Figure 6: Wireless System The software of the wireless communication receives information from the AI and sends a transmit request to the coordinating XBEE module. The data (containing each robot s velocity and kicking signal information) will then be sent to the appropriate target XBee module as specified by the AI. The target XBee module, informing its host microcontroller that the information has arrived at its DI port, will send the received data in the form of API Data Frame to the microcontroller, that will then parse out the important information from the data frame, and based on the message received, it will control the DC motors accordingly.

12 4. Future Plans By Jun 1 st 2009 we expect to have a functioning robotic team, capable of competing in the RoboCup International Competitions. With all major subsections near the end of construction or complete, the majority of the work to be done before the competition lies in the integration of the parts and testing. In the meantime, preparations for the competition have begun now on the assumption that we are able to qualify. This is so that should we be accepted, we are ready and able to attend. Moreover, we are planning to attend the RoboCup US Open 2009 in preparation for this year s international competition in Austria. REFERENCES [1] Mabuchi Motor < [2] US Digital < [3] Wiring < [4] XBee < [5] Igoe, Tom. Arduino XBee Interface Circuit < [6] Pololu < [7] CMDragons. Championship Game < [8] Gamal, Abbas El and SukHwan Li. Optical Flow Estimation Using High Frame Rate Sequences <

(Skip to step 11 if you are already familiar with connecting to the Tribot)

(Skip to step 11 if you are already familiar with connecting to the Tribot) LEGO MINDSTORMS NXT Lab 5 Remember back in Lab 2 when the Tribot was commanded to drive in a specific pattern that had the shape of a bow tie? Specific commands were passed to the motors to command how

More information

Team Members: Erik Stegman Kevin Hoffman

Team Members: Erik Stegman Kevin Hoffman EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 24 January 2011 Project Name: Future of Football Team Name: Future of Football Team Members: Erik Stegman Kevin Hoffman

More information

Introduction to GRIP. The GRIP user interface consists of 4 parts:

Introduction to GRIP. The GRIP user interface consists of 4 parts: Introduction to GRIP GRIP is a tool for developing computer vision algorithms interactively rather than through trial and error coding. After developing your algorithm you may run GRIP in headless mode

More information

Beethoven Bot. Oliver Chang. University of Florida. Department of Electrical and Computer Engineering. EEL 4665-IMDL-Final Report

Beethoven Bot. Oliver Chang. University of Florida. Department of Electrical and Computer Engineering. EEL 4665-IMDL-Final Report Beethoven Bot Oliver Chang University of Florida Department of Electrical and Computer Engineering EEL 4665-IMDL-Final Report Instructors: A. Antonio Arroyo, Eric M. Schwartz TAs: Josh Weaver, Andy Gray,

More information

Figure 2: components reduce board area by 57% over 0201 components, which themselves reduced board area by 66% over 0402 types (source Murata).

Figure 2: components reduce board area by 57% over 0201 components, which themselves reduced board area by 66% over 0402 types (source Murata). 01005 production goes industry wide Satoshi Kataoka, Production Manager, Assembléon Asia Pacific Region and Eric Klaver, Commercial Product Manager, Assembléon, The Netherlands The introduction of the

More information

6.111 Final Project Proposal Kelly Snyder and Rebecca Greene. Abstract

6.111 Final Project Proposal Kelly Snyder and Rebecca Greene. Abstract 6.111 Final Project Proposal Kelly Snyder and Rebecca Greene Abstract The Cambot project proposes to build a robot using two distinct FPGAs that will interact with users wirelessly, using the labkit, a

More information

Smart Traffic Control System Using Image Processing

Smart Traffic Control System Using Image Processing Smart Traffic Control System Using Image Processing Prashant Jadhav 1, Pratiksha Kelkar 2, Kunal Patil 3, Snehal Thorat 4 1234Bachelor of IT, Department of IT, Theem College Of Engineering, Maharashtra,

More information

Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY

Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY Image Processing Using MATLAB (Summer Training Program) 6 Weeks/ 45 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com

More information

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Sponsored by: Department of Electrical Engineering & Computer Science at UCF What is the DAC? The DAC is an array of

More information

SRV02-Series. Rotary Pendulum. User Manual

SRV02-Series. Rotary Pendulum. User Manual SRV02-Series Rotary Pendulum User Manual Table of Contents 1. Description...3 2. Purchase Options...3 2.1 Modular Options...4 3. System Nomenclature and Components...5 4. System Configuration and Assembly...6

More information

DMC550 Technical Reference

DMC550 Technical Reference DMC550 Technical Reference 2002 DSP Development Systems DMC550 Technical Reference 504815-0001 Rev. B September 2002 SPECTRUM DIGITAL, INC. 12502 Exchange Drive, Suite 440 Stafford, TX. 77477 Tel: 281.494.4505

More information

ITAndroids Very Small Size League Team description paper 2016

ITAndroids Very Small Size League Team description paper 2016 ITAndroids Very Small Size League Team description paper 2016 Igor Franzoni 1, Alexandre Muzio 1, Gabriel Ilharco 1, Gustavo Guimar 1, Lucas Lugão 1, Marcos Maximo 1 Abstract ITAndroids Very Small Size

More information

TIGERS Mannheim. Team Description for RoboCup Mechanical System

TIGERS Mannheim. Team Description for RoboCup Mechanical System TIGERS Mannheim (Team Interacting and Game Evolving Robots) Team Description for RoboCup 2013 Andre Ryll, Nicolai Ommer, Daniel Andres, Dirk Klostermann, Sebastian Nickel, Felix Pistorius Department of

More information

Bird-Inspired Robot with Visual Feedback and Navigated from the Computer

Bird-Inspired Robot with Visual Feedback and Navigated from the Computer The Institute for Systems Research Isr Technical Report 2008-25 Bird-Inspired Robot with Visual Feedback and Navigated from the Computer Suchit Bhattarai Advisor: SK Gupta ISR develops, applies and teaches

More information

Koolio: An Autonomous Refrigerator Robot

Koolio: An Autonomous Refrigerator Robot Koolio: An Autonomous Refrigerator Robot Sara Keen maxpower@ufl.edu Wenxing Ye, Lavi Zamstein, Blake Sutton, Gene Shokes, Gorang Gandhi Eric M. Schwartz ems@mil.ufl.edu Machine Intelligence Laboratory

More information

Real-time Chatter Compensation based on Embedded Sensing Device in Machine tools

Real-time Chatter Compensation based on Embedded Sensing Device in Machine tools International Journal of Engineering and Technical Research (IJETR) ISSN: 2321-0869 (O) 2454-4698 (P), Volume-3, Issue-9, September 2015 Real-time Chatter Compensation based on Embedded Sensing Device

More information

Author: Seth Reed Lakritz

Author: Seth Reed Lakritz EEL 5666: Intelligent Machines Design Laboratory The Author: Student #: 1520-7760 Due Date: 8/7/03 Instructor: A.A. Arroyo & Dr. E. Schwartz Table of Contents Abstract...3 Executive Summary.4 Introduction..5

More information

1ms Column Parallel Vision System and It's Application of High Speed Target Tracking

1ms Column Parallel Vision System and It's Application of High Speed Target Tracking Proceedings of the 2(X)0 IEEE International Conference on Robotics & Automation San Francisco, CA April 2000 1ms Column Parallel Vision System and It's Application of High Speed Target Tracking Y. Nakabo,

More information

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days

MATLAB & Image Processing (Summer Training Program) 4 Weeks/ 30 Days (Summer Training Program) 4 Weeks/ 30 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com

More information

THE NEW LASER FAMILY FOR FINE WELDING FROM FIBER LASERS TO PULSED YAG LASERS

THE NEW LASER FAMILY FOR FINE WELDING FROM FIBER LASERS TO PULSED YAG LASERS FOCUS ON FINE SOLUTIONS THE NEW LASER FAMILY FOR FINE WELDING FROM FIBER LASERS TO PULSED YAG LASERS Welding lasers from ROFIN ROFIN s laser sources for welding satisfy all criteria for the optimized laser

More information

Internet of Things Technology Applies to Two Wheeled Guard Robot with Visual Ability

Internet of Things Technology Applies to Two Wheeled Guard Robot with Visual Ability Internet of Things Technology Applies to Two Wheeled Guard Robot with Visual Ability Chih-Hui Chiu and Yu-shiou Huang Abstract In this study, a two wheeled guard robot (TWGR) system with visual ability

More information

Innovative Rotary Encoders Deliver Durability and Precision without Tradeoffs. By: Jeff Smoot, CUI Inc

Innovative Rotary Encoders Deliver Durability and Precision without Tradeoffs. By: Jeff Smoot, CUI Inc Innovative Rotary Encoders Deliver Durability and Precision without Tradeoffs By: Jeff Smoot, CUI Inc Rotary encoders provide critical information about the position of motor shafts and thus also their

More information

Using the Siemens S65 Display

Using the Siemens S65 Display Using the Siemens S65 Display by Christian Kranz, October 2005 ( http://www.superkranz.de/christian/s65_display/displayindex.html ) ( PDF by Benjamin Metz, April 18 th, 2006 ) About the Display: Siemens

More information

Application Note AN-708 Vibration Measurements with the Vibration Synchronization Module

Application Note AN-708 Vibration Measurements with the Vibration Synchronization Module Application Note AN-708 Vibration Measurements with the Vibration Synchronization Module Introduction The vibration module allows complete analysis of cyclical events using low-speed cameras. This is accomplished

More information

COMPUTER ENGINEERING PROGRAM

COMPUTER ENGINEERING PROGRAM COMPUTER ENGINEERING PROGRAM California Polytechnic State University CPE 169 Experiment 6 Introduction to Digital System Design: Combinational Building Blocks Learning Objectives 1. Digital Design To understand

More information

Embedded System Training Module ABLab Solutions

Embedded System Training Module ABLab Solutions Embedded System Training Module ABLab Solutions www.ablab.in Table of Contents Course Outline... 4 1. Introduction to Embedded Systems... 4 2. Overview of Basic Electronics... 4 3. Overview of Digital

More information

(Cat. No IJ, -IK)

(Cat. No IJ, -IK) (Cat. No. 1771-IJ, -IK) Product Data The Encoder/Counter Module Assembly (cat. no. 1771-IJ or 1771-IK) maintains a count, independent of the processor, of input pulses that may typically originate from

More information

UNIT V 8051 Microcontroller based Systems Design

UNIT V 8051 Microcontroller based Systems Design UNIT V 8051 Microcontroller based Systems Design INTERFACING TO ALPHANUMERIC DISPLAYS Many microprocessor-controlled instruments and machines need to display letters of the alphabet and numbers. Light

More information

Designing for the Internet of Things with Cadence PSpice A/D Technology

Designing for the Internet of Things with Cadence PSpice A/D Technology Designing for the Internet of Things with Cadence PSpice A/D Technology By Alok Tripathi, Software Architect, Cadence The Cadence PSpice A/D release 17.2-2016 offers a comprehensive feature set to address

More information

Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders

Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders Scott Hewitt, President SICK STEGMANN, INC. Dayton, OH www.stegmann.com sales@stegmann.com 800-811-9110 The

More information

HEBS: Histogram Equalization for Backlight Scaling

HEBS: Histogram Equalization for Backlight Scaling HEBS: Histogram Equalization for Backlight Scaling Ali Iranli, Hanif Fatemi, Massoud Pedram University of Southern California Los Angeles CA March 2005 Motivation 10% 1% 11% 12% 12% 12% 6% 35% 1% 3% 16%

More information

Data Converters and DSPs Getting Closer to Sensors

Data Converters and DSPs Getting Closer to Sensors Data Converters and DSPs Getting Closer to Sensors As the data converters used in military applications must operate faster and at greater resolution, the digital domain is moving closer to the antenna/sensor

More information

Pivoting Object Tracking System

Pivoting Object Tracking System Pivoting Object Tracking System [CSEE 4840 Project Design - March 2009] Damian Ancukiewicz Applied Physics and Applied Mathematics Department da2260@columbia.edu Jinglin Shen Electrical Engineering Department

More information

SHOWLINE SL BEAM 100 LED LUMINAIRE SPECIFICATIONS.

SHOWLINE SL BEAM 100 LED LUMINAIRE SPECIFICATIONS. SHOWLINE SL BEAM 100 LED LUMINAIRE SPECIFICATIONS. GENERAL. A.) Overview. 1.) The luminaire shall be a motorized colour mixing luminaire employing seven (7) homogenized red, green, blue, and white LED

More information

Digital Logic Design: An Overview & Number Systems

Digital Logic Design: An Overview & Number Systems Digital Logic Design: An Overview & Number Systems Analogue versus Digital Most of the quantities in nature that can be measured are continuous. Examples include Intensity of light during the day: The

More information

Scan. This is a sample of the first 15 pages of the Scan chapter.

Scan. This is a sample of the first 15 pages of the Scan chapter. Scan This is a sample of the first 15 pages of the Scan chapter. Note: The book is NOT Pinted in color. Objectives: This section provides: An overview of Scan An introduction to Test Sequences and Test

More information

METHOD, COMPUTER PROGRAM AND APPARATUS FOR DETERMINING MOTION INFORMATION FIELD OF THE INVENTION

METHOD, COMPUTER PROGRAM AND APPARATUS FOR DETERMINING MOTION INFORMATION FIELD OF THE INVENTION 1 METHOD, COMPUTER PROGRAM AND APPARATUS FOR DETERMINING MOTION INFORMATION FIELD OF THE INVENTION The present invention relates to motion 5tracking. More particularly, the present invention relates to

More information

AN ARTISTIC TECHNIQUE FOR AUDIO-TO-VIDEO TRANSLATION ON A MUSIC PERCEPTION STUDY

AN ARTISTIC TECHNIQUE FOR AUDIO-TO-VIDEO TRANSLATION ON A MUSIC PERCEPTION STUDY AN ARTISTIC TECHNIQUE FOR AUDIO-TO-VIDEO TRANSLATION ON A MUSIC PERCEPTION STUDY Eugene Mikyung Kim Department of Music Technology, Korea National University of Arts eugene@u.northwestern.edu ABSTRACT

More information

Log-detector. Sweeper setup using oscilloscope as XY display

Log-detector. Sweeper setup using oscilloscope as XY display 2002/9/4 Version 1.2 XYdisp user manual. 1. Introduction. The XYdisp program is a tool for using an old DOS PC or laptop as XY display to show response curves measured by a sweeper log-detector combination.

More information

In-process inspection: Inspector technology and concept

In-process inspection: Inspector technology and concept Inspector In-process inspection: Inspector technology and concept Need to inspect a part during production or the final result? The Inspector system provides a quick and efficient method to interface a

More information

Simple motion control implementation

Simple motion control implementation Simple motion control implementation with Omron PLC SCOPE In todays challenging economical environment and highly competitive global market, manufacturers need to get the most of their automation equipment

More information

MULTIPLE TPS REHOST FROM GENRAD 2235 TO S9100

MULTIPLE TPS REHOST FROM GENRAD 2235 TO S9100 MULTIPLE TPS REHOST FROM GENRAD 2235 TO S9100 AL L I A N C E S U P P O R T PAR T N E R S, I N C. D AV I D G U I N N ( D AV I D. G U I N N @ A S P - S U P P O R T. C O M ) L I N YAN G ( L I N. YAN G @ A

More information

D-Lab & D-Lab Control Plan. Measure. Analyse. User Manual

D-Lab & D-Lab Control Plan. Measure. Analyse. User Manual D-Lab & D-Lab Control Plan. Measure. Analyse User Manual Valid for D-Lab Versions 2.0 and 2.1 September 2011 Contents Contents 1 Initial Steps... 6 1.1 Scope of Supply... 6 1.1.1 Optional Upgrades... 6

More information

SPECIFICATION NO Model 207 Automatic GTAW Welding System

SPECIFICATION NO Model 207 Automatic GTAW Welding System 1.0 Introduction The Model 207 is a completely self-contained Gas Tungsten Arc Welding (GTAW) System requiring only input power, inert gas and AMI Welding Head (or manual torch) for operation. Its small

More information

Shumatech DRO Jitter Conclusions. Copyleft protects this article.

Shumatech DRO Jitter Conclusions. Copyleft protects this article. Shumatech DRO Jitter Conclusions By R.G. Sparber September 12, 2008 Copyleft protects this article. Conclusion It is possible to reduce the jitter of the decimal display down to almost zero with the digital

More information

Multipurpose Robot. Himanshu Gupta 1, Mohammad Shahid 2

Multipurpose Robot. Himanshu Gupta 1, Mohammad Shahid 2 Multipurpose Robot Himanshu Gupta 1, Mohammad Shahid 2 Himanshu Gupta, Department of E&C Engineering, Sikkim Manipal Institute of Technology (SMIT), Majitar, Sikkim, India himanshu.3h @gmail.com 1 Mohammad

More information

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual

ORM0022 EHPC210 Universal Controller Operation Manual Revision 1. EHPC210 Universal Controller. Operation Manual ORM0022 EHPC210 Universal Controller Operation Manual Revision 1 EHPC210 Universal Controller Operation Manual Associated Documentation... 4 Electrical Interface... 4 Power Supply... 4 Solenoid Outputs...

More information

Model Identification of Displacement Controlled Linear Actuator in Hydraulic System

Model Identification of Displacement Controlled Linear Actuator in Hydraulic System Journal of Engineering Science and Military Technologies ISSN: 4530-7532 DOI:10.21608/ejmtc.2017.1415.1057 Model Identification of Displacement Controlled Linear Actuator in Hydraulic System Original Article

More information

SNG-2150C User s Guide

SNG-2150C User s Guide SNG-2150C User s Guide Avcom of Virginia SNG-2150C User s Guide 7730 Whitepine Road Revision 001 Richmond, VA 23237 USA GENERAL SAFETY If one or more components of your earth station are connected to 120

More information

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 07 July p-issn:

International Research Journal of Engineering and Technology (IRJET) e-issn: Volume: 03 Issue: 07 July p-issn: IC Layout Design of Decoder Using Electrical VLSI System Design 1.UPENDRA CHARY CHOKKELLA Assistant Professor Electronics & Communication Department, Guru Nanak Institute Of Technology-Ibrahimpatnam (TS)-India

More information

Using the Siemens S65 Display

Using the Siemens S65 Display Using the Siemens S65 Display by Christian Kranz, October 2005 ( http://www.superkranz.de/christian/s65_display/displayindex.html ) ( PDF by Benjamin Metz, September 09 th, 2006 ) About the Display: Siemens

More information

SWITCH: Microcontroller Touch-switch Design & Test (Part 2)

SWITCH: Microcontroller Touch-switch Design & Test (Part 2) SWITCH: Microcontroller Touch-switch Design & Test (Part 2) 2 nd Year Electronics Lab IMPERIAL COLLEGE LONDON v2.09 Table of Contents Equipment... 2 Aims... 2 Objectives... 2 Recommended Timetable... 2

More information

Operating Instructions

Operating Instructions CNTX Contrast sensor Operating Instructions CAUTIONS AND WARNINGS SET-UP DISTANCE ADJUSTMENT: As a general rule, the sensor should be fixed at a 15 to 20 angle from directly perpendicular to the target

More information

Customized electronic part transport in the press shop siemens.com/metalforming

Customized electronic part transport in the press shop siemens.com/metalforming Press handling solutions Customized electronic part transport in the press shop siemens.com/metalforming Your handling. Your press. Your solution. Cost-effective workpiece transport is essential for presses.

More information

PROTOTYPING AN AMBIENT LIGHT SYSTEM - A CASE STUDY

PROTOTYPING AN AMBIENT LIGHT SYSTEM - A CASE STUDY PROTOTYPING AN AMBIENT LIGHT SYSTEM - A CASE STUDY Henning Zabel and Achim Rettberg University of Paderborn/C-LAB, Germany {henning.zabel, achim.rettberg}@c-lab.de Abstract: This paper describes an indirect

More information

SPECIFICATION NO NOTE

SPECIFICATION NO NOTE NOTE The Model 207-1 is a special version of the standard M-207 Power Supply. It has been altered for a special applications requiring low current operation at high arc voltages in ambient and pressurized

More information

Sharif University of Technology. SoC: Introduction

Sharif University of Technology. SoC: Introduction SoC Design Lecture 1: Introduction Shaahin Hessabi Department of Computer Engineering System-on-Chip System: a set of related parts that act as a whole to achieve a given goal. A system is a set of interacting

More information

Methods for Time Stamping Analog and Digital Video. Frank Suits

Methods for Time Stamping Analog and Digital Video. Frank Suits Methods for Time Stamping Analog and Digital Video Frank Suits Outline Why accuracy? General needs of video timing Simple ways to do it Challenges of USB/Firewire video cameras Benefits of modular components

More information

Prototyping & Engineering Electronics Kits Magic Mandala Kit Guide

Prototyping & Engineering Electronics Kits Magic Mandala Kit Guide Prototyping & Engineering Electronics Kits Magic Mandala Kit Guide odysseyboard.com Please refer to www.odysseyboard.com for a PDF updated version of this guide. Magic Mandala Guide version 1.0, February,

More information

CHARACTERIZATION OF END-TO-END DELAYS IN HEAD-MOUNTED DISPLAY SYSTEMS

CHARACTERIZATION OF END-TO-END DELAYS IN HEAD-MOUNTED DISPLAY SYSTEMS CHARACTERIZATION OF END-TO-END S IN HEAD-MOUNTED DISPLAY SYSTEMS Mark R. Mine University of North Carolina at Chapel Hill 3/23/93 1. 0 INTRODUCTION This technical report presents the results of measurements

More information

Vtronix Incorporated. Simon Fraser University Burnaby, BC V5A 1S6 April 19, 1999

Vtronix Incorporated. Simon Fraser University Burnaby, BC V5A 1S6 April 19, 1999 Vtronix Incorporated Simon Fraser University Burnaby, BC V5A 1S6 vtronix-inc@sfu.ca April 19, 1999 Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, BC V5A 1S6 Re: ENSC 370

More information

OPTICAL POWER METER WITH SMART DETECTOR HEAD

OPTICAL POWER METER WITH SMART DETECTOR HEAD OPTICAL POWER METER WITH SMART DETECTOR HEAD Features Fast response (over 1000 readouts/s) Wavelengths: 440 to 900 nm for visible (VIS) and 800 to 1700 nm for infrared (IR) NIST traceable Built-in attenuator

More information

Reconfigurable Neural Net Chip with 32K Connections

Reconfigurable Neural Net Chip with 32K Connections Reconfigurable Neural Net Chip with 32K Connections H.P. Graf, R. Janow, D. Henderson, and R. Lee AT&T Bell Laboratories, Room 4G320, Holmdel, NJ 07733 Abstract We describe a CMOS neural net chip with

More information

System Quality Indicators

System Quality Indicators Chapter 2 System Quality Indicators The integration of systems on a chip, has led to a revolution in the electronic industry. Large, complex system functions can be integrated in a single IC, paving the

More information

TV Character Generator

TV Character Generator TV Character Generator TV CHARACTER GENERATOR There are many ways to show the results of a microcontroller process in a visual manner, ranging from very simple and cheap, such as lighting an LED, to much

More information

ECE 480. Pre-Proposal 1/27/2014 Ballistic Chronograph

ECE 480. Pre-Proposal 1/27/2014 Ballistic Chronograph ECE 480 Pre-Proposal 1/27/2014 Ballistic Chronograph Sponsor: Brian Wright Facilitator: Dr. Mahapatra James Cracchiolo, Nick Mancuso, Steven Kanitz, Madi Kassymbekov, Xuming Zhang Executive Summary: Ballistic

More information

BLINKIN LED DRIVER USER'S MANUAL. REV UM-0 Copyright 2018 REV Robotics, LLC 1

BLINKIN LED DRIVER USER'S MANUAL. REV UM-0 Copyright 2018 REV Robotics, LLC 1 fg BLINKIN LED DRIVER USER'S MANUAL REV-11-1105-UM-0 Copyright 2018 REV Robotics, LLC 1 TABLE OF CONTENTS 1 OVERVIEW... 3 1.1 CONNECTIONS... 3 1.2 KIT CONTENTS... 3 1.3 ELECTRICAL RATINGS... 3 1.4 SUPPORTED

More information

Color Reproduction Complex

Color Reproduction Complex Color Reproduction Complex 1 Introduction Transparency 1 Topics of the presentation - the basic terminology in colorimetry and color mixing - the potentials of an extended color space with a laser projector

More information

Optimizing BNC PCB Footprint Designs for Digital Video Equipment

Optimizing BNC PCB Footprint Designs for Digital Video Equipment Optimizing BNC PCB Footprint Designs for Digital Video Equipment By Tsun-kit Chin Applications Engineer, Member of Technical Staff National Semiconductor Corp. Introduction An increasing number of video

More information

Automatic Defect Recognition in Industrial Applications

Automatic Defect Recognition in Industrial Applications Automatic Defect Recognition in Industrial Applications Klaus Bavendiek, Frank Herold, Uwe Heike YXLON International, Hamburg, Germany INDE 2007 YXLON. The reason why 1 Different Fields for Usage of ADR

More information

MICROMASTER Encoder Module

MICROMASTER Encoder Module MICROMASTER Encoder Module Operating Instructions Issue 01/02 User Documentation Foreword Issue 01/02 1 Foreword Qualified Personnel For the purpose of this Instruction Manual and product labels, a Qualified

More information

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 OBJECTIVE To become familiar with state-of-the-art digital data acquisition hardware and software. To explore common data acquisition

More information

LOW POWER & AREA EFFICIENT LAYOUT ANALYSIS OF CMOS ENCODER

LOW POWER & AREA EFFICIENT LAYOUT ANALYSIS OF CMOS ENCODER 90 LOW POWER & AREA EFFICIENT LAYOUT ANALYSIS OF CMOS ENCODER Tanuj Yadav Electronics & Communication department National Institute of Teacher s Training and Research Chandigarh ABSTRACT An Encoder is

More information

SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS.

SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS. GENERAL. A.) Overview. SHOWLINE SL BAR 640 LINEAR WASH LUMINAIRE SPECIFICATIONS. 1.) The luminaire shall be a color mixing luminaire employing twenty-four (24) red, green, blue, and white LED engines.

More information

Optical Engine Reference Design for DLP3010 Digital Micromirror Device

Optical Engine Reference Design for DLP3010 Digital Micromirror Device Application Report Optical Engine Reference Design for DLP3010 Digital Micromirror Device Zhongyan Sheng ABSTRACT This application note provides a reference design for an optical engine. The design features

More information

SRV02-Series. Ball & Beam. User Manual

SRV02-Series. Ball & Beam. User Manual SRV02-Series Ball & Beam User Manual Table of Contents 1. Description...3 1.1 Modular Options...4 2. System Nomenclature and Components...5 3. System Setup and Assembly...6 3.1 Typical Connections for

More information

White Paper. Uniform Luminance Technology. What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved?

White Paper. Uniform Luminance Technology. What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved? White Paper Uniform Luminance Technology What s inside? What is non-uniformity and noise in LCDs? Why is it a problem? How is it solved? Tom Kimpe Manager Technology & Innovation Group Barco Medical Imaging

More information

V9A01 Solution Specification V0.1

V9A01 Solution Specification V0.1 V9A01 Solution Specification V0.1 CONTENTS V9A01 Solution Specification Section 1 Document Descriptions... 4 1.1 Version Descriptions... 4 1.2 Nomenclature of this Document... 4 Section 2 Solution Overview...

More information

Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky,

Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky, Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky, tomott}@berkeley.edu Abstract With the reduction of feature sizes, more sources

More information

Analog, Mixed-Signal, and Radio-Frequency (RF) Electronic Design Laboratory. Electrical and Computer Engineering Department UNC Charlotte

Analog, Mixed-Signal, and Radio-Frequency (RF) Electronic Design Laboratory. Electrical and Computer Engineering Department UNC Charlotte Analog, Mixed-Signal, and Radio-Frequency (RF) Electronic Design Laboratory Electrical and Computer Engineering Department UNC Charlotte Teaching and Research Faculty (Please see faculty web pages for

More information

How smart dimming technologies can help to optimise visual impact and power consumption of new HDR TVs

How smart dimming technologies can help to optimise visual impact and power consumption of new HDR TVs How smart dimming technologies can help to optimise visual impact and power consumption of new HDR TVs David Gamperl Resolution is the most obvious battleground on which rival TV and display manufacturers

More information

MotionPro. Team 2. Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo. Advisor: Professor Bardin. Preliminary Design Review

MotionPro. Team 2. Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo. Advisor: Professor Bardin. Preliminary Design Review MotionPro Team 2 Delphine Mweze, Elizabeth Cole, Jinbang Fu, May Oo Advisor: Professor Bardin Preliminary Design Review 1 Project Description Our team is going to design and build a gaming machine that

More information

Module 8 VIDEO CODING STANDARDS. Version 2 ECE IIT, Kharagpur

Module 8 VIDEO CODING STANDARDS. Version 2 ECE IIT, Kharagpur Module 8 VIDEO CODING STANDARDS Lesson 27 H.264 standard Lesson Objectives At the end of this lesson, the students should be able to: 1. State the broad objectives of the H.264 standard. 2. List the improved

More information

A New Hardware Implementation of Manchester Line Decoder

A New Hardware Implementation of Manchester Line Decoder Vol:4, No:, 2010 A New Hardware Implementation of Manchester Line Decoder Ibrahim A. Khorwat and Nabil Naas International Science Index, Electronics and Communication Engineering Vol:4, No:, 2010 waset.org/publication/350

More information

Surveillance Robot based on Image Processing

Surveillance Robot based on Image Processing Surveillance Robot based on Image Processing Anjini Ratish P, Darshan Sindhe D, Nagaraj K, Rajeshwar N S, Ravindra V. Asundi Electronics and Communication Engineering, BMS Institute of Technology and Management,

More information

INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE

INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE Jurnal Informatika, Vol. 14, No. 1, Mei 2017, 47-52 ISSN 1411-0105 / e-issn 2528-5823 DOI: 10.9744/informatika.14.1.47-52 INTRODUCTION OF INTERNET OF THING TECHNOLOGY BASED ON PROTOTYPE Anthony Sutera

More information

C O B A R 18R U s e r G u i d e P a g e 1. User Guide COBRA 18R. Wireless Firing System.

C O B A R 18R U s e r G u i d e P a g e 1. User Guide COBRA 18R. Wireless Firing System. C O B A R 18R U s e r G u i d e P a g e 1 User Guide COBRA 18R Wireless Firing System C O B A R 18R U s e r G u i d e P a g e 2 TABLE OF CONTENTS 1. SYSTEM INTRO... 3 2. POWER ON... 4 3. REMOTE / FIRING

More information

Oculomatic Pro. Setup and User Guide. 4/19/ rev

Oculomatic Pro. Setup and User Guide. 4/19/ rev Oculomatic Pro Setup and User Guide 4/19/2018 - rev 1.8.5 Contact Support: Email : support@ryklinsoftware.com Phone : 1-646-688-3667 (M-F 9:00am-6:00pm EST) Software Download (Requires USB License Dongle):

More information

Chapter 9 MSI Logic Circuits

Chapter 9 MSI Logic Circuits Chapter 9 MSI Logic Circuits Chapter 9 Objectives Selected areas covered in this chapter: Analyzing/using decoders & encoders in circuits. Advantages and disadvantages of LEDs and LCDs. Observation/analysis

More information

LEDs, New Light Sources for Display Backlighting Application Note

LEDs, New Light Sources for Display Backlighting Application Note LEDs, New Light Sources for Display Backlighting Application Note Introduction Because of their low intensity, the use of light emitting diodes (LEDs) as a light source for backlighting was previously

More information

Drift Tubes as Muon Detectors for ILC

Drift Tubes as Muon Detectors for ILC Drift Tubes as Muon Detectors for ILC Dmitri Denisov Fermilab Major specifications for muon detectors D0 muon system tracking detectors Advantages and disadvantages of drift chambers as muon detectors

More information

FP-QUAD-510. Features. Power Requirement OPERATING INSTRUCTIONS. 4-Axis, Quadrature Input Module

FP-QUAD-510. Features. Power Requirement OPERATING INSTRUCTIONS. 4-Axis, Quadrature Input Module OPERATING INSTRUCTIONS FP-QUAD-510 4-Axis, Quadrature Input Module These operating instructions describe the installation, features, and characteristics of the FP-QUAD-510. For details on configuring and

More information

Digital Audio Design Validation and Debugging Using PGY-I2C

Digital Audio Design Validation and Debugging Using PGY-I2C Digital Audio Design Validation and Debugging Using PGY-I2C Debug the toughest I 2 S challenges, from Protocol Layer to PHY Layer to Audio Content Introduction Today s digital systems from the Digital

More information

(Refer Slide Time: 00:55)

(Refer Slide Time: 00:55) Computer Numerical Control of Machine Tools and Processes Professor A Roy Choudhury Department of Mechanical Engineering Indian Institute of Technology Kharagpur Lecture 1 Introduction to Computer Control

More information

SignalTap Plus System Analyzer

SignalTap Plus System Analyzer SignalTap Plus System Analyzer June 2000, ver. 1 Data Sheet Features Simultaneous internal programmable logic device (PLD) and external (board-level) logic analysis 32-channel external logic analyzer 166

More information

SUBSYSTEMS FOR DATA ACQUISITION #39. Analog-to-Digital Converter (ADC) Function Card

SUBSYSTEMS FOR DATA ACQUISITION #39. Analog-to-Digital Converter (ADC) Function Card SUBSYSTEMS FOR DATA ACQUISITION #39 Analog-to-Digital Converter (ADC) Function Card Project Scope Design an ADC function card for an IEEE 488 interface box built by Dr. Robert Kolbas. ADC card will add

More information

Long Range Wireless HDMI/SDI HD Video Transmission Suite LINK-MI LM-SWHD01. User manual

Long Range Wireless HDMI/SDI HD Video Transmission Suite LINK-MI LM-SWHD01. User manual Long Range Wireless HDMI/SDI HD Video Transmission Suite LINK-MI LM-SWHD01 User manual Preface... 1 1. Cautions... 2 2. About... 3 3. Installation... 4 4. Operation instruction... 5 5. Maintenance... 6

More information

Electric Rotary Modules. Rotary Actuators

Electric Rotary Modules. Rotary Actuators Electric Rotary Modules Rotary Actuators Electric Rotary Modules Rotary Actuators ROTARY ACTUATORS Series Size Page Miniature Rotary Actuators MRD-S 224 MRD-S 4 232 MRD-S 8 234 MRD-S 12 236 Explanation

More information

PulseCounter Neutron & Gamma Spectrometry Software Manual

PulseCounter Neutron & Gamma Spectrometry Software Manual PulseCounter Neutron & Gamma Spectrometry Software Manual MAXIMUS ENERGY CORPORATION Written by Dr. Max I. Fomitchev-Zamilov Web: maximus.energy TABLE OF CONTENTS 0. GENERAL INFORMATION 1. DEFAULT SCREEN

More information

UNIT-3 Part A. 2. What is radio sonde? [ N/D-16]

UNIT-3 Part A. 2. What is radio sonde? [ N/D-16] UNIT-3 Part A 1. What is CFAR loss? [ N/D-16] Constant false alarm rate (CFAR) is a property of threshold or gain control devices that maintain an approximately constant rate of false target detections

More information