Autonomous Surface Craft Provide Flexibility to Remote Adaptive Oceanographic Sampling and Modeling

Size: px
Start display at page:

Download "Autonomous Surface Craft Provide Flexibility to Remote Adaptive Oceanographic Sampling and Modeling"

Transcription

1 Autonomous Surface Craft Provide Flexibility to Remote Adaptive Oceanographic Sampling and Modeling Joseph Curcio Toby Schneider Michael Benjamin Andrew Patrikalakis Center for Ocean Engineering Department of Mechanical Engineering Massachusetts Institute of Technology Cambridge, MA Abstract During field experiments conducted in Monterey Bay, CA in the summer of 2006 and Dabob Bay, WA in the summer of 2007, a team of scientists and engineers from MIT outfitted an on-board winch and CTD system onto a SCOUT autonomous surface craft (ASC). Along with allowing both teleoperated and autonomous CTD profiling capability, this system was deployed as part of a small fleet of similar ASCs equipped with acoustic modem hardware and linked via b wireless ethernet and Evolution Data, Optimized (EVDO) to the ship and the internet. Using this communications capability, the fleet of autonomous vehicles automatically uploaded oceanographic data to a remote server and remained in contact with scientists aboard the nearby research vessel. The uploaded data was nearly immediately available to the ocean modeling and prediction model maintained at MIT and Harvard University. Finally, the entire system was exercised with a completely autonomous test of sound speed using two distinct techniques: acoustic pings and a CTD cast. I. INTRODUCTION Oceanographic research and discovery, like any human scientific endeavor, is limited by human and financial resources. Thus, substantial progress in the pace of discovery will likely come by new innovations in efficient use of oceanographers time and research money. The field of marine robotics has tremendous potential to progress towards this goal by replacing many of the mundane tasks performed currently by scientists with autonomous systems. In the post Apollo era, astrophysicists have learned much through the use of robots, and as much of the ocean environment shares many similarities with the reaches beyond our planet (often treacherous, dark, and inaccessible), oceanographers will likely profit by emulating this approach. Research in autonomous marine vehicles has largely focused on three platforms types: autonomous underwater vehicles (AUVs) (such as [1], [2], [3]), gliders (like [4] and [5]), and autonomous surface craft (ASCs). Each of these platform types has certain advantages and limitations. AUVs have high maneuverability but limited run time (on the order of a day); gliders have relatively little control over their destination but long deployment times (a month or more). In this work, we focus on a small fleet of low cost SCOUT ASCs as the platform [6]. ASCs have several advantages over other platform types, especially for fast paced engineering research. The hardware is quickly reconfigurable and the safety of the craft does not require code freezes that are often necessary for AUV work. It is possible (and desirable) to update software while the vehicles are deployed. Simulations can be run on ship based computers and the subsequent changes pushed to the craft in minutes without retrieving the vehicles. Furthermore, a single operator can handle multiple vehicles with time left to simulate and develop new missions. They can also be used for novel purposes that transcend the traditional uses of a marine vessel, such as the smart buoy proposed in [7]. In the present work, one of these ASCs is outfitted with a small conductivity-temperature-depth (CTD) instrument to perform the measurements for which the instrument is named. These quantities are particularly valuable to physical oceanography. (For example, temperature of the ocean studies are crucial to understanding global warming [8].) The winch used to raise and lower the CTD is mounted in the SCOUT and is controlled by the ASC s main vehicle computer. This CTD vehicle allows an oceanographer to make CTD casts while the ship is performing other tasks. Now that the vehicle can be controlled from the ship, modern communications technology enables control from almost anywhere in the world. Furthermore, since the vehicle can be commanded by a human to take casts, it is a small step to allow command by a shore based computer (running an ocean model, for example). We took these ideas and developed a multivehicle sampling system capable of being deployed remotely and automatically. In field experiments in Dabob Bay, WA in 2007, we demonstrate this system with a test that involves two of the ASCs calculating sound speed using acoustic pings while a third calculates sound speed indirectly through measurements of salinity, tem-

2 perature, and depth using the CTD. Remote sensing is hardly a new concept: sonar and other acoustic techniques fall into that category. However, many oceanographic measurements are impossible to make without the instrument in close proximity with the sample. Furthermore, it is prudent to calibrate and verify remote measurements using an independent sampling technique. The system we present here enables remote (for the oceanographer) yet immediate (for the sensor) sensing. II. AUTONOMOUS SAMPLING SYSTEM We demonstrate a system based on an easily deployed sampling platform (multiple ASCs), autonomy software (MOOS- IvP software architecture), and sea and air communications infrastructure (wireless networking, EVDO networking, acoustic communications, and the internet). A. SCOUT ASC The robotic platform used in this experiment is the Surface Craft for Undersea and Oceanographic Testing (SCOUT). The SCOUT (Fig. 1) is a three meter plastic-hulled craft with electric propulsion and an main vehicle computer running GNU/Linux [6]. For this work, one of the SCOUTs was outfitted with a SeaBird 49 (SBE49) CTD, a small off-the-shelf unit capable of sampling continuously at sixteen Hertz and interfacing through a RS-232 serial port. The CTD was attached to the end of the seventy meter winch cable and deployed through a penetration in the hull of the ASC (note Fig. 2 for a picture of the winch). Winch operation was accomplished using a custom fabricated controller attached to the electric reel motor, incorporating feedback from an optical encoder mounted to the spool mechanism. The winch is capable of lowering the CTD at about twenty meters per minute. Fig. 1. CTD equipped SCOUT vehicle. B. Autonomy Software The vehicles in this work run an autonomy architecture comprised of the Mission Oriented Operating Suite (MOOS) and the Interval Programming (IvP) helm. (Together they are referred to as MOOS-IvP.) 1) MOOS: MOOS is an open source publish/subscribe architecture written in C++ by Paul Newman. MOOS allows individual software modules (MOOS modules) to pass data through a central database (MOOSDB). Individual modules have no knowledge of each other beyond the variables they publish and subscribe. This allows for rapid addition of software to the code base on a vehicle without intricate knowledge of existing modules. It also lowers the training time required for a new developer to begin writing useful code. All of these are valuable traits for a rapid prototyping research system. MOOS lacks some of the runtime efficiencies available in other software systems, but this negative is outweighed by the benefits for our purposes (rapid prototyping by a large group of differently skilled contributors). As MOOS is open source software, the code and documentation is freely available from P. Newman s website [9]. Fig. 2. SCOUT equipped with autonomous winch (center). The main vehicle computer is visible on the left.

3 2) IvP Helm: The IvP Helm (also known by its MOOS module name phelmivp) acts as the SCOUT s captain. It is a MOOS module that publishes and subscribes to the MOOSDB. However, it also interfaces with one or more behaviors that govern different aspects of the vehicle s final actions. Each behavior produces an objective function over all speeds and headings available to the vehicle. For each speed and heading, the objective function defines a utility. The IvP Helm optimizes over the objective functions, finding compromises or, in the case of mutually exclusivity, picking the action that has a highest utility (priority weighting) [10]. Simple behaviors implement way point following or station keeping, and more complex behaviors implement true adaptive autonomy (e.g. temperature gradient following or target tracking). Uses of the IvP Helm in marine vehicle autonomy can be found in [11] and [12]. The IvP Helm is also open source and available at [13]. The following two modules (iwinch and psamplingcontrol) are responsible for conducting autonomous CTD missions using the SCOUT: 3) iwinch: The winch is raised and lowered by means of the MOOS module iwinch, a driver that takes from the MOOSDB a desired depth for the CTD and translates it into encoder positions for the winch. The reel motor for the winch is then commanded to move the desired number of encoder positions. 4) psamplingcontrol: Another MOOS module, psamplingcontrol, is responsible for mediating the CTD sampling mission. Several types of missions are defined and psamplingcontrol is responsible for translating CTD mission parameters into parameters for iwinch, turning on and off behaviors in phelmivp, and enabling CTD data logging (using pctdlogger). C. Communications To enable remote operation and tasking of the SCOUTs, several third-party communication devices are installed on the vehicles. At the signal level, the first two use electromagnetic (EM) signals through air ( wireless and EVDO), and the third (WHOI MicroModem) uses acoustic transmissions through water. The presences of both air and water links allows the SCOUTs to receive commands from either above the ocean (anywhere with access to the internet) or below the ocean (buoys, AUVs, or gliders). 1) Wireless Networking: For basic operation from the ship, a wireless IEEE b compliant network card is installed on all the SCOUTs. A compatible router is based on the ship to form a simple IP based network. Communication with the vehicle computers is largely done with UDP packets where acknowledgments are done at the application layer when needed. The GNU/Linux Secure Shell (OpenSSH) is also used to remotely administrate the vehicle computers. The router antenna is boosted with a radio frequency (RF) power amplifier to improve range. The ocean environment can cause wireless dropouts and low throughput, which is still an area for improvement. We are investigating the use of newer protocols such as IEEE n and how they perform for our system. A summary of this link can be given by the communication layers (top to bottom is most to least abstract): Application Layer: Various MOOS Modules (phelmivp and other control processes) Transport Layer: MOOS module MOOSBlink (creates UDP packets from MOOS variables) Network Layer: Internet Protocol (IP) Link Layer: specified by IEEE b protocol Hardware: specified by IEEE b protocol ( 2.4 GHz EM carrier, 20 MHz bandwidth) 2) EVDO Networking: The second air based communication device is an Evolution Data, Optimized (EVDO) modem that allows a connection to the internet directly through compatible cell phone towers. While only usable in certain near shore areas, these modems are a low cost alternative to satellite technology. In our tests in Dabob Bay, WA, these modems provided excellent connectivity and throughput. Application Layer: Various MOOS modules Transport Layer: MOOS module iwebsite (invokes GNU/Linux Wget and SCP to pass MOOS variables to and from a remote server) Network Layer: Internet Protocol (IP) Link Layer: specified by EVDO protocol Hardware: specified by EVDO protocol (EM carrier frequency depends on region) 3) WHOI MicroModems: For underwater communications, the SCOUTS use an acoustic modem called the MicroModem developed at the Woods Hole Oceanographic Institution (WHOI). The MicroModem comes in several variants, but the ones used in the SCOUTs operate at a center frequency of about twenty-five kilohertz and provide approximately eighty bits per second (bps) throughput using frequency-shift keying with frequency hopping (FH-FSK) [14]. The messages are encoded into thirty-two byte hex sentences using the Compact Control Language (CCL) set of codecs also developed at WHOI. Application Layer: Various MOOS modules and pframer (does compression/decompression) Transport Layer: MOOS module imicromodem Link Layer: MicroModem Firmware Hardware: MicroModem FH-FSK (25 khz carrier) The MicroModem protocol does not currently support routing beyond broadcast (similar to a single ethernet link). All routing must be done above the transport layer. III. COOPERATIVE SOUND SPEED TEST A. Background Initial tests using the CTD vehicle were performed in Monterey Bay, CA in 2006 (MB06). Hardware issues were worked out and the CTD vehicle performed a series of temperature gradient following missions presented in [11]. The first deployment was performed with a lead weight in place of the CTD instrument in order to test and confirm

4 Fig. 3. Google Earth Ocean Viewer (GEOV) screenshot during the cooperative sound speed experiment. the basic mechanical and electrical winch functionality. Once it was decided that the winch system was functioning as expected, the CTD was calibrated alongside the Research Vessel s (R/V Point Sur) CTD instrument. This was accomplished by mounting the SBE49 directly to the ship s CTD rosette and lowering both instruments simultaneously. CTD calibration runs were then performed in close proximity to the Research Vessel in order to further confirm correlation between the SCOUT based CTD and the R/V CTD prior to deploying the vehicle on its first autonomous CTD mission. The SCOUT was commanded upon deployment to transit to a predetermined way point and hold station upon arrival. Once on station, the CTD was lowered and retrieved several times in order to assure full mechanical and electrical functionality. The initial shake out tests proved satisfactory and the vehicle was then sent on its initial survey run. This mission consisted of providing the SCOUT vehicle with two way points that represented the diagonal corners of a rectangle. The SCOUT software used these two points to generate a set of ten way points arranged in a simple rectangular grid formation within the rectangle prescribed. The vehicle successfully cast the CTD at each node and completed the full transit in approximately one and one half hours. It was discovered that the addition of the winch into the otherwise stable SCOUT vehicle raised the vehicles center of gravity sufficiently enough to cause the vehicle to become unstable in roll. During operations in sea state three (wind approximately fifteen knots, wave height approximately three feet) The SCOUT vehicle inverted, but remained stable at the surface and was easily recovered and re-launched. Additional ballast was added to the vehicle which improved the stability significantly and proved to be a satisfactory solution used throughout the remainder of the experiments. The SCOUT outfitted with the CTD winch system was deployed for approximately eight hours over the course of ten days during the MB06 trials. The following year, the EVDO modems and supporting software were integrated by the following year and further tests were performed in Dabob Bay, WA in 2007 as part of the Persistent Littoral Undersea Network (PLUSNet07) exercises. This new infrastructure allowed the SCOUTs to be commanded in Washington by a mission set by parameters in a text file at modelseas.mit.edu (based in Massachusetts). The modelseas.mit.edu server hosts the Harvard Ocean Prediction System (HOPS) ocean model. While during the PLUSNet07 exercises human oceanographers set the missions parameters on modelseas.mit.edu, the infrastructure is there to have the HOPS model produce the desired mission. Over twenty remotely commanded CTD missions were made over the course of PLUSNet07 to perform different tests such as finding changes in the thermocline, detecting internal waves, and calibrating glider and ship CTDs. A final experiment, the cooperative sound speed test, is presented here and demonstrates all the aspects of this system at once. B. Setup The cooperative sound speed test involves three SCOUTs, two outfitted with MicroModems and one with the CTD previously mentioned. One of the MicroModem-equipped SCOUTs acts as commander. The goal of the experiment is for the three vehicles to collaborate to measure the sound speed of a section of water using two independent techniques. (See Fig. 3 for a screenshot of the vehicle position viewer during the actual experiment.) Sound speed in water is a useful quantity for many acoustics techniques such as underwater communications, navigation, and tracking. The experiment is carried out by the following events (illustrated in Fig. 4): 1) The commander vehicle ( Dee ) receives an acoustic prosecute message from Network and Field Control (NaFCon). The prosecute message was normally used

5 modelseas.mit.edu webserver 2) EVDO / Internet 5) 3) IEEE b Wireless DEE ELANOR BOBBY other processes psoundspeed iwebsite MOOSDB 4) imicromodem MOOSBlink 6) phelmivp behaviors Air Sea other processes iwebsite psamplingcontrol MOOSDB Winch driver 6) phelmivp behaviors other processes MOOSBlink MOOSDB imicromodem 6) phelmivp behaviors MICROMODEM 7) FSK Acoustic MICROMODEM 1) Network and Field Control (through buoy) SBE49 CTD 500 m 500 m Fig. 4. Schematic demonstrating the software and communication links for the cooperative sound speed test. for acoustic target tracking but we adapted it for our sound speed test use. 2) A MOOS Module called psoundspeed on Dee takes the message and processes. Within the prosecute message is a location in the bay that should be sampled (target point). psoundspeed emulates a remote modeling computer to test the long range EVDO/internet link by giving the target point to the CTD vehicle ( Elanor ) via modelseas.mit.edu (a server based in Massachusetts). 3) psoundspeed (running on Dee) provides the target point, offset 500 meters to the east, to the other MicroModem-equipped vehicle ( Bobby ) via wireless. 4) psoundspeed passes the target point offset 500 meters to the west to its own MOOSDB for consumption by the IvP Helm. 5) The CTD vehicle, Elanor, reads the mission file from the modelseas.mit.edu web server and psamplingcontrol mediates the CTD test (per other CTD experiments). The CTD data is used to calculate sound speed (from temperature and salinity). 6) phelmivp on Dee and Bobby consumes information published locally and through MOOSBlink, respectively, and all the vehicles transit to their appropriate sample places using the BHV WayPoint behavior. Once the vehicles reach their station points, the IvP helm behavior BHV StationKeep ensures the vehicles stay within an acceptable radius of their deployed point even in the presence of wind or current. 7) psoundspeed initiates pinging from the Dee s Micro- Modem and Bobby responds. The one way travel time is recorded and the sound speed is directly computed using the known separation of the vehicles through the vehicles GPS. C. Results Due to ship time constraints, this experiment was only completed (after several tests) for a thirty minute run in a single location. The positions of the vehicles throughout the experiment are given in Fig. 5 and the measured sound speeds from both techniques in Fig. 6. The sound speed calculation from the CTD is done by the Chen and Millero formula based on temperature, salinity, and pressure [15]. The direct ping sound speed was computed simply from c = d/t (1) where d is the separation of the two vehicles, t is the direct path one way travel time after removing the modem turnaround time, and c is the speed of sound. From a technical standpoint the test was highly successful; the vehicles performed as expected with a minimal amount of debugging. While the data set here is too small to be of scientific use, it points to improvements needed to our system before a larger scale test can be performed. The accuracy of the Garmin GPS (several meters at least) on both vehicles means that the uncertainty in the sound speed over a one

6 Latitude (decimal degrees) Longitude (decimal degrees) Fig. 5. Positions of vehicles during cooperative sound speed test. Bright colors indicate early time in the experiment and coloring corresponds to Fig. 6. Sound speed (m/s) CTD derived direct ping (Dee to Bobby) Seconds since Wed, 10 Oct :50:43 UTC Fig. 6. Measured speed of sound during the October 10, 2007 sound speed experiment using three SCOUT ASCs performing two techniques. Note that the coloration corresponds to that of Fig. 5. kilometer test is too high to give sufficiently precise data to be used for acoustics work. Though, since the data point that matters is the difference between the two MicroModemequipped vehicles, the error is likely much lower (common mode rejection). However, using higher accuracy differential GPS would certainly lead to higher accuracy in the final sound speed measurement. The acoustic modem specifications state an accuracy of ± 125 microseconds in the computation of the one way travel time, after subtracting out the turnaround time in the second modem [14]. IV. CONCLUSION Use of multiple low cost autonomous craft has shown to be a feasible tool for oceanographic sampling over long distances. It will be a simple next step to incorporate shore based computer models into our system; remaining is having the HOPS model produce a text mission file for the vehicle(s) and read in the resulting data and create a new mission. We plan to extend this remotely commanded multiple vehicle sampling structure to other sensors, such as sidescan sonar, and other platforms, including AUVs. Within the specific sound speed experiment demonstrated here, we would like to put winches on the MicroModem SCOUTs as well so the height of the MicroModem transducers can be autonomously controlled in the same manner that the CTD is. By having this flexibility along with the mobility of the SCOUTs, the sound speed could be calculated through a number of different ray paths, creating a three dimensional (averaged) sound speed profile. This experiment has validated the suitability and certain advantages to be gained through using an ASC in gathering oceanographic environmental data. Ship based instrumentation offers advantages including speed of transit between data points, lab space and so on. Some of these benefits may be offset by factors including complexity, cost, station keeping considerations and the potential to contaminate data through water discharge (including heat and particulates) and magnetic signature. The small, highly maneuverable ASC offers substantial cost savings and may be most suitable for applications requiring smaller scale spatial distribution of data points where the ship based system may be more suitable to sampling over larger areas and greater data point spacing. The ASC will likely offer significant advantages when applied to sampling data over very large time scales (days - years potentially) as operational costs are insignificant and robotic systems faithfully fulfill their objectives without regard to manning schedules and labor restrictions. The advantages of providing unmanned operation and more importantly autonomous adaptive capability provided by the ASC will likely prove to be very powerful utilities once all of the long term survivability and deployment duration requirements are satisfied. ACKNOWLEDGMENT The authors would like to thank everyone who made this endeavor possible: the Laboratory for Autonomous Marine Sensing Systems headed by Henrik Schmidt, Paul Newman for MOOS, the organizers behind PLUSNet07, the crew of the R/V Point Sur (especially the cook), and the Office of Naval Research (ONR) for financial support. REFERENCES [1] B. Allen, et al., REMUS: a small, low cost AUV; system description, field trials and performance results, OCEANS MTS/IEEE Conference Proceedings, vol. 2, pp , Oct [2] D. R. Yoerger, A. M. Bradley, and B. B. Walden. The Autonomous Benthic Explorer (ABE): an AUV optimized for deep seafloor studies, Proceedings of the Seventh International Symposium on Unmanned Untethered Submersible Technology (UUST91), pp , [3] H. Singh, et al., Seabed AUV offers new platform for high-resolution imaging, EOS, Transactions of the AGU, vol. 85, no. 31, pp. 289, , Aug [4] D. C. Webb, P. J. Simonetti, and C. P. Jones, SLOCUM, an underwater glider propelled by environmental energy, IEEE J. Oceanic Eng., vol. 26, pp , Oct

7 [5] J. Sherman, R. E. Davis, W. B. Owens, and J. Valdes, The autonomous underwater glider Spray, IEEE J. Oceanic Eng., vol. 26, pp , Oct [6] J. Curcio, J. Leonard, A. Patrikalakis, SCOUT - a low cost autonomous surface platform for research in cooperative autonomy, OCEANS MTS/IEEE Conference Proceedings, vol. 1, pp , [7] J. Curcio, et al. Self-positioning smart buoys, the un-buoy solution: logistic considerations using autonomous surface craft technology and improved communications infrastructure, OCEANS 2006, MTS/IEEE Oceans Conference Proceedings, pp. 1-5, Sept [8] S. Levitus, J. I. Antonov, T. P. Boyer, and C. Stephens, Warming of the world ocean, Science, Vol no. 5461, pp , 24 March [9] P. Newman, TheMOOS, Dec [Online]. Available: pnewman/themoos/ [Accessed July 18, 2008]. [10] M. R. Benjamin, The Interval Programming Model for Multi-objective Decision Making, AI Lab Technical Memo AIM , Massachusetts Institute of Technology, Cambridge MA, September [Online]. Available: [Accessed July 18, 2008]. [11] D. P. Eickstedt, M. R. Benjamin, J. Curcio, Behavior Based Adaptive Control for Autonomous Oceanographic Sampling, 2007 IEEE International Conference on Robotics and Automation, pp , April [12] M. Benjamin, D. Battle, D. Eickstedt, H. Schmidt, A. Balasuriya, Autonomous Control of an Unmanned Underwater Vehicle Towing a Vector Sensor Array, International Conference on Robotics and Automation (ICRA), Rome, Italy, April [13] M. Benjamin, MOOS-IvP Home Page, [Online]. Available: [Accessed July 18, 2008]. [14] L. Freitag, M. Grund, S. Singh, J. Partan, P. Koski, K. Ball, The WHOI micro-modem: an acoustic communications and navigation system for multiple platforms, OCEANS MTS/IEEE Conference Proceedings, vol. 2, pp , [15] C-T. Chen and F. J. Millero, Speed of sound in seawater at high pressures, J. Acoust. Soc. Am., vol 62, issue 5, pp , Nov

Acoustic Communications and Navigation for Mobile Under-Ice Sensors

Acoustic Communications and Navigation for Mobile Under-Ice Sensors DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Acoustic Communications and Navigation for Mobile Under-Ice Sensors Lee Freitag Applied Ocean Physics and Engineering 266

More information

A Shallow Water Acoustic Network for Mine Countermeasures Operations with Autonomous Underwater Vehicles

A Shallow Water Acoustic Network for Mine Countermeasures Operations with Autonomous Underwater Vehicles A Shallow Water Acoustic Network for Mine Countermeasures Operations with Autonomous Underwater Vehicles Lee Freitag, Matthew Grund, Chris von Alt, Roger Stokey and Thomas Austin Woods Hole Oceanographic

More information

Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP

Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP Physics-based Simulation Environment for Adaptive and Collaborative Marine Sensing with MOOS-IvP Prof. Henrik Schmidt Laboratory for Autonomous Marine Sensing Systems Massachusetts Institute of technology

More information

Blair. Ballard. MIT Adviser: Art Baggeroer. WHOI Adviser: James Preisig. Ballard

Blair. Ballard. MIT Adviser: Art Baggeroer. WHOI Adviser: James Preisig. Ballard Are Acoustic Communications the Right Answer? bjblair@ @mit.edu April 19, 2007 WHOI Adviser: James Preisig MIT Adviser: Art Baggeroer 1 Background BS in Electrical and Co omputer Engineering, Cornell university

More information

MarineSIM : Robot Simulation for Marine Environments

MarineSIM : Robot Simulation for Marine Environments MarineSIM : Robot Simulation for Marine Environments P.G.C.Namal Senarathne, Wijerupage Sardha Wijesoma,KwangWeeLee, Bharath Kalyan, Moratuwage M.D.P, Nicholas M. Patrikalakis, Franz S. Hover School of

More information

Multi-Band Acoustic Modem for the Communications and Navigation Aid AUV

Multi-Band Acoustic Modem for the Communications and Navigation Aid AUV Multi-Band Acoustic Modem for the Communications and Navigation Aid AUV Lee E. Freitag, Matthew Grund, Jim Partan, Keenan Ball, Sandipa Singh, Peter Koski Woods Hole Oceanographic Institution Woods Hole,

More information

Uncertainty-Based Localization Solution for Under-Ice Autonomous Underwater Vehicles

Uncertainty-Based Localization Solution for Under-Ice Autonomous Underwater Vehicles Uncertainty-Based Localization Solution for Under-Ice Autonomous Underwater Vehicles Presenter: Baozhi Chen Baozhi Chen and Dario Pompili Cyber-Physical Systems Lab ECE Department, Rutgers University baozhi_chen@cac.rutgers.edu

More information

Acoustic Communications and Navigation for Mobile Under-Ice Sensors

Acoustic Communications and Navigation for Mobile Under-Ice Sensors DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Acoustic Communications and Navigation for Mobile Under-Ice Sensors Lee Freitag Applied Ocean Physics and Engineering 266

More information

Multistatic, Concurrent Detection, Classification and Localization Concepts for Autonomous, Shallow Water Mine Counter Measures

Multistatic, Concurrent Detection, Classification and Localization Concepts for Autonomous, Shallow Water Mine Counter Measures Multistatic, Concurrent Detection, Classification and Localization Concepts for Autonomous, Shallow Water Mine Counter Measures PI: Henrik Schmidt Massachusetts Institute of Technology 77 Massachusetts

More information

Cooperative AUV Navigation using MOOS: MLBL Maurice Fallon and John Leonard

Cooperative AUV Navigation using MOOS: MLBL Maurice Fallon and John Leonard Cooperative AUV Navigation using MOOS: MLBL Maurice Fallon and John Leonard Cooperative ASV/AUV Navigation AUV Navigation is not error bounded: Even with a $300k RLG, error will accumulate GPS and Radio

More information

Abstract. 1. Introduction

Abstract. 1. Introduction IBP1572_09 REMOTE EROSION AND CORROSION MONITORING OF SUBSEA PIPELINES USING ACOUSTIC TELEMETRY AND WET-MATE CONNECTOR TECHNOLOGY Howard Painter 1, Stewart Barlow 2, Daniel Clarke 3, Dale Green 4 Copyright

More information

Research Vessel Technical Enhancement Committee (RVTEC) November 2009 Meeting ISS - Integrated Survey Systems

Research Vessel Technical Enhancement Committee (RVTEC) November 2009 Meeting ISS - Integrated Survey Systems Research Vessel Technical Enhancement Committee (RVTEC) November 2009 Meeting ISS - Integrated Survey Systems John Kiernan, P.E. SAIC - Marine Science and Technology Division ISS-2000 Integrated Survey

More information

EIS - Electronics Instrumentation Systems for Marine Applications

EIS - Electronics Instrumentation Systems for Marine Applications Coordinating unit: Teaching unit: Academic year: Degree: ECTS credits: 2015 230 - ETSETB - Barcelona School of Telecommunications Engineering 710 - EEL - Department of Electronic Engineering MASTER'S DEGREE

More information

Cooperative AUV Navigation using a Single Surface Craft

Cooperative AUV Navigation using a Single Surface Craft Cooperative AUV Navigation using a Single Surface Craft Maurice F. Fallon, Georgios Papadopoulos and John J. Leonard Abstract Maintaining accurate localization of an autonomous underwater vehicle (AUV)

More information

The Oil & Gas Industry Requirements for Marine Robots of the 21st century

The Oil & Gas Industry Requirements for Marine Robots of the 21st century The Oil & Gas Industry Requirements for Marine Robots of the 21st century www.eninorge.no Laura Gallimberti 20.06.2014 1 Outline Introduction: fast technology growth Overview underwater vehicles development

More information

USBL positioning and communication SyStEmS. product information GUidE

USBL positioning and communication SyStEmS. product information GUidE USBL positioning and communication SyStEmS product information GUidE evologics s2c R usbl - series underwater positioning and communication systems EvoLogics S2CR USBL is a series of combined positioning

More information

Autonomous Underwater Vehicles

Autonomous Underwater Vehicles Autonomous Underwater Vehicles New Autonomous Underwater Vehicle technology development at WHOI to support the growing needs of scientific, commercial and military undersea search and survey operations

More information

MIT Unmanned Marine Vehicle Autonomy, Sensing and Communications Spring 2015

MIT Unmanned Marine Vehicle Autonomy, Sensing and Communications Spring 2015 MIT 2.680 Unmanned Marine Vehicle Autonomy, Sensing and Communications Spring 2015 Lectures: Labs: Lab Material: Stellar site: Class Website: Instructors: Office Hours: Contact Info: M-W 3-4pm, NE45-202

More information

HIGH FREQUENCY INTENSITY FLUCTUATIONS

HIGH FREQUENCY INTENSITY FLUCTUATIONS Proceedings of the Seventh European Conference on Underwater Acoustics, ECUA 004 Delft, The Netherlands 5-8 July, 004 HIGH FREQUENCY INTENSITY FLUCTUATIONS S.D. Lutz, D.L. Bradley, and R.L. Culver Steven

More information

ONGOING AND FUTURE PROJECTS

ONGOING AND FUTURE PROJECTS (Kamgar-Parsi 92). (Karahalios 91) examines volumetric sonar visualization concepts and presents example visualizations using near-field sonar processing data. Additional images from her work appear in

More information

Transitioning Submersible Chemical Analyzer Technologies for Sustained, Autonomous Observations from Profiling Moorings, Gliders and other AUVs

Transitioning Submersible Chemical Analyzer Technologies for Sustained, Autonomous Observations from Profiling Moorings, Gliders and other AUVs Transitioning Submersible Chemical Analyzer Technologies for Sustained, Autonomous Observations from Profiling Moorings, Gliders and other AUVs PI: Alfred K. Hanson SubChem Systems, Inc. 665 North Main

More information

Modeling and Evaluation of Bi-Static Tracking In Very Shallow Water

Modeling and Evaluation of Bi-Static Tracking In Very Shallow Water Modeling and Evaluation of Bi-Static Tracking In Very Shallow Water Stewart A.L. Glegg Dept. of Ocean Engineering Florida Atlantic University Boca Raton, FL 33431 Tel: (954) 924 7241 Fax: (954) 924-7270

More information

Acoustic Communications and Navigation for Under-Ice Sensors

Acoustic Communications and Navigation for Under-Ice Sensors Acoustic Communications and Navigation for Under-Ice Sensors Lee Freitag and Andrey Morozov 2009 Funded Project Ocean and Climate Change Institute What were the primary questions you were trying to address

More information

ACOUSTIC RESEARCH FOR PORT PROTECTION AT THE STEVENS MARITIME SECURITY LABORATORY

ACOUSTIC RESEARCH FOR PORT PROTECTION AT THE STEVENS MARITIME SECURITY LABORATORY ACOUSTIC RESEARCH FOR PORT PROTECTION AT THE STEVENS MARITIME SECURITY LABORATORY Alexander Sutin, Barry Bunin Stevens Institute of Technology, Castle Point on Hudson, Hoboken, NJ 07030, United States

More information

Acoustic Communications and Navigation Under Arctic Ice

Acoustic Communications and Navigation Under Arctic Ice Acoustic Communications and Navigation Under Arctic Ice Lee Freitag, Peter Koski, Andrey Morozov, Sandipa Singh and James Partan Woods Hole Oceanographic Institution Woods Hole, MA USA {lfreitag, pkoski,

More information

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS GPS System Design and Control Modeling Chua Shyan Jin, Ronald Assoc. Prof Gerard Leng Aeronautical Engineering Group, NUS Abstract A GPS system for the autonomous navigation and surveillance of an airship

More information

MIMO Transceiver Systems on AUVs

MIMO Transceiver Systems on AUVs MIMO Transceiver Systems on AUVs Mohsen Badiey 107 Robinson Hall College of Marine and Earth Studies, phone: (302) 831-3687 fax: (302) 831-6521 email: badiey@udel.edu Aijun Song 114 Robinson Hall College

More information

idocent: Indoor Digital Orientation Communication and Enabling Navigational Technology

idocent: Indoor Digital Orientation Communication and Enabling Navigational Technology idocent: Indoor Digital Orientation Communication and Enabling Navigational Technology Final Proposal Team #2 Gordie Stein Matt Gottshall Jacob Donofrio Andrew Kling Facilitator: Michael Shanblatt Sponsor:

More information

Development of a Synchronous High-Speed Acoustic Communication and Navigation System for Unmanned Underwater Vehicles

Development of a Synchronous High-Speed Acoustic Communication and Navigation System for Unmanned Underwater Vehicles Development of a Synchronous High-Speed Acoustic Communication and Navigation System for Unmanned Underwater Vehicles Dr. Pierre-Philippe Beaujean Florida Atlantic University SeaTech 101 N. Beach Road,

More information

Hardware System for Unmanned Surface Vehicle Using IPC Xiang Shi 1, Shiming Wang 1, a, Zhe Xu 1, Qingyi He 1

Hardware System for Unmanned Surface Vehicle Using IPC Xiang Shi 1, Shiming Wang 1, a, Zhe Xu 1, Qingyi He 1 Advanced Materials Research Online: 2014-06-25 ISSN: 1662-8985, Vols. 971-973, pp 507-510 doi:10.4028/www.scientific.net/amr.971-973.507 2014 Trans Tech Publications, Switzerland Hardware System for Unmanned

More information

Guide to Inductive Moorings

Guide to Inductive Moorings Guide to Inductive Moorings Real-Time Ocean Observing Systems with Inductive Modem Telemetry Technology Visit Us at sea-birdscientific.com Reach us at info@seabird.com Copyright 2016 Sea-Bird Scientific

More information

Underwater Acoustic Communication and Modem-Based Navigation Aids

Underwater Acoustic Communication and Modem-Based Navigation Aids Underwater Acoustic Communication and Modem-Based Navigation Aids Dale Green Teledyne Benthos 49 Edgerton Drive North Falmouth, MA 02556 USA Abstract. New forms of navigation aids for underwater vehicles

More information

Underwater source localization using a hydrophone-equipped glider

Underwater source localization using a hydrophone-equipped glider SCIENCE AND TECHNOLOGY ORGANIZATION CENTRE FOR MARITIME RESEARCH AND EXPERIMENTATION Reprint Series Underwater source localization using a hydrophone-equipped glider Jiang, Y.M., Osler, J. January 2014

More information

LBL POSITIONING AND COMMUNICATION SYSTEMS PRODUCT INFORMATION GUIDE

LBL POSITIONING AND COMMUNICATION SYSTEMS PRODUCT INFORMATION GUIDE LBL POSITIONING AND COMMUNICATION SYSTEMS PRODUCT INFORMATION GUIDE EvoLogics S2C LBL Underwater Positioning and Communication Systems EvoLogics LBL systems bring the benefi ts of long baseline (LBL) acoustic

More information

Shallow Water MCM and ASW Using Off-Board, Autonomous Sensor Networks and Multistatic, Time-Reversal Acoustics

Shallow Water MCM and ASW Using Off-Board, Autonomous Sensor Networks and Multistatic, Time-Reversal Acoustics Shallow Water MCM and ASW Using Off-Board, Autonomous Sensor Networks and Multistatic, Time-Reversal Acoustics PI: Henrik Schmidt Massachusetts Institute of Technology 77 Massachusetts Avenue Room 5-204

More information

AN AIDED NAVIGATION POST PROCESSING FILTER FOR DETAILED SEABED MAPPING UUVS

AN AIDED NAVIGATION POST PROCESSING FILTER FOR DETAILED SEABED MAPPING UUVS MODELING, IDENTIFICATION AND CONTROL, 1999, VOL. 20, NO. 3, 165-175 doi: 10.4173/mic.1999.3.2 AN AIDED NAVIGATION POST PROCESSING FILTER FOR DETAILED SEABED MAPPING UUVS Kenneth Gade and Bjørn Jalving

More information

Applications. > > Oil & Gas. > > RoVs and auvs. > > Oceanography. > > Monitoring stations. > > Seismic. > > Networks and relay chains

Applications. > > Oil & Gas. > > RoVs and auvs. > > Oceanography. > > Monitoring stations. > > Seismic. > > Networks and relay chains Underwater acoustic Modems EvoLogics S2CR - series underwater acoustic modems provide full-duplex digital communication delivering an excellent performance, resistant to the challenges of the dynamic subsea

More information

System development and performance of the Deep-ocean Assessment and Reporting of Tsunamis (DART) system from

System development and performance of the Deep-ocean Assessment and Reporting of Tsunamis (DART) system from ITS 2001 Proceedings, NHTMP Review Session, Paper R-24 317 System development and performance of the Deep-ocean Assessment and Reporting of Tsunamis (DART) system from 1997 2001 Christian Meinig, Marie

More information

ORBCOMM Machine-To-Machine (M2M)

ORBCOMM Machine-To-Machine (M2M) ORBCOMM Machine-To-Machine (M2M) Texas V & C-Sigma November 2012 Global M2M Connecting the World s Assets Machine-To-Machine (M2M) Applications Global M2M Wireless Network for Narrowband Data Applications

More information

PROUDMAN OCEANOGRAPHIC LABORATORY CRUISE REPORT NO. 35. VEINS: Inverted Echo Sounders in the Denmark Strait. As part of FS METEOR CRUISE 45/4

PROUDMAN OCEANOGRAPHIC LABORATORY CRUISE REPORT NO. 35. VEINS: Inverted Echo Sounders in the Denmark Strait. As part of FS METEOR CRUISE 45/4 PROUDMAN OCEANOGRAPHIC LABORATORY CRUISE REPORT NO. 35 VEINS: Inverted Echo Sounders in the Denmark Strait As part of FS METEOR CRUISE 45/4 AUGUST 13, 1999 AUGUST 31, 1999 G.W. Hargreaves 1999 DOCUMENT

More information

USBL positioning and communication systems. Applications

USBL positioning and communication systems. Applications USBL positioning and communication systems Offering a powerful USBL transceiver functionality with full benefits of an S2C technology communication link Applications Positioning of offshore equipment >

More information

A 3D, FORWARD-LOOKING, PHASED ARRAY, OBSTACLE AVOIDANCE SONAR FOR AUTONOMOUS UNDERWATER VEHICLES

A 3D, FORWARD-LOOKING, PHASED ARRAY, OBSTACLE AVOIDANCE SONAR FOR AUTONOMOUS UNDERWATER VEHICLES A 3D, FORWARD-LOOKING, PHASED ARRAY, OBSTACLE AVOIDANCE SONAR FOR AUTONOMOUS UNDERWATER VEHICLES Matthew J. Zimmerman Vice President of Engineering FarSounder, Inc. 95 Hathaway Center, Providence, RI 02907

More information

HIGH-FREQUENCY ACOUSTIC PROPAGATION IN THE PRESENCE OF OCEANOGRAPHIC VARIABILITY

HIGH-FREQUENCY ACOUSTIC PROPAGATION IN THE PRESENCE OF OCEANOGRAPHIC VARIABILITY HIGH-FREQUENCY ACOUSTIC PROPAGATION IN THE PRESENCE OF OCEANOGRAPHIC VARIABILITY M. BADIEY, K. WONG, AND L. LENAIN College of Marine Studies, University of Delaware Newark DE 19716, USA E-mail: Badiey@udel.edu

More information

James Bellingham. Marine Robotics

James Bellingham. Marine Robotics James Bellingham Marine Robotics Robotic systems are transforming the ocean sciences. Marine Robotics - Teleoperation In the 1990s, WHOI was one of a few organizations with deep-diving Remotely Operated

More information

Automation at Depth: Ocean Infinity and seabed mapping using multiple AUVs

Automation at Depth: Ocean Infinity and seabed mapping using multiple AUVs Automation at Depth: Ocean Infinity and seabed mapping using multiple AUVs Ocean Infinity s seabed mapping campaign commenced in the summer of 2017. The Ocean Infinity team is made up of individuals from

More information

e-navigation Underway International February 2016 Kilyong Kim(GMT Co., Ltd.) Co-author : Seojeong Lee(Korea Maritime and Ocean University)

e-navigation Underway International February 2016 Kilyong Kim(GMT Co., Ltd.) Co-author : Seojeong Lee(Korea Maritime and Ocean University) e-navigation Underway International 2016 2-4 February 2016 Kilyong Kim(GMT Co., Ltd.) Co-author : Seojeong Lee(Korea Maritime and Ocean University) Eureka R&D project From Jan 2015 to Dec 2017 15 partners

More information

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy.

Author s Name Name of the Paper Session. DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION. Sensing Autonomy. Author s Name Name of the Paper Session DYNAMIC POSITIONING CONFERENCE October 10-11, 2017 SENSORS SESSION Sensing Autonomy By Arne Rinnan Kongsberg Seatex AS Abstract A certain level of autonomy is already

More information

Pioneer Array Micro-siting Meeting

Pioneer Array Micro-siting Meeting Ocean Observatories Initiative Pioneer Array Micro-siting Meeting June 7, 2011 Coastal Institute University of Rhode Island June 7, 2011 PIONEER ARRAY MICRO-SITING MEETING AGENDA Welcome, Introduction

More information

Intelligent Sensor Platforms for Remotely Piloted and Unmanned Vehicles. Dr. Nick Krouglicof 14 June 2012

Intelligent Sensor Platforms for Remotely Piloted and Unmanned Vehicles. Dr. Nick Krouglicof 14 June 2012 Intelligent Sensor Platforms for Remotely Piloted and Unmanned Vehicles Dr. Nick Krouglicof 14 June 2012 Project Overview Project Duration September 1, 2010 to June 30, 2016 Primary objective(s) / outcomes

More information

im200 Payload Autonomy Interface for Heron USVs

im200 Payload Autonomy Interface for Heron USVs im200 Payload Autonomy Interface for Heron USVs Fall 2017 Alon Yaari, ayaari@mit.edu Michael Benjamin, mikerb@mit.edu Department of Mechanical Engineering, CSAIL MIT, Cambridge MA 02139 1 im200 Payload

More information

DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited.

DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Glider-based Passive Acoustic Monitoring Techniques in the Southern California Region & West Coast Naval Training Range

More information

Differential navigation for UAV platforms with mobile reference station

Differential navigation for UAV platforms with mobile reference station Differential navigation for UAV platforms with mobile reference station NAWRAT ALEKSANDER, KOZAK KAMIL, DANIEC KRZYSZTOF, KOTERAS ROMAN Department of Automatic Control and Robotics, Silesian University

More information

Modal Mapping in a Complex Shallow Water Environment

Modal Mapping in a Complex Shallow Water Environment Modal Mapping in a Complex Shallow Water Environment George V. Frisk Bigelow Bldg. - Mailstop 11 Department of Applied Ocean Physics and Engineering Woods Hole Oceanographic Institution Woods Hole, MA

More information

MINE SEARCH MISSION PLANNING FOR HIGH DEFINITION SONAR SYSTEM - SELECTION OF SPACE IMAGING EQUIPMENT FOR A SMALL AUV DOROTA ŁUKASZEWICZ, LECH ROWIŃSKI

MINE SEARCH MISSION PLANNING FOR HIGH DEFINITION SONAR SYSTEM - SELECTION OF SPACE IMAGING EQUIPMENT FOR A SMALL AUV DOROTA ŁUKASZEWICZ, LECH ROWIŃSKI MINE SEARCH MISSION PLANNING FOR HIGH DEFINITION SONAR SYSTEM - SELECTION OF SPACE IMAGING EQUIPMENT FOR A SMALL AUV DOROTA ŁUKASZEWICZ, LECH ROWIŃSKI Gdansk University of Technology Faculty of Ocean Engineering

More information

Robots at Work The growing role of robotic systems in the Oceans and Subsea Engineering. David Brookes Senior Advisor, Upstream Engineering, BP

Robots at Work The growing role of robotic systems in the Oceans and Subsea Engineering. David Brookes Senior Advisor, Upstream Engineering, BP Robots at Work The growing role of robotic systems in the Oceans and Subsea Engineering David Brookes Senior Advisor, Upstream Engineering, BP Synopsis ROV s History Current Capabilities and Examples AUV

More information

AUVFEST 05 Quick Look Report of NPS Activities

AUVFEST 05 Quick Look Report of NPS Activities AUVFEST 5 Quick Look Report of NPS Activities Center for AUV Research Naval Postgraduate School Monterey, CA 93943 INTRODUCTION Healey, A. J., Horner, D. P., Kragelund, S., Wring, B., During the period

More information

Long Range Acoustic Communications and Navigation in the Arctic

Long Range Acoustic Communications and Navigation in the Arctic Long Range Acoustic Communications and Navigation in the Arctic Lee Freitag, Keenan Ball, James Partan, Peter Koski and Sandipa Singh Woods Hole Oceanographic Institution Woods Hole, MA USA {lfreitag,

More information

@mit.edu Ballard

@mit.edu Ballard Underwater Co ommunications bjblair@ @mit.edu WHOIE Adviser: James Preisig MIT Adviser: Art Baggeroer 1 Background BS in Electrical and Co omputer Engineering, Cornell university 20022 MS in Electrical

More information

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016

Marine Robotics. Alfredo Martins. Unmanned Autonomous Vehicles in Air Land and Sea. Politecnico Milano June 2016 Marine Robotics Unmanned Autonomous Vehicles in Air Land and Sea Politecnico Milano June 2016 INESC TEC / ISEP Portugal alfredo.martins@inesctec.pt Tools 2 MOOS Mission Oriented Operating Suite 3 MOOS

More information

Unified Command and Control for Heterogeneous Marine Sensing Networks

Unified Command and Control for Heterogeneous Marine Sensing Networks Unified Command and Control for Heterogeneous Marine Sensing Networks Toby Schneider and Henrik Schmidt Laboratory for Autonomous Marine Sensing Systems (LAMSS) Center for Ocean Engineering Department

More information

Positioning Small AUVs for Deeper Water Surveys Using Inverted USBL

Positioning Small AUVs for Deeper Water Surveys Using Inverted USBL Positioning Small AUVs for Deeper Water Surveys Using Inverted USBL Presented at Hydro12, Rotterdam, November 2012 Dr. T.M. Hiller, thiller@teledyne.com Overview Introduction to Gavia AUV Gavia Acoustic

More information

Acoustic Communications for UUVs

Acoustic Communications for UUVs Acoustic Communications for UUVs Josko Catipovic Lee Freitag Naval Undersea Warfare Center Woods Hole Oceanographic Institution Newport, RI 02841 Woods Hole, MA 02543 (401) 832-3259 (508) 289-3285 catipovicj@npt.nuwc.navy.mil

More information

SONOBOT AUTONOMOUS HYDROGRAPHIC SURVEY VEHICLE PRODUCT INFORMATION GUIDE

SONOBOT AUTONOMOUS HYDROGRAPHIC SURVEY VEHICLE PRODUCT INFORMATION GUIDE SONOBOT AUTONOMOUS HYDROGRAPHIC SURVEY VEHICLE PRODUCT INFORMATION GUIDE EvoLogics Sonobot an autonomous unmanned surface vehicle for hydrographic surveys High Precision Differential GPS for high-accuracy

More information

Autonomous Underwater Vehicles

Autonomous Underwater Vehicles Autonomous Underwater Vehicles A View of the Autonomous Underwater Vehicle Market For a number of years now the Autonomous Underwater Vehicle (AUV) has been the undisputed tool of choice for certain niche

More information

from ocean to cloud DUAL-CONDUCTOR CAPABILITIES IN WET PLANT DESIGN QUALIFICATION SEATRIALS

from ocean to cloud DUAL-CONDUCTOR CAPABILITIES IN WET PLANT DESIGN QUALIFICATION SEATRIALS DUAL-CONDUCTOR CAPABILITIES IN WET PLANT DESIGN QUALIFICATION SEATRIALS Maurice E. Kordahi, Jeremiah Mendez, Ralph J. Rue, Michael M. Sanders, Robert K. Stix, Ryan Wilkison (TE SubCom) Email: mkordahi@subcom.com

More information

Pipeline Inspection and Environmental Monitoring Using AUVs

Pipeline Inspection and Environmental Monitoring Using AUVs Pipeline Inspection and Environmental Monitoring Using AUVs Bjørn Jalving, Bjørn Gjelstad, Kongsberg Maritime AUV Workshop, IRIS Biomiljø, 7 8 September 2011 WORLD CLASS through people, technology and

More information

Real-Time Continuous Observations of Lake Erie Chemical, Biological, and Physical Parameters

Real-Time Continuous Observations of Lake Erie Chemical, Biological, and Physical Parameters Real-Time Continuous Observations of Lake Erie Chemical, Biological, and Physical Parameters S. Ruberg 1, S. Brandt 1, S. Gordon 2, R. Muzzi 1 1. NOAA Great Lakes Environmental Research Lab (GLERL) 2.

More information

Observations of the deep-water mid-frequency ambient noise spatial structure and temporal fluctuation characteristics.

Observations of the deep-water mid-frequency ambient noise spatial structure and temporal fluctuation characteristics. Mid-Frequency Ambient Noise Experiment 4-21 August 2018 Objective Observations of the deep-water mid-frequency ambient noise spatial structure and temporal fluctuation characteristics. Background The 2D

More information

A Multi-Use Low-Cost, Integrated, Conductivity/Temperature Sensor

A Multi-Use Low-Cost, Integrated, Conductivity/Temperature Sensor A Multi-Use Low-Cost, Integrated, Conductivity/Temperature Sensor Guy J. Farruggia Areté Associates 1725 Jefferson Davis Hwy Suite 703 Arlington, VA 22202 phone: (703) 413-0290 fax: (703) 413-0295 email:

More information

Project Report Liquid Robotics, Inc. Integration and Use of a High-frequency Acoustic Recording Package (HARP) on a Wave Glider

Project Report Liquid Robotics, Inc. Integration and Use of a High-frequency Acoustic Recording Package (HARP) on a Wave Glider Project Report Liquid Robotics, Inc. Integration and Use of a High-frequency Acoustic Recording Package (HARP) on a Wave Glider Sean M. Wiggins Marine Physical Laboratory Scripps Institution of Oceanography

More information

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver

NMEA 2000 Parameter Group Numbers and Description as of August 2007 NMEA 2000 DB Ver Category General & or Mandatory ISO Acknowledgment This message is provided by ISO 11783 for a handshake mechanism between transmitting and receiving devices. This message is the possible response to acknowledge

More information

Engineering Project Proposals

Engineering Project Proposals Engineering Project Proposals (Wireless sensor networks) Group members Hamdi Roumani Douglas Stamp Patrick Tayao Tyson J Hamilton (cs233017) (cs233199) (cs232039) (cs231144) Contact Information Email:

More information

Mobile Magnetic and Multi-Influence Range Advanced Degaussing and Ranging System

Mobile Magnetic and Multi-Influence Range Advanced Degaussing and Ranging System Mobile Magnetic and Multi-Influence Range Advanced Degaussing and Ranging System General Introduction For many years SAM Electronics has made substantial contributions to Naval Magnetic Ranging and Treatment

More information

COURSE 2. Mechanical Engineering at MIT

COURSE 2. Mechanical Engineering at MIT COURSE 2 Mechanical Engineering at MIT The Department of Mechanical Engineering MechE embodies the Massachusetts Institute of Technology s motto mens et manus, mind and hand as well as heart by combining

More information

THE NEPTUS C4ISR FRAMEWORK: MODELS, TOOLS AND EXPERIMENTATION. Gil M. Gonçalves and João Borges Sousa {gil,

THE NEPTUS C4ISR FRAMEWORK: MODELS, TOOLS AND EXPERIMENTATION. Gil M. Gonçalves and João Borges Sousa {gil, THE NEPTUS C4ISR FRAMEWORK: MODELS, TOOLS AND EXPERIMENTATION Gil M. Gonçalves and João Borges Sousa {gil, jtasso}@fe.up.pt Faculdade de Engenharia da Universidade do Porto Rua Dr. Roberto Frias s/n 4200-465

More information

Underwater Vehicle Systems at IFREMER. From R&D to operational systems. Jan Opderbecke IFREMER Unit for Underwater Systems

Underwater Vehicle Systems at IFREMER. From R&D to operational systems. Jan Opderbecke IFREMER Unit for Underwater Systems Underwater Vehicle Systems at IFREMER From R&D to operational systems Jan Opderbecke IFREMER Unit for Underwater Systems Operational Engineering Mechanical and systems engineering Marine robotics, mapping,

More information

Navigation of an Autonomous Underwater Vehicle in a Mobile Network

Navigation of an Autonomous Underwater Vehicle in a Mobile Network Navigation of an Autonomous Underwater Vehicle in a Mobile Network Nuno Santos, Aníbal Matos and Nuno Cruz Faculdade de Engenharia da Universidade do Porto Instituto de Sistemas e Robótica - Porto Rua

More information

An Ultrasonic Sensor Based Low-Power Acoustic Modem for Underwater Communication in Underwater Wireless Sensor Networks

An Ultrasonic Sensor Based Low-Power Acoustic Modem for Underwater Communication in Underwater Wireless Sensor Networks An Ultrasonic Sensor Based Low-Power Acoustic Modem for Underwater Communication in Underwater Wireless Sensor Networks Heungwoo Nam and Sunshin An Computer Network Lab., Dept. of Electronics Engineering,

More information

Experiences with Hydrographic Data Budgets Using a Low-logistics AUV Platform. Thomas Hiller Teledyne Marine Systems

Experiences with Hydrographic Data Budgets Using a Low-logistics AUV Platform. Thomas Hiller Teledyne Marine Systems Experiences with Hydrographic Data Budgets Using a Low-logistics AUV Platform Thomas Hiller Teledyne Marine Systems 1 Teledyne Marine Systems Strategic Business Units 2 What is the Gavia? The Gavia is

More information

Applications of iusbl Technology overview

Applications of iusbl Technology overview Applications of iusbl Technology overview Tom Bennetts Project Manager Summary 1. What is iusbl and its target applications 2. Advantages of iusbl and sample data 3. Technical hurdles and Calibration methods

More information

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's

NMEA2000- Par PGN. Mandatory Request, Command, or Acknowledge Group Function Receive/Transmit PGN's PGN Number Category Notes - Datum Local geodetic datum and datum offsets from a reference datum. T The Request / Command / Acknowledge Group type of 126208 - NMEA - Request function is defined by first

More information

AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM

AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM AUTOMATIC ELECTRICITY METER READING AND REPORTING SYSTEM Faris Shahin, Lina Dajani, Belal Sababha King Abdullah II Faculty of Engineeing, Princess Sumaya University for Technology, Amman 11941, Jordan

More information

Marine Mammal Acoustic Tracking from Adapting HARP Technologies

Marine Mammal Acoustic Tracking from Adapting HARP Technologies DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Marine Mammal Acoustic Tracking from Adapting HARP Technologies Sean M. Wiggins Marine Physical Laboratory, Scripps Institution

More information

Mid-Frequency Noise Notch in Deep Water. W.S. Hodgkiss / W.A. Kuperman. June 1, 2012 May 31, 2013

Mid-Frequency Noise Notch in Deep Water. W.S. Hodgkiss / W.A. Kuperman. June 1, 2012 May 31, 2013 Mid-Frequency Noise Notch in Deep Water W.S. Hodgkiss and W.A. Kuperman June 1, 2012 May 31, 2013 A Proposal to ONR Code 322 Attn: Dr. Robert Headrick, Office of Naval Research BAA 12-001 UCSD 20123651

More information

DATAMAR 2000 MICROWAVE (26 GHz) RADAR TIDE GAUGE

DATAMAR 2000 MICROWAVE (26 GHz) RADAR TIDE GAUGE DATAMAR 2000 MICROWAVE (26 GHz) RADAR TIDE GAUGE BATTERY POWERED COMPACT AND STAND ALONE TIDE GAUGE WITH MICROWAVE RADAR SENSOR (26 GHz) PROVIDING EXTREMELY HIGH PRECISION AND STABILITY Level measurements

More information

Exploitation of Environmental Complexity in Shallow Water Acoustic Data Communications

Exploitation of Environmental Complexity in Shallow Water Acoustic Data Communications Exploitation of Environmental Complexity in Shallow Water Acoustic Data Communications W.S. Hodgkiss Marine Physical Laboratory Scripps Institution of Oceanography La Jolla, CA 92093-0701 phone: (858)

More information

Tsunami Detection System Nick Street, Project Engineer David Mould, Presenter.

Tsunami Detection System Nick Street, Project Engineer David Mould, Presenter. Tsunami Detection System Nick Street, Project Engineer David Mould, Presenter Agenda 1. Need for Tsunami Detection System 2. System Overview 3. Tsunami Detection System requirements 4. Seabed Unit - Tsunameter

More information

DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited.

DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. DISTRIBUTION STATEMENT A. Approved for public release; distribution is unlimited. Understanding the Effects of Water-Column Variability on Very-High-Frequency Acoustic Propagation in Support of High-Data-Rate

More information

SUB-SEABED MAPPING USING AUV-BASED MULTI-STATIC ACOUSTIC SENSING AND ADAPTIVE CONTROL

SUB-SEABED MAPPING USING AUV-BASED MULTI-STATIC ACOUSTIC SENSING AND ADAPTIVE CONTROL SUB-SEABED MAPPING USING AUV-BASED MULTI-STATIC ACOUSTIC SENSING AND ADAPTIVE CONTROL H. SCHMIDT, J. LEONARD, J.R. EDWARDS AND T-C. LIU Massachusetts Institute of Technology, 77 Massachusetts Avenue, Cambridge

More information

F6052 Universal Time Synchronizer

F6052 Universal Time Synchronizer F6052 Universal Time Synchronizer Doble Engineering Company March 2014 2013 Doble Engineering Company. All Rights Reserved 1 2013 Doble Engineering Company. All Rights Reserved History of Portable Time

More information

RDT&E BUDGET ITEM JUSTIFICATION SHEET (R-2 Exhibit)

RDT&E BUDGET ITEM JUSTIFICATION SHEET (R-2 Exhibit) , R-1 #49 COST (In Millions) FY 2000 FY2001 FY2002 FY2003 FY2004 FY2005 FY2006 FY2007 Cost To Complete Total Cost Total Program Element (PE) Cost 21.845 27.937 41.497 31.896 45.700 57.500 60.200 72.600

More information

Remote Sensing of Deepwater Shipwrecks

Remote Sensing of Deepwater Shipwrecks Abigail Casavant December 16, 2014 Final Project NRS 509 Remote Sensing of Deepwater Shipwrecks Underwater archaeology is still a relatively new field in terms of age and technological advances. With the

More information

NRL Glider Data Report for the Shelf-Slope Experiment

NRL Glider Data Report for the Shelf-Slope Experiment Naval Research Laboratory Stennis Space Center, MS 39529-5004 NRL/MR/7330--17-9716 NRL Glider Data Report for the Shelf-Slope Experiment Joel Wesson Jeffrey W. Book Sherwin Ladner Andrew Quaid Ian Martens

More information

Aquatec Solutions CUSTOM SUBSEA MEASUREMENT & COMMUNICATION SOLUTIONS

Aquatec Solutions CUSTOM SUBSEA MEASUREMENT & COMMUNICATION SOLUTIONS Aquatec Solutions CUSTOM SUBSEA MEASUREMENT & COMMUNICATION SOLUTIONS Solutions Aquatec has a long history of innovation and was founded in 1990 by the current managing director as a specialist consultancy

More information

Marine Sensor/Autonomous Underwater Vehicle Integration Project

Marine Sensor/Autonomous Underwater Vehicle Integration Project Marine Sensor/Autonomous Underwater Vehicle Integration Project Dr. Thomas L. Hopkins Department of Marine Science University of South Florida St. Petersburg, FL 33701-5016 phone: (727) 553-1501 fax: (727)

More information

2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE. Network on Target: Remotely Configured Adaptive Tactical Networks. C2 Experimentation

2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE. Network on Target: Remotely Configured Adaptive Tactical Networks. C2 Experimentation 2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE Network on Target: Remotely Configured Adaptive Tactical Networks C2 Experimentation Alex Bordetsky Eugene Bourakov Center for Network Innovation

More information

PHINS, An All-In-One Sensor for DP Applications

PHINS, An All-In-One Sensor for DP Applications DYNAMIC POSITIONING CONFERENCE September 28-30, 2004 Sensors PHINS, An All-In-One Sensor for DP Applications Yves PATUREL IXSea (Marly le Roi, France) ABSTRACT DP positioning sensors are mainly GPS receivers

More information

Satellite services and products for Automatic Weather Stations. Sophie Baudel

Satellite services and products for Automatic Weather Stations. Sophie Baudel Satellite services and products for Automatic Weather Stations Sophie Baudel sbaudel@cls.fr Share basic knowledge on telemetry services used by meteorologists and oceanographers for autonomous platforms

More information

AN AUTONOMOUS SIMULATION BASED SYSTEM FOR ROBOTIC SERVICES IN PARTIALLY KNOWN ENVIRONMENTS

AN AUTONOMOUS SIMULATION BASED SYSTEM FOR ROBOTIC SERVICES IN PARTIALLY KNOWN ENVIRONMENTS AN AUTONOMOUS SIMULATION BASED SYSTEM FOR ROBOTIC SERVICES IN PARTIALLY KNOWN ENVIRONMENTS Eva Cipi, PhD in Computer Engineering University of Vlora, Albania Abstract This paper is focused on presenting

More information

Primer on GPS Operations

Primer on GPS Operations MP Rugged Wireless Modem Primer on GPS Operations 2130313 Rev 1.0 Cover illustration by Emma Jantz-Lee (age 11). An Introduction to GPS This primer is intended to provide the foundation for understanding

More information