AUVSimulator 1.0

 

 

Siumulation Environment for AUV dynamic behavior and early validation of control schemes

==============================================================================

 

How to Use AUVSimulator                                 How to build new functions

 

==============================================================================

Description

Future developments wish list

 

==============================================================================

 

Version 1.0

Last update 06/04/2000

 

Author : Olivier Doucy mailto:odoucy@nps.navy.mil, mailto:sirehna@sirehna.ec-nantes.fr

 

 

==============================================================================

 

Developement based on :

·        NPS AUV dynamic model : Anthony Healey healey@me.nps.navy.mil, David Marco marco@me.nps.navy.mil

·        Virtual world for AUV and DIS protocol : Don Brutzman brutzman@nps.navy.mil

·         Station keeping in waves for an AUV : Jeffrey Riedel

 

 

======================================================================

 

 

Purpose :

 

AUVSIM is an attempt to provide control engineers and students with a simulation environment for AUV. This environment is built within Matlab/Simulink which is the most spread tool for control scheme design and validation. Therefore the control designer with no CS advanced knowledge will have ready in hand all design and analysis tools provided by Matlab while using an accurate and modular simulation model of the AUV. Moreover, this tool can be easily modified for any vehicule behavior simulation.

 

Architecture :

 

 

Simulink provides a graphical programming language, allowing to built the different functions needed for this environment in a modular way, making it easy for the user to modify, delete or add functionnalities.

 

For communication an extensive use of From/Goto Block has been decided.

An accurate specification of the variables included in those blocks and their use , allows the easy developement of new functions.

 

The model is made of 6 principal subsystems:

 

·        Dynamics: This system embeds the dynamic behavior of the AUV. The model is based on the model developed at NPS by Anthony Healey and modified by Jeffrey Riedel for station keeping in waves. Dynamic model includes the simulation of the efforts applied based on environment simulation and control inputs. The output of the dynamic model is the complete vehicle dynamic state. Included in the vehicle state are the actuators related states. Inputs include actuator commands provided by the control function and relevant output of Environment

 

·        Environment: This function embeds the description of the environment. Its output are contained in Goto Blocks that are needed as inputs by the dynamic model function, the measurement function and control function.

 

·        Sensors: This function is responsible for the simulation of the sensors, either located on the vehicle or in the environment. The input are the vehicle dynamic state and the output of the measurement simulation

 

·        Control: This function includes the simulation of Control scheme (including estimation) applied to the vehicule. For Input the user may use directly the simulated dynamic state or the simulated measurement. The choice will depend on the design stage and the design methods used. The output will mainly be actuators command or direct efforts if needed by the user.

 

·        Inspector: this function includes 2D viewers, dynamic displays of the simulation relevant variables and simulation results Storage. As a basis the most important variables, based on the existence of To/From blocks have their display. The user is free to add needed displays. Viewing functions have to be kept in
Inspector to avoid loosing clarity of the model in general.

 

·        Networking: Those blocks provide the interface to the 3D real time virtual world viewer. The function takes the data needed by the DIS protocol to send Entity State PDU to the viewer to send over the network the behavior of the vehicle. Environment parameters may also be sent through the to PDU function. So far wave parameters are sent this way. The parameters are the necessary data to describe the sea state. Until now, the entity State PDU is used to send such data. a dedicated PDU would be better, once available.

 

Additional subsystems are:

 

Design Method

 

Major components of the environment are Simulink s-function written in C for computing efficiency. Those allow a real-time simulation of the AUV behavior. Bottleneck here are ToPDU function which make calls to the "slow" Matlab engine and its interface to Java. All functions are compiled using Visual C++ 5.0 or higher for compatibility with Matlab R11 and R11.1. Users are free to write additional functions as Matlab s-function at the cost of slowing down the simulation. Methods to write and compile s-functions are part of the simulink manual. Compiled s-function appear as dll files which have to stay in the same directory as the Simulink model .mdl file or anywhere on the Matlab path. Adding functions based Simulink blocks will not slow down simulation except those using the Matlab engine (Matlab block function and S-function written in C).

 

Each s-function simulates a specific component of the simulation environment. See provided comments in C source code for details on each s-function. Compilation of C s-functions are made through the Matlab comand line. Currently cp.m and cp_cont.m script files in the directory launch the compilation of existing s-functions.