Using the Handy Cricket Robot Platform for Multi-Robot Research

Size: px
Start display at page:

Download "Using the Handy Cricket Robot Platform for Multi-Robot Research"

Transcription

1 Using the Handy Cricket Robot Platform for Multi-Robot Research Rami Saikali Department of Computer Science Augsburg College Minneapolis, MN Abstract The Handy Cricket is a small, mobile PIC microcontroller-based robotics platform that is versatile, cheap, and easy to deploy. Its small form factor, light weight, and low cost make it a very appealing platform to those who conduct multi-robot research. The feasibility of using such an inexpensive and minimalistic platform is explored in this paper. While it may be unrealistic to imagine the Handy Cricket itself being used in a real-life search and rescue operation, it provides a tangible platform for experiments in determining lower limits on communication and sensing abilities.

2 1 Introduction Complexity is an issue that plagues almost any field robotics included. When one wishes to accomplish a task using robots, one must ponder the best solution: a few, highly capable and expensive robots or several, somewhat limited, relatively inexpensive robots in a swarm deployment strategy. The latter, swarm robotics, is a relatively new approach to solving problems requiring robots. There are several advantages to multi-robot research as opposed to solitary robots. One of the most crucial is that disabled robots, or nodes, are not a crippling issue. In a singular robot environment, if the robot is either destroyed or disabled, the project must either end or another expensive robot must be deployed in its place. With swarm robotics the success of the overall task at hand does not depend on any one robot accomplishing the task. Additionally tasks are divided amongst several robots allowing more efficient use of time. Rather than searching spaces piecemeal one after another, the swarm robots would be able to push into and discover several areas simultaneously. A number of researchers are using swarms of small robots in their work. Dellaert et al.[2] developed a team of marsupials for search and rescue with small robots being transported by larger ones into key dispersion areas. Cheng, Cheng and Nagpal[1] have addressed formation control in robot swarms. Pearce et al.[6] experimented with the use of pheromones to control dispersion. Hsiang et al.[3] have developed a number of algorithms for the rapid dispersion of robots. Some of the research using robot swarms has been limited to simulation. The actual number of real robots used in trials has varied from a couple to a few dozen. The purpose of our research was primarily to discover and note the absolute minimum capabilities a robot is able to possess while still remaining useful in a search and rescue environment. A search and rescue environment is one in which the surrounding area to be explored is a completely destroyed environment. There are no, or very few, 90 angles in the destroyed environment. Visibility may be poor and there may be quite a few disabling obstacles. This type of environment beckons multi-robot research. To test the absolute bare minimum of allowable technology in a multi-robot research environment, we evaluated the feasibility of deploying the Handy Cricket robotics platform for multi-robot research. The Handy Cricket is extremely low cost, lightweight, and quite petite yet still very capable making it ideal for multi-robot research. 2 The Handy Cricket 2.1 Becoming Familiar With the Cricket The Handy Cricket board[5] is a PIC microcontroller-based robotics platform that aims to be very low cost while still providing numerous features. In essence, the board is a miniature computer with input/output and motor/sensor control. The Handy Cricket weighs only 0.2 pounds and occupies a space of only 3x3x0.5 inches. It is powered by four AA 1

3 batteries. On the main board there are two motor outputs, two sensor inputs, and two bus connection lines. Figure 1 shows the Handy Cricket board as viewed from above. Figure 1: The Handy Cricket board and all its connectors. (A) Motor Output[2], (B) Sensor Input[2], (C) Bus Connections [2], (D) Run/Stop button, (E) On/Off Switch, (F) Piezoelectric Speaker and (G) IR Communication. Photo courtesy of the Cricket website. The two motor outputs allow us to control two motors simultaneously, each capable of being operated both directions. The eyes of the Cricket board lie within its two sensor inputs. These two inputs may be connected to any combination of IR Reflection sensors, photocells, switches, or touch/pressure sensors. The sensor inputs of the Handy Cricket receive two types of input: Boolean (T-F) or a range. Sensors like the IR Reflection sensor respond with a number between 0 and 255, which is the range from the sensor to the nearest object, while others like the photocell simply respond with a 0 or a 1 (a false or a true). The bus allows expanded functionality with the Handy Cricket platform. From the bus connection one may attach a 4-Digit LED number display, servo motor control interface, relay control interface, or one of two means of advanced motor/sensor control. Each of these expansion boards is a fraction of the size of the main Handy Cricket board and does not require additional external power. The two expansion boards with which experiments were conducted in the laboratory were the LED display and the motor/sensor expansion board. The motor/sensor expansion board provides two additional DC motor outputs capable of being run at eight separate power levels each and four analog sensor inputs. This allowed for the attachment of a total of six sensing devices using only one expansion board. 2

4 2.2 Programming the Handy Cricket The Handy Cricket uses a simplified version of Logo called Cricket Logo. There are several advantages to the ease with which one may write a program for the Handy Cricket. There are many built-in methods and routines and a getting started guide is included at the Handy Cricket s official website[5]. The board itself is programmed using an external communications board which connects to the host computer s serial port. All programming is done via IR communication with the Handy Cricket s on board IR transceiver. 2.3 Sensing and Communication One of the more crucial aspect of the Handy Cricket s performance in a research scenario is its communication and sensing technologies. Communication is paramount in a swarm environment in which multiple robots are being used. If the robots are unable to communicate with each other effectively the advantages of using multiple, cost-effective robots are essentially dissolved. All that remains in such a scenario are detached, relatively limited nodes. As shown in Figure 1, the Crickets have an IR transceiver affixed to the front of the board for communication. IR communication is low-bandwidth and near line-of-sight. However, even this limited communication ability is sufficient for multi robotics research. IR would be sufficient to communicate location data such as if a robot wishes to simply communicate the distance it senses to the next object, from its perspective, on its left, front, then right. Using an efficient data structure and expecting the appropriate type input this would take at most three bytes to communicate left, front, and right distances. This kind of one-way communication would take at most a few seconds to transmit. After this information is transmitted, the Cricket is free to go back to its previous duties. The three most popular sensors for the Handy Cricket are the photocell light sensor, the IR reflection sensor, and the micro switch touch sensor. Utilizing these three sensors as a means by which the Cricket can gauge its environment allows the robot to get an adequate picture of the world around itself. The most low-tech of the three sensors is the touch sensor; consisting of a micro switch, the touch sensor requires direct contact with an object before input is achieved. Because of the fact that the touch sensor requires direct contact the sensor becomes an excellent bumper sensor. By placing the micro switch on either (or both) the front or back end of the Handy Cricket the cricket is endowed with a last-ditch means of finding its way around. The touch sensor requires no special conditions to operate. Whether the environment is illuminated or dark, clear or smoke-filled the touch sensor is able to give the Cricket much needed tactile feedback. Due to its simplicity and effectiveness, the touch sensor was utilized heavily in the laboratory. The following Cricket Logo code demonstrates use of the touch sensor: 3

5 to loopy wait 10 a, on thisway b, on thatway waituntil [switcha] a, off b, off beep wait 10 a, on thatway b, on thisway wait 20 a, off b, off a, on thisway wait 10 a, off loopy end This procedure instructs the robot to move forward until input is gained from switch A. After input is gained from switch A (contact is made with a wall or some other object) the robot shuts its motors off, reverses direction for two seconds in order to back up, then enables one motor for a second to turn it in another direction in an attempt to move around the obstacle. The second, more high-tech, sensor of interest is the photocell light sensor. The photocell light sensor acts as a switch that remains off until light is introduced to its surface. By shrouding the photocell light sensor in a piece of cardboard or paper tubing several inches long, ambient light is attenuated from the photocell s input. This method allows the photocell to become more of a directional implement. By this method the robot could be instructed to search for a light source or continue a wandering procedure until a light source is found. The last, and arguably the most interesting, sensor is the infra-red reflection sensor. Rather than a simple on/off state, the IR reflection sensor reports back the distance from a solid object that renders a reflection of infrared energy. In the Cricket s case the number is between 0 and 255. Using this sensor gives a rough estimate of the Cricket s distance from its surrounding environment and aids in obstacle avoidance. 3 Designing and Navigating Destroyed Environments The purpose of our research was to test a tree-based dispersion algorithm using multiple simplified robots in a search and rescue type scenario. In order to test the usefulness of such a configuration we designed a destroyed environment. 4

6 Additionally a proper means of supporting the Handy Cricket board itself and making the board mobile had to be implemented. 3.1 Designing the Destroyed Environment The environment was first designed in the Player/Stage platform by Lava K.C.[4]. The destroyed environment that was constructed was modeled after his simulated environment. Figure 2 shows this environment. Figure 2: The destroyed environment in Player/Stage. A destroyed environment was designed using foam-core board. Development of the environment was facilitated by the modularity of the pieces of board and the ease of their connections. Figure 3 shows the Handy Crickets navigating in this environment. The most important aspect in the design of the destroyed environment was that there would not be simple 90 corners to navigate. One of the difficulties of navigating a destroyed environment is that normal room structure is not preserved. Navigating perfectly rectangular rooms is quite easy, however navigating a room with several sharp corners of undetermined angles is much more difficult. 5

7 Figure 3: The Handy Crickets navigating through an actual destroyed environment. 3.2 Designing a Platform for Deployment To navigate the environment the Handy Cricket boards were attached to Lego bodies and motors. Connecting the Handy Cricket boards to a Lego platform allowed quick attachment and removal of sensors and motors. A fully assembled Cricket on our lego platform is shown in Figure 4. 4 Experiments on Sensing and Communication Since Cricket processing power is quite low, analysis of input from sensors must be minimal. Additionally, because the the Boolean input from the touch and light sensors are minimal, we focused our efforts on testing the capability of the more sophisticated IR reflection sensor. The IR reflection sensor seemed to be slightly inconsistent in its accuracy during our tests. In actual tests in the lab it was found to be a little rough in the results it reported. Past approximately one foot the sensor reported a maximum value of 255 or its maximum distance. When the sensor was brought near a wall the relation to the reported value was not linear and we could ascertain no accurate relation between distance and reported value. Rather, the IR reflection sensor reports values ranging from 0 to 100 when the cricket 6

8 Figure 4: The Handy Cricket fully assembled with its sensors on our Lego platform is closer to an obstacle and values above 200 when it is much farther. This allows for approximate distancing and obstacle avoidance. In terms of communication range, IR, however, proved quite viable. In direct line of sight 100% receipt of signal was achieved at a distance of over 11.5 feet. Even at an angle of 45 degrees to either side the signal integrity remained at over 10 feet. To measure signal intensity one Cricket was programmed with transmitting code and the other was programmed with receiving code. When one Cricket would transmit a value of 1 via the IR port it would also emit a beep. It would do this every two seconds. The other robot would wait until it received a 1 via its IR port and then it would emit a higher pitched beep. In this manner we knew that the other robot was receiving the signal if it was reporting back with a high pitched beep. To ensure the signal was received during testing, we waited to listen for 30 transmission beeps and 30 reception beeps before we declared that transmission was accepted at 11.5 feet. As distance between the crickets increased beyond 11.5 feet (138 inches) the signal strength dropped off by 10% (loss of 3 beeps for every 30) every two inches the receiving Cricket was moved back. In an attempt to determine what factor lead to the surprisingly long distance for the IR communication, black fabric was purchased to cover the walls during the ranging of the IR sensors. The concern was raised as to whether the white walls of the laboratory were reflecting the IR energy and giving a deceptively long range to the sensors. It was found that draping the adjacent wall in black fabric had no significant bearing on the distance the IR transmissions were received. While IR seems to be a limited communications method at first, the low power consumption of an IR transceiver, its excellent range, and tolerable bandwidth have made it an excellent choice for the Handy Cricket platform. 5 Conclusion Over the course of our research in the laboratory we have become quite familiar with the Handy Cricket in an attempt to ascertain its capabilities. We have attempted to determine 7

9 whether or not the Handy Cricket would be an appropriate platform to implement the algorithms we have developed in simulation for search and rescue. The platform does have its bonuses; its low weight and small size make it quite desirable. Its sensors are quite usable for navigation. We did find, however, that the IR reflection sensor seemed to fall short when used to detect exact distances. On the other hand IR communication proved remarkable in its range and usefulness. The programming language, Cricket Logo, while still not as full-featured as other programming languages may still be all that is neccessary to handle the bit strings that our simulated robots use for cmmunication. Other tasks that yet need to be explored include implementing the dispersion algorithm developed in simulation[4] on the Crickets, testing inter-robot communication, and how to effectively storing the information needed by each robot. 6 Acknowledgements This project was supported by National Science Foundation grant EEC Thanks also to Lava K.C. for input and advice on this project. References [1] CHENG, J., CHENG, W., AND NAGPAL, R. Robust and self-repairing formation control for swarms of mobile agents. In Proceedings of the National Conference on Artificial Intelligence (July 2005), AAAI. [2] DELLAERT, F., BALCH, T. R., KAESS, M., RAVICHANDRAN, R., ALEGRE, F., BERHAULT, M., MCGUIRE, R., MERRILL, E., MOSHKINA, L. V., AND WALKER, D. The georgia tech yellow jackets: A marsupial team for urban search and rescue. In AAAI Mobile Robot Competition (2002), pp [3] HSIANG, T., ARKIN, E., BENDER, M., FEKETE, S., AND MITCHELL, J. Algorithms for rapidly dispersing robot swarms in unknown environments, In 5th International Workshop on Algorithmic Foundations of Robotics. [4] LAVA K.C. An Algorithm for Dispersion of Search and Rescue Robots. In Proceedings of the Midwest Instruction and Computing Symposium (MICS 07) (2007). [5] MARTIN, F. The Handy Cricket. [6] PEARCE, J. L., POWERS, B., HESS, C., RYBSKI, P. L., STOETER, S. A., AND PA- PANIKOLOPOULOS, N. Dispersion of a team of surveillance and reconnaissance robots based on repellent pheromones. In Proceedings of the 11th Mediterranean Conference on Control and Automation (June 2003), MED 03. 8

GOLFER. The Golf Putting Robot

GOLFER. The Golf Putting Robot GOLFER The Golf Putting Robot Written By Wing Pan Yuen For EEL 5666 Intelligent Machines Design Laboratory December 05, 1999 Table of Contents Abstract Introduction Executive Summary Integrated System

More information

PropaGator Autonomous Surface Vehicle

PropaGator Autonomous Surface Vehicle PropaGator Autonomous Surface Vehicle Andrew Wegener December 4, 2012 University of Florida Department of Electrical and Computer Engineering EEL 5666C IMDL Final Report Instructors: A. Antonio Arroyo,

More information

The NXT Generation. A complete learning solution

The NXT Generation. A complete learning solution The NXT Generation A complete learning solution 2008 The NXT Generation LEGO MINDSTORMS Education is the latest in educational robotics, enabling students to discover ICT, science, D&T and maths concepts

More information

Written Report of Robot Design

Written Report of Robot Design Written Report of Robot Design Name: Robot Name: Course: Shaojie Ge Four Leg Walking Robot EEL 4665/5666 Intelligent Machines Design Laboratory Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz TAs:

More information

Chapter 13. ANTY: the robotic ant

Chapter 13. ANTY: the robotic ant Chapter 13. ANTY: the robotic ant By now, you ve gotten the hang of building models that move on wheels. Another fun, but slightly more challenging, kind of model you can build is an animal robot that

More information

The HumiSys. RH Generator. Operation. Applications. Designed, built, and supported by InstruQuest Inc.

The HumiSys. RH Generator. Operation. Applications. Designed, built, and supported by InstruQuest Inc. The HumiSys RH Generator Designed, built, and supported by InstruQuest Inc. Versatile Relative Humidity Generation and Multi-Sensor System The new HumiSys with single or dual RH probes capabilities is

More information

ROV Development ROV Function. ROV Crew Navigation IRATECH SUB SYSTEMS 2010

ROV Development ROV Function. ROV Crew Navigation IRATECH SUB SYSTEMS 2010 IR AT EC H SU B SY ST EM S 20 10 Remotely Operated Vehicle ROV INTRODUCTORY 2008 2008 1 KEY POINTS ROV Introductory ROV Development ROV Function Types of ROV ROV Crew Navigation ROV Components 2 ROV Development

More information

Open Research Online The Open University s repository of research publications and other research outputs

Open Research Online The Open University s repository of research publications and other research outputs Open Research Online The Open University s repository of research publications and other research outputs Developing an intelligent table tennis umpiring system Conference or Workshop Item How to cite:

More information

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer.

Technology. In the My Files [My Files] submenu you can store all the programs that you have made on the NXT or downloaded from your computer. NXT Main Menu My Files Files are automatically placed into the appropriate folders. When you download a program using a Sound file to the NXT, the program will be placed under Software files while the

More information

The Caddiellac. In the pursuit of perfection on the course, your clubs should follow your lead EE High Level Design

The Caddiellac. In the pursuit of perfection on the course, your clubs should follow your lead EE High Level Design The Caddiellac In the pursuit of perfection on the course, your clubs should follow your lead EE41430 High Level Design Ryan Bernhold Matt DePorre Rachel Drumm Colleen Tigani Table of Contents 1. Introduction

More information

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs

Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Application of Dijkstra s Algorithm in the Evacuation System Utilizing Exit Signs Jehyun Cho a, Ghang Lee a, Jongsung Won a and Eunseo Ryu a a Dept. of Architectural Engineering, University of Yonsei,

More information

Software Design of the Stiquito Micro Robot

Software Design of the Stiquito Micro Robot Software Design of the Stiquito Micro Robot Andrew McClain and James M. Conrad University of North Carolina at Charlotte jmconrad@uncc.edu Abstract The Stiquito robot is a small, six legged robot that

More information

HumiSys HF High Flow RH Generator

HumiSys HF High Flow RH Generator HumiSys HF High Flow RH Generator Designed, built, and supported by InstruQuest Inc. Versatile Relative Humidity Generation and Multi-Sensor System The HumiSys HF is a high flow version of the previously

More information

Sensing and Modeling of Terrain Features using Crawling Robots

Sensing and Modeling of Terrain Features using Crawling Robots Czech Technical University in Prague Sensing and Modeling of Terrain Features using Crawling Robots Jakub Mrva 1 Faculty of Electrical Engineering Agent Technology Center Computational Robotics Laboratory

More information

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research

Ranger Walking Initiation Stephanie Schneider 5/15/2012 Final Report for Cornell Ranger Research 1 Ranger Walking Initiation Stephanie Schneider sns74@cornell.edu 5/15/2012 Final Report for Cornell Ranger Research Abstract I joined the Biorobotics Lab this semester to gain experience with an application

More information

Line Following with RobotC Page 1

Line Following with RobotC Page 1 Line Following with RobotC Page 1 Line Following with By Michael David Lawton Introduction Line following is perhaps the best way available to VEX Robotics teams to quickly and reliably get to a certain

More information

NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION Task and Rules Document

NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION Task and Rules Document NATIONAL INSTRUMENTS AUTONOMOUS ROBOTICS COMPETITION 2018 2018 Task and Rules Document Table of Contents Competition Background:... 2 Theme: Autonomous Vehicles Fast Track to the Future... 2 Design Elements

More information

1001ICT Introduction To Programming Lecture Notes

1001ICT Introduction To Programming Lecture Notes 1001ICT Introduction To Programming Lecture Notes School of Information and Communication Technology Griffith University Semester 2, 2015 1 4 Lego Mindstorms 4.1 Robotics? Any programming course will set

More information

AC : MEASUREMENT OF HYDROGEN IN HELIUM FLOW

AC : MEASUREMENT OF HYDROGEN IN HELIUM FLOW AC 2010-2145: MEASUREMENT OF HYDROGEN IN HELIUM FLOW Randy Buchanan, University of Southern Mississippi Christopher Winstead, University of Southern Mississippi Anton Netchaev, University of Southern Mississippi

More information

Crystal Breath. High Level Design. Nicholas Castro, Suong Do, Joe Duffy, Joe Lervi, John Mullaney

Crystal Breath. High Level Design. Nicholas Castro, Suong Do, Joe Duffy, Joe Lervi, John Mullaney Crystal Breath Nicholas Castro, Suong Do, Joe Duffy, Joe Lervi, John Mullaney Table of Contents 1 Introduction...3 2 Problem Statement and Proposed Solution...3 2.1 The Problem:... 3 2.2 Proposed Solution:...

More information

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS

#19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS #19 MONITORING AND PREDICTING PEDESTRIAN BEHAVIOR USING TRAFFIC CAMERAS Final Research Report Luis E. Navarro-Serment, Ph.D. The Robotics Institute Carnegie Mellon University November 25, 2018. Disclaimer

More information

REASONS FOR THE DEVELOPMENT

REASONS FOR THE DEVELOPMENT 7 Series 7 Series +24VDC VDC OUTPUT MICROPROCESS. E P IN EXH OUT 7 Series 7 ø,8 8 7 Series 9 5 8 9 7 Series Display features The proportional regulator has a 3 /2 digit display and a three-pushbutton

More information

Algorithm for Line Follower Robots to Follow Critical Paths with Minimum Number of Sensors

Algorithm for Line Follower Robots to Follow Critical Paths with Minimum Number of Sensors International Journal of Computer (IJC) ISSN 2307-4523 (Print & Online) Global Society of Scientific Research and Researchers http://ijcjournal.org/ Algorithm for Line Follower Robots to Follow Critical

More information

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM

all i imck >Э1 1 I Vf I \ Ш i ш ,M; цриазд IF 4 ifipm>v*' %тл sioaoy DNicning HUM p all i imck >Э1 N! w Ш i ш 1 I Vf I \ w,m; цриазд i IF 4 ifipm>v*' HUM V* %тл mk sioaoy DNicning Contents Foreword Preface xxiii xxv Chapter 1 Understanding LEGO Geometry 1 Introduction 2 Expressing Sizes

More information

Robot motion by simultaneously wheel and leg propulsion

Robot motion by simultaneously wheel and leg propulsion Robot motion by simultaneously wheel and leg propulsion Aarne Halme, Ilkka Leppänen, Miso Montonen, Sami Ylönen Automation Technology Laboratory Helsinki University of Technology PL 5400, 02015 HUT, Finland

More information

IDeA Competition Report. Electronic Swimming Coach (ESC) for. Athletes who are Visually Impaired

IDeA Competition Report. Electronic Swimming Coach (ESC) for. Athletes who are Visually Impaired IDeA Competition Report Electronic Swimming Coach (ESC) for Athletes who are Visually Impaired Project Carried Out Under: The Department of Systems and Computer Engineering Carleton University Supervisor

More information

Selecting the right pressure sensor for your application

Selecting the right pressure sensor for your application Selecting the right pressure sensor for your application This guide from Acal BFi details the key factors that you must consider when selecting a pressure sensor for your application. Selecting the best

More information

Location of CC Number if not located with the identification:

Location of CC Number if not located with the identification: This checklist is used for Technical Policy U. Evaluating electronic digital indicators submitted separate from a measuring element. This section is intended for lab testing only. Is permanence necessary?

More information

ROBOTICS AND AUTONOMOUS SYSTEMS in EXPLOSIVE ORDNANCE DISPOSAL

ROBOTICS AND AUTONOMOUS SYSTEMS in EXPLOSIVE ORDNANCE DISPOSAL ROBOTICS AND AUTONOMOUS SYSTEMS in EXPLOSIVE ORDNANCE DISPOSAL LCdr John Keenan Joint Counter Explosive Threat Task Force Defeat the Device (DTD-2) John.keenan@forces.gc.ca DEFINING THE PROBLEM THE MISSION

More information

AED Trainer NF1200-T. Operator s Manual

AED Trainer NF1200-T. Operator s Manual AED Trainer i-pad NF1200-T Operator s Manual NF1200-T Table of Contents Table of Contents 2 1. Introduction 3 Product Description 3 Intended Use 3 2. Device Orientation 4 3. Setting up the i-pad 8 Package

More information

MCQ Gas Blender 100 Series 3 Channels Gas Mixer

MCQ Gas Blender 100 Series 3 Channels Gas Mixer Channels Gas Mixer Revision 1.8 October 2016 High Performance Digital Gas flow Gas Dilutor Blender & Gas for Mixing flow Mixing Gases System and Calibration Routines Technical Data Sheet Lab in a box From

More information

Datasheet: K-30 ASCII Sensor

Datasheet: K-30 ASCII Sensor Datasheet: K-30 ASCII Sensor The K30 ASCII sensor is a low cost, infrared and maintenance free transmitter module intended to be built into different host devices that require CO2 monitoring data. The

More information

Over 80 years of experience in precision weighing and UniBloc technology

Over 80 years of experience in precision weighing and UniBloc technology C054-0351 Over 80 years of experience in precision weighing and UniBloc technology The latest information on balances and scales is available at the following site: http://www.shimadzu.com/balance/ Registered

More information

-SWEPT AWAY- Description & Overview. VEX Classroom Competition Swept Away

-SWEPT AWAY- Description & Overview. VEX Classroom Competition Swept Away -SWEPT AWAY- Description & Overview Swept Away is a head-to-head robotics competition designed and scaled to be run in a classroom environment by a single teacher. This game provides a challenge for designers

More information

EasySas. The most advanced airlock electronics on the market. Recyclable product. Eco-design. Energy savings

EasySas. The most advanced airlock electronics on the market. Recyclable product. Eco-design. Energy savings EasySas The most advanced airlock electronics on the market Eco-design Energy savings Recyclable product ELECTRONIC AIRLOCK MANAGEMENT SkySas range UniSas range CompacSas range An electronic management

More information

ME 8843-Advanced Mechatronics. Project Proposal-Automatic Bike Transmission

ME 8843-Advanced Mechatronics. Project Proposal-Automatic Bike Transmission ME 8843-Advanced Mechatronics Project Proposal-Automatic Bike Transmission 1/21/09 Razid Ahmad Brandon Borm Todd Sifleet Project Proposal: Our goal for the semester long project is to create and automatic

More information

UniBloc technology and over 80 years of experience in precision weighing. Registered

UniBloc technology and over 80 years of experience in precision weighing.   Registered UniBloc technology and over 80 years of experience in precision weighing http://www.shimadzu.com/balance/ Registered AUW-D AUW AUX AUYSeries Shimadzu s UniBloc technology and over 80 years of experience

More information

Rule 1 of Sumo club is we don t talk about sumo club!

Rule 1 of Sumo club is we don t talk about sumo club! SumoBot Notes 1 The SumoBot Game General Overview: Two robots placed in the ring, facing away from each other. At the start of the match each robot must travel to the edge of the ring before it can engage

More information

Test pumps. Pressure sources. Good reasons for proper and reliable calibration

Test pumps. Pressure sources. Good reasons for proper and reliable calibration Test pumps Pressure is one of the most commonly measured quantities in engineering, which is why exact and reliable pressure measurement is especially important. However, the characteristics of the even

More information

Connect with Confidence NO POWER NO PROBLEM

Connect with Confidence NO POWER NO PROBLEM Connect with Confidence NO POWER NO PROBLEM The ideal solution to implement wireless sensor monitoring in IoT applications where power is not available. At last, there s a roll-out ready way to implement

More information

How to Optimize the Disposal System With Staggered Analysis Using BLOWDOWN Technology. Jump Start Guide

How to Optimize the Disposal System With Staggered Analysis Using BLOWDOWN Technology. Jump Start Guide How to Optimize the Disposal System With Staggered Analysis Using BLOWDOWN Technology Jump Start Guide Problem Statement In this guide, you will be introduced to the tools in BLOWDOWN that can be used

More information

Combining Robot Form and Behavior: Designing a Winning Botball Robot

Combining Robot Form and Behavior: Designing a Winning Botball Robot Combining Robot Form and Behavior: Designing a Winning Botball Robot Helena Roberts-Mataric, Nastassja Carusetta, Karen Zhu, Richard Roberts, Maja Mataric South Pasadena High School mataric@usc.edu 1 Introduction

More information

-Round Down- Description & Overview. VEX Classroom Competition Round Down

-Round Down- Description & Overview. VEX Classroom Competition Round Down -Round Down- Description & Overview Round Down is a head-to-head robotics competition designed and scaled to be run in a classroom environment by a single teacher. This game provides a challenge for designers

More information

The M-Series Eletta Flow Meter High accuracy DP Flow Meter with multiple functions

The M-Series Eletta Flow Meter High accuracy DP Flow Meter with multiple functions The M-Series Eletta Flow Meter High accuracy DP Flow Meter with multiple functions Flow Meter with multiple functions for gases and liquids M3 The M-series Flow Meter, with its versatile and user-friendly

More information

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications

2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic. Pressure Measurement Engineered solutions for all applications Application Description AG/266PILD-EN Rev. C 2600T Series Pressure Transmitters Plugged Impulse Line Detection Diagnostic Pressure Measurement Engineered solutions for all applications Increase plant productivity

More information

Electrical, electronic and control engineering at the operational level

Electrical, electronic and control engineering at the operational level STCW Code Table A-III/6 Specification of minimum standard of for electro-technical officers Ref: https://www.edumaritime.net/stcw-code Source: IMO Function: Electrical, electronic and control engineering

More information

Operation of the mask aligner MJB-55

Operation of the mask aligner MJB-55 John Paul Adrian Glaubitz Operation of the mask aligner MJB-55 Department of Physics Faculty of Mathematics and Natural Sciences University of Oslo 1 Introduction The mask aligner is an essential tool

More information

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments)

Laboratory 2(a): Interfacing WiiMote. Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Laboratory 2(a): Interfacing WiiMote Authors: Jeff C. Jensen (National Instruments) Trung N. Tran (National Instruments) Instructors: Edward A. Lee Sanjit A. Seshia University of California, Berkeley EECS

More information

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008

LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 LEGO Engineering Conferences ROBOLAB and MINDSTORMS Education Version 4.5 March 2008 NXT-G Program Book II: Intermediate Robotics Activities for use with the NXT 2008 Tufts Center for Engineering Education

More information

UBEC 1AT. AUTO TANK Fill System Installation, Operation, & Setup Instructions

UBEC 1AT. AUTO TANK Fill System Installation, Operation, & Setup Instructions Document Number: XE-ATA5PM-R1A UBEC 1AT AUTO TANK Fill System 08899155 Installation, Operation, & Setup Instructions Rev170906-EB-FRC PHYSICAL: 1302 WEST BEARDSLEY AVE ELKHART, IN 46514 WWW.ELKHARTBRASS.COM

More information

Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator

Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator Journal of Engineering and Science Research 1 (2): 133-138, e-issn RMP Publications, DOI: Design of a Microcontroller-Based Pitch Angle Controller for a Wind Powered Generator Glenn V. Magwili, Michael

More information

The below identified patent application is available for licensing. Requests for information should be addressed to:

The below identified patent application is available for licensing. Requests for information should be addressed to: DEPARTMENT OF THE NAVY NAVAL UNDERSEA WARFARE CENTER DIVISION NEWPORT OFFICE OF COUNSEL PHONE: (401) 832-3653 FAX: (401) 832-4432 NEWPORT DSN: 432-3653 Attorney Docket No. 96811 Date: 14 May 2008 The below

More information

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas

Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas Standard League Robot Soccer EV3 Compass Training Curriculum Brian Thomas RoboCup Junior Australia Inc Copyright 2018 1 Standard League Robot Soccer EV3 Compass Training Welcome! The aim of this curriculum

More information

Fast Floating Point Compression on the Cell BE Processor

Fast Floating Point Compression on the Cell BE Processor Fast Floating Point Compression on the Cell BE Processor Ajith Padyana, T.V. Siva Kumar, P.K.Baruah Sri Satya Sai University Prasanthi Nilayam - 515134 Andhra Pradhesh, India ajith.padyana@gmail.com, tvsivakumar@gmail.com,

More information

Exemplary Conditional Automation (Level 3) Use Case Description Submitted by the Experts of OICA as input to the IWG ITS/AD

Exemplary Conditional Automation (Level 3) Use Case Description Submitted by the Experts of OICA as input to the IWG ITS/AD Submitted by OICA Document No. ITS/AD-06-05 (6th ITS/AD, 3 November 2015, agenda item 3-2) Exemplary Conditional Automation (Level 3) Use Case Description Submitted by the Experts of OICA as input to the

More information

Minimum standard of competence for electro-technical officers (STCW Reg III/6) Electrical, electronic and control engineering at the operational level

Minimum standard of competence for electro-technical officers (STCW Reg III/6) Electrical, electronic and control engineering at the operational level Minimum standard of for electro-technical officers (STCW Reg III/6) Function: Electrical, electronic and control engineering at the operational level Monitor the Basic understanding of the Examination

More information

GasSense NDIR User Manual

GasSense NDIR User Manual INDEX INDEX... 1 1. OVERVIEW... 2 2. TECHNICAL DATA... 3 3. SPECIFICATIONS... 4 4. PRODUCT DESCRIPTION... 5 4.1 Mechanical details... 5 4.2 Piping... 7 4.3 Connections... 7 5. INSTALLATION... 10 6. CALIBRATION

More information

PERCEPTIVE ROBOT MOVING IN 3D WORLD. D.E- Okhotsimsky, A.K. Platonov USSR

PERCEPTIVE ROBOT MOVING IN 3D WORLD. D.E- Okhotsimsky, A.K. Platonov USSR PERCEPTIVE ROBOT MOVING IN 3D WORLD D.E- Okhotsimsky, A.K. Platonov USSR Abstract. This paper reflects the state of development of multilevel control algorithms for a six-legged mobile robot. The robot

More information

Rules Modernization FAQs March 2018 Update

Rules Modernization FAQs March 2018 Update Rules Modernization FAQs March 2018 Update Background Questions 1. What was the motivation to modernize the Rules of Golf? The Rules of Golf are normally revised in a regular four-year cycle that allows

More information

Series 7250 Ruska High-Speed Digital Pressure Controller. GE Sensing. Features

Series 7250 Ruska High-Speed Digital Pressure Controller. GE Sensing. Features Features Pressure ranges from 0 to 5 and 0 to 3000 psi (0 to 400 mbar and 0 to 210 bar) xi and 7250i provide advanced precision of 0.005% of reading provides 0.003% of full scale precision Stability: 0.0075%

More information

Problem Solving as Search - I

Problem Solving as Search - I Problem Solving as Search - I Shobhanjana Kalita Dept. of Computer Science & Engineering Tezpur University Slides prepared from Artificial Intelligence A Modern approach by Russell & Norvig Problem-Solving

More information

THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS

THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS THE CANDU 9 DISTRffiUTED CONTROL SYSTEM DESIGN PROCESS J.E. HARBER, M.K. KATTAN Atomic Energy of Canada Limited 2251 Speakman Drive, Mississauga, Ont., L5K 1B2 CA9900006 and M.J. MACBETH Institute for

More information

Specifications. The Field:

Specifications. The Field: ME 218b Winter 2008 Project: SPDL Happy Fun Ball Project Preview on February 29, 2008 6-10 pm (in SPDL) Grading Session on March 4, 2008 6-10 pm (in SPDL) Project Presentations on March 5, 2008 starting

More information

Fail Operational Controls for an Independent Metering Valve

Fail Operational Controls for an Independent Metering Valve Group 14 - System Intergration and Safety Paper 14-3 465 Fail Operational Controls for an Independent Metering Valve Michael Rannow Eaton Corporation, 7945 Wallace Rd., Eden Prairie, MN, 55347, email:

More information

Pressure Sensor Bridge Configurations

Pressure Sensor Bridge Configurations Pressure Sensor Bridge Configurations 1. Purpose Describe different pressure sensor bridge configurations, when each can and cannot be used, and the advantages and disadvantages of each. 2. Introduction

More information

Advanced PMA Capabilities for MCM

Advanced PMA Capabilities for MCM Advanced PMA Capabilities for MCM Shorten the sensor-to-shooter timeline New sensor technology deployed on off-board underwater systems provides navies with improved imagery and data for the purposes of

More information

WELCOME TO THE REVOLUTION

WELCOME TO THE REVOLUTION USER GUIDE WELCOME TO THE REVOLUTION THANK YOU FOR CHOOSING THE GCQUAD We listened to what you wanted - and created the most accurate, versatile and game-enhancing ball and club analysis solution available

More information

ENS-200 Energy saving trainer

ENS-200 Energy saving trainer ENS-200 Energy saving trainer Find out about the essential aspects of energy efficiency in compressed air installations Save money Put it into practice Take care of the environment Get training www.smctraining.com

More information

Cold-acclimatised pipelines

Cold-acclimatised pipelines Cold-acclimatised pipelines Maintaining flow and pressure when the temperature is low can present serious but manageable challenges. Field instrumentation can help, but it must be deployed and maintained

More information

A line following vehicle is in a way an entry level autonomous vehicle that can navigate any course while following a on a contrasting background.

A line following vehicle is in a way an entry level autonomous vehicle that can navigate any course while following a on a contrasting background. ROBOTRIX 1 Theme A driverless car is an autonomous vehicle that can drive itself from one point to another without any external assistance. Navigation is accomplished by a system of markers retrofitted

More information

RG2 Gripper Datasheet Version 1.6

RG2 Gripper Datasheet Version 1.6 RG2 Gripper Datasheet Version 1.6 The RG2 gripper is a flexible electric gripper specially designed for robots from Universal Robots. The long stroke allows the gripper to handle a variety of object sizes.

More information

Vibration-Free Joule-Thomson Cryocoolers for Distributed Microcooling

Vibration-Free Joule-Thomson Cryocoolers for Distributed Microcooling Vibration-Free Joule-Thomson Cryocoolers for Distributed Microcooling W. Chen, M. Zagarola Creare Inc. Hanover, NH, USA ABSTRACT This paper reports on an innovative concept for a space-borne Joule-Thomson

More information

Electronic Automatic Transmission for Bicycle

Electronic Automatic Transmission for Bicycle Electronic Automatic Transmission for Bicycle Team 4 Tianqi Liu, Ruijie Qi, and Xingkai Zhou ECE 445 Project Proposal Spring 2018 TA: Hershel Rege 1 Introduction 1.1 Objective Nowadays, an increasing number

More information

Standard League WRO Football Simple Simon EV3 Training Curriculum

Standard League WRO Football Simple Simon EV3 Training Curriculum Standard League WRO Football Simple Simon EV3 Training Curriculum Brian Thomas **LEGO, EV3 Mindstorms and Robolab are Registered Trademarks of the LEGO Corporation RoboCup Junior Australia Inc Copyright

More information

AUTOMATIC DREDGING PROFILE AND CONTOUR CONTROL

AUTOMATIC DREDGING PROFILE AND CONTOUR CONTROL AUTOMATIC DREDGING PROFILE AND CONTOUR CONTROL Jay Wise 1 ABSTRACT Phillips and Jordan, a leading excavating and disaster recovery contractor, was faced with the challenge to manage a civil contract involving

More information

ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING

ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING ACCURATE PRESSURE MEASUREMENT FOR STEAM TURBINE PERFORMANCE TESTING Blair Chalpin Charles A. Matthews Mechanical Design Engineer Product Support Manager Scanivalve Corp Scanivalve Corp Liberty Lake, WA

More information

Improve Process Reliability

Improve Process Reliability Convenient Conductivity Calibration to Meet Pharmacopeia Regulations Pharmacopeias require that conductivity measurement systems be periodically calibrated to ensure their precision. The range of accessories

More information

Design, Building and Teaching with a Hydrostatic and Buoyancy Apparatus

Design, Building and Teaching with a Hydrostatic and Buoyancy Apparatus Design, Building and Teaching with a Hydrostatic and Buoyancy Apparatus Mir M. Atiqullah and Norman Russell Southern Polytechnic State University Marietta, GA. ABSTRACT A typical Fluid Mechanics laboratory

More information

Pedestrian Dynamics: Models of Pedestrian Behaviour

Pedestrian Dynamics: Models of Pedestrian Behaviour Pedestrian Dynamics: Models of Pedestrian Behaviour John Ward 19 th January 2006 Contents Macro-scale sketch plan model Micro-scale agent based model for pedestrian movement Development of JPed Results

More information

HASTAC High stability Altimeter SysTem for Air data Computers

HASTAC High stability Altimeter SysTem for Air data Computers HASTAC High stability Altimeter SysTem for Air data Computers André Larsen R&D Director Memscap Sensor Solution SIXTH FRAMEWORK PROGRAMME PRIORITY 4 Aeronautics and Space EC contract no. AST4-CT-2005-012334

More information

Certified Accuracy. Ring Force Gauge. Models and Capacities Available. Design and Principle of Operation

Certified Accuracy. Ring Force Gauge. Models and Capacities Available. Design and Principle of Operation Certified Accuracy Ring Force Gauge The accurate measurement of mechanical forces is required in hundreds of applications from a simple weighing procedure to the calibration of testing machines and load

More information

Spider Robot for Motion with Quasistatic. Force Constraints

Spider Robot for Motion with Quasistatic. Force Constraints Spider Robot for Motion with Quasistatic Force Constraints Shraga Shoval, Elon Rimon and Amir Shapira Technion - Israel Institute of Technology - Haifa, Israel 32000. Abstract In quasistatic motions the

More information

COMPARING PLUG & SEAT REGULATORS & CONTROL VALVES. Lamar Jones. Equipment Controls Company 4555 South Berkeley Lake Road Norcross, GA 30071

COMPARING PLUG & SEAT REGULATORS & CONTROL VALVES. Lamar Jones. Equipment Controls Company 4555 South Berkeley Lake Road Norcross, GA 30071 COMPARING PLUG & SEAT REGULATORS & CONTROL VALVES Lamar Jones Equipment Controls Company 4555 South Berkeley Lake Road Norcross, GA 30071 INTRODUCTION The purpose of this paper will be to compare a plug

More information

Field Setup. Match Scoring

Field Setup. Match Scoring Vex Competition Tuesday March 13, 2018 Biscuit in the Basket is a head-to-head robotics competition designed and scaled to be run in a classroom environment by a single teacher. This game provides a challenge

More information

Department of Computer Science and Engineering The University of Texas at Arlington. Team: PAINTeK. Project: Sentinel

Department of Computer Science and Engineering The University of Texas at Arlington. Team: PAINTeK. Project: Sentinel Department of Computer Science and Engineering The University of Texas at Arlington Team: PAINTeK Project: Team Members: Ryan Bell Eric Cleveland Sean Pierce Robert Wunderlich Last Updated: June 14, 2012

More information

Project Title: Pneumatic Exercise Machine

Project Title: Pneumatic Exercise Machine EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 27 January 2011 Project Title: Pneumatic Exercise Machine Team Members: Name: Gino Tozzi Name: Seok Hyun (John) Yun Email:

More information

Re: ENSC 440 Functional Specification for the Wall Climbing Robot. Dear Mr. Leung,

Re: ENSC 440 Functional Specification for the Wall Climbing Robot. Dear Mr. Leung, Patrick Leung School of Engineering Science Simon Fraser University 8888 University Drive Burnaby, BC. V5A 1S6 Date 2/18/08 Re: ENSC 440 Functional Specification for the Wall Climbing Robot Dear Mr. Leung,

More information

Better Search Improved Uninformed Search CIS 32

Better Search Improved Uninformed Search CIS 32 Better Search Improved Uninformed Search CIS 32 Functionally PROJECT 1: Lunar Lander Game - Demo + Concept - Open-Ended: No One Solution - Menu of Point Options - Get Started NOW!!! - Demo After Spring

More information

Table of Contents FIRST 2005 FIRST Robotics Competition Manual: Section 3 The Arena rev B Page 1 of 8

Table of Contents FIRST 2005 FIRST Robotics Competition Manual: Section 3 The Arena rev B Page 1 of 8 Table of Contents 3 THE ARENA...2 3.1 OVERVIEW...2 3.1.1 Dimensions and Tolerances...3 3.2 PLAYING FIELD...4 3.2.1 Boundaries and Markings...4 3.2.2 Goals...5 3.2.3 Center Goal...5 3.2.4 Tetra Loading

More information

Skippy: Reaching for the Performance Envelope

Skippy: Reaching for the Performance Envelope Workshop on Dynamic Locomotion and Manipulation ETH Zürich, July 2016 Skippy: Reaching for the Performance Envelope Roy Featherstone 2016 Roy Featherstone What is Skippy? a hopping and balancing machine

More information

NR-Tec Ltd. S2S SMARTSHOT Acoustic Fluid Level Instrument

NR-Tec Ltd. S2S SMARTSHOT Acoustic Fluid Level Instrument NR-Tec Ltd. S2S SMARTSHOT Acoustic Fluid Level Instrument The S2S SmartShot is a single shot, manually operated fluid level instrument with next generation SmartShot Technology. This new technology enhances

More information

LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS

LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS LOCOMOTION CONTROL CYCLES ADAPTED FOR DISABILITIES IN HEXAPOD ROBOTS GARY B. PARKER and INGO CYLIAX Department of Computer Science, Indiana University, Bloomington, IN 47405 gaparker@cs.indiana.edu, cyliax@cs.indiana.edu

More information

The Quarter Pounder A Vehicle to Launch Quarter Pound Payloads to Low Earth Orbit

The Quarter Pounder A Vehicle to Launch Quarter Pound Payloads to Low Earth Orbit The Quarter Pounder A Vehicle to Launch Quarter Pound Payloads to Low Earth Orbit Ed LeBouthillier 1 Contents Introduction... 3 Requirements... 4 Orbital Altitudes... 4 Orbital Velocities... 4 Summary...4

More information

/435 Artificial Intelligence Fall 2015

/435 Artificial Intelligence Fall 2015 Final Exam 600.335/435 Artificial Intelligence Fall 2015 Name: Section (335/435): Instructions Please be sure to write both your name and section in the space above! Some questions will be exclusive to

More information

Digiquartz Water-Balanced Pressure Sensors for AUV, ROV, and other Moving Underwater Applications

Digiquartz Water-Balanced Pressure Sensors for AUV, ROV, and other Moving Underwater Applications Digiquartz Water-Balanced Pressure Sensors for AUV, ROV, and other Moving Underwater Applications Dr. Theo Schaad Principal Scientist Paroscientific, Inc. 2002 Paroscientific, Inc. Page 1 of 6 Digiquartz

More information

National Robotics Competition 2018 NRC WRO Challenge Manual

National Robotics Competition 2018 NRC WRO Challenge Manual National Robotics Competition 2018 NRC WRO Challenge Manual Page 1 of 13 A. Competition Categories World Robot Olympiad has three regular competition categories, and an Open category: 1. Regular Category

More information

Level MEASUREMENT 1/2016

Level MEASUREMENT 1/2016 Level MEASUREMENT 1/2016 AGENDA 2 A. Introduction B. Float method C. Displacer method D. Hydrostatic pressure method E. Capacitance method G. Ultrasonic method H. Radar method I. Laser method J. Level

More information

MARINE LIGHTING.

MARINE LIGHTING. MARINE LIGHTING 2016 www.ultimatesportsengineering.com TECHNOLOGY EXPLAINED TAP ACTIVATED POWER (TAP) Exposure Lights continue to introduce new ideas and pat pend. technologies to improve functionality

More information

Precision level sensing with low-pressure module MS

Precision level sensing with low-pressure module MS The task on hand Level sensing as it is understood in modern process automation is much more than simply "tank half full" or "tank a quarter full". Using suitable sensors, levels, inlets and outlets can

More information

Ron Gibson, Senior Engineer Gary McCargar, Senior Engineer ONEOK Partners

Ron Gibson, Senior Engineer Gary McCargar, Senior Engineer ONEOK Partners New Developments to Improve Natural Gas Custody Transfer Applications with Coriolis Meters Including Application of Multi-Point Piecewise Linear Interpolation (PWL) Marc Buttler, Midstream O&G Marketing

More information