SMART BIRD TEAM UAS JOURNAL PAPER

Size: px
Start display at page:

Download "SMART BIRD TEAM UAS JOURNAL PAPER"

Transcription

1 SMART BIRD TEAM UAS JOURNAL PAPER 2010 AUVSI STUDENT COMPETITION MARYLAND ECOLE POLYTECHNIQUE DE MONTREAL

2 Summary 1 Introduction Requirements of the competition System Design Design Approach System Overview Auto-pilot development Accelerometer and gyro meter Control Section Navigation Navigation Simulation Ground Station Primary flight display Map Data Video Mechanical General Considerations Radio control system Recovery system Design of the recovery system Required parachute area Inventory of required equipment Power and control system Conclusion Acknowledgments References Appendices... 16

3 ABSTRACT This paper discusses how undergraduate students have put together all the information and knowledge they have, to design and to implement an Unmanned Aircraft System (UAS) for AUVSI The aircraft may be capable of performing a predefined path, following different waypoints. On other side, that aircraft may also be capable to detect and identify precisely some alphanumeric targets and pop-ups while in flight. It is our first participation to this competition and we are going with an Avistar powered by an electrical motor Axi 2826/12 (Gold Line) and equipped with a KX191 color and night mode CCD camera, an AC M-01 modem (designed by Laird Technologies) and our PCB (printed Board Circuit). Our scope is to design an autonomous aircraft consisting of a PCB, designed by the team, capable of controlling and navigating. It is also to design a performing ground station which helps us following the aircraft movement in real time, the video sent by its on-board camera and seeing targets form and color.

4 1 Introduction UAS take, nowadays, a great importance among civil world and its applications while it was mainly considered as nation s armies affair. It can be used to detect people under a block when there is a seism, or people blocked in a building in fire. It can also be used for a specific action where human life can be in danger like sending a packet form a point of the globe to another. Our team goal is to develop its own PCB and connect to it many sensors like GPS, gyro meter XY, gyro meter Z or even a speed sensor, an SD Card and so on depending on the application we want. In the case of this competition we chose to use only four sensors that will be described further. Comprised of 20 undergraduate members, the PCB developed by the team (6 members) is able to take 6 sensors, to autopilot the aircraft and to do the navigation by waypoints. On the other side, ground station team members developed their own application made of 4 windows (PFD, flight Data, Video and Map) allowing them to have a full control of the aircraft, its position, its movements and to communicate with it. 2 Requirements of the competition Key Performance Parameters Threshold Objective Autonomy Imagery Target Location Mission time(1) In-flight re-tasking During way point navigation and area search Identify any two target characteristics (shape, background color, orientation, alphanumeric, and alphanumeric color) Determine target location ddd.mm.ssss within 250 ft Less than 40 minutes total Imagery/location/identification provided at mission conclusion Add a fly to way point All phases of flight, including takeoff and landing Identify all five target characteristics Determine target location within 50 ft 20 minutes Imagery/location/identification provided in real time Adjust search area Table 1 : Competition requirements

5 3 System Design 3.1 Design Approach In order to successfully complete the project, the team was divided into three subteams. They worked under the coordination of a team lead and their goal is to harmonize elements and integrate them together. The three sub-groups are divided according to disciplines that affect the project and taking also into account student s specialisation. The three teams are: Mechanical, Control and Ground Station. Mechanical team is responsible for the mechanical assembly of the aircraft, designer of the system security and backup, and fly the aircraft. Control team, the most important, is itself divided into three parts that are the control, navigation and aircraft embedded system called PCB. It deals with control and stabilizes the aircraft by designing control loops and the controller compatible with the UAV. It is also responsible for programming control loops on the system board after designing the embedded and the electrical systems. Navigation sub-team deals will build of the navigation algorithms using the waypoints (GPS coordinate). Last team, Ground Station, scope was to the development of a GUI based on the algorithms of detection of colors and shapes. 5

6 Figure 1 : Task Division 3.2 System Overview The PCB put inside the aircraft is capable of controlling the aircraft automatically. The algorithms on the PCB implement the control of two micro controllers. The map of the PCB consists of two microcontrollers who communicate by UART. On one of the microcontrollers, we have acquisition of different sensors such as the accelerometer, Gyro XY, barometer, compass and the modem that communicates with 6

7 the ground station by Wi-Fi (RS285). The modem is capable of communicating with a frequency in MHz and MHZ. On the second microcontroller, we find that the sensors are gyros Z, the GPS, the outputs of four servo motors. Three of those servo motors serve to control the flight surfaces and the last one is used to control the rotation of the camera. The transmission of the video is on a separate frame, as well as the data sent to the ground station. It uses 900 MHz FM Wireless 500mw Video Transmitter to transmit video from the camera to the ground base. The PCB consists of two micro-controllers because the sensors used have different voltages wide range of public. The sensors connected to the first microcontroller are on voltage 3.3 V while those connected on the second microcontroller operate at 5 V. We use the Max3002 to convert data between micro-controllers since they communicate through UART. For competition, we use only 4 sensors: the accelerometer, the XY gyro, the Z Gyro and the GPS. We use also a modem allowing us to communicate with the Ground Station. 4 Auto-pilot development 4.1 Accelerometer and gyro meter Frequent Flight parameters used to realize the navigation and control of an aircraft are: angles of roll and pitch, and altitude. Those parameters are determined using a GPS and various sensors such as the 4 listed above. The type of the accelerometer used is IMU and it provides acceleration values of the aircraft in three directions (X, Y and Z). The accelerometer and gyroscope are used to evaluate all the angles of roll and pitch of the aircraft. For this we use an additional filter that takes into account the accelerometer data to calculate the angles at low frequency and the gyro data at higher frequency. 4.2 Control We use a proportional integral controller for achieving the subjugation of the UAV. By doing that, we faced a major problem: we do not have a very viable model simulation of our device because we run out of time to do so. We then made open-loop tests using the remote to rise and angle values and outline transfer functions, using PWM signals generated, in order to achieve a safe control of the aircraft. The servo parameters are the angles of roll and pitch, rudder and throttle. The control is done using the dspic30f microcontroller, which generates PWM signals suitable for 4 servos. These actuators are then connected to the flight surfaces to allow the stabilization of the device. 7

8 4.3 Section Navigation Navigation The task of the navigation team is to program the navigation of the drone so that it can follows a specify path or change path when in flight. For this purpose, we decide to use the Open Source Project Ardu pilot. Our goal was to analyse their code and retrieve functions we needed to implement the navigation. The first thing we did was to compile their project on Visual C++ and to try to execute it. We got some problems with compilation because we didn t have the same IDE (Interface Development Environment) as people who developed the project. So we decide to modify the project and we put functions that have the same goal in the same file to avoid compiling issues. Now, the functions are separated in two files, one for the navigation and another for the control. It is easier for us to work like that since there were two sub-teams (control and navigation) Simulation To be able to test the code we developed, we decided to use Virtual Reality Toolbox in MATLAB / SIMULINK (Thanks to AUVSI and his partner MATLAB who provided us with that). We developed our code in C; in Simulink there is a tool named Legacy Code Tool that allow to integrate functions write in C into MATLAB / SIMULINK model. Using an airplane model of our drone in Virtual Reality Toolbox, we could test the code we implemented. So far we have found a model for the F-14 flight combat and another model where you can simulate by introducing position and speed versus time. These models are not suitable for our task and they were used just for some rapid tests. Finally we worked with a model, near the one developed by a part of our team. 5 Ground Station The ground station application has been developed in C#. We are using Microsoft.Net Framework. We also use Direct3D for graphic render and AForge.Net library for image acquisition and processing. For the communication with the UAV, we are using a wireless serial (RS232) modem from the company Laird. Our application has been separated in fours panels. The following image is a screenshot of our application: 8

9 Figure 2: Ground Station 5.1 Primary flight display In the first panel, we designed a primary flight Display (PFD) with Direct3D graphic library. On the center of the PFD, there is an altitude indicator which gives the information about the UAV s pitch and roll. This instrument also gives the information about the orientation of the UAV with the horizon. To the left of the altitude indicator, there is an airspeed indicator that displays the speed of the UAV. To the right, there is an altitude indicator that displays the altitude of the UAV. To the right of the altitude indicator, there is a vertical speed indicator that indicates if the UAV is ascending or descending. The heading indicator is placed at the bottom of the altitude indicator and shows the magnetic heading of the UAV. 5.2 Map The second panel is used to draw a map. A small blue square indicates the starting position of the UAV. Subsequently a blue line links the previous GPS coordinates of the UAV to the present ones. This gives the path taken by the UAV from its point of departure. Note that the Map works without internet connection. An image of the area to be over flown by the UAV is preloaded with the application. 5.3 Data The third panel is used to write all the information of the UAV like its position, its speed, its altitude This panel indicates the current mode of the application (acquisition or simulation). In the acquisition mode, the UAV sends data to the application and in the simulation mode, the application works with the keyboard. 9

10 5.4 Video The last panel is used to display the video on the screen. The play button launches the video and a context menu is available to stop/restart the video. We used the KX191 camera. Our choice was mainly governed by its light weight and high resolution feature. The machine vision system entirely works with Aforge.NET framework 1. Though we tried to work with other open source ones, Aforge.NET presented the best advantages including a set of libraries for video and image processing as well as some computation algorithms. Therefore, we used the Graham algorithm 2 and the neural network solution to find the targets. The detected target s characteristics such as shape, location, shape s color, alpha numeric, alpha s color and orientation are then written in an Excel board to be saved. Following screenshot shows some detection testing. Figure 3: Target detection test Graham s algorithm is a method of the convex hull of a finite set of points. 10

11 6 Mechanical 6.1 General Considerations First of all, we start to mount the plane and specially the part that supports the engine. The goal was to ensure the stability of this part of the plane to avoid the impact of the vibrations of the engine. After that we decide to do a flight test so that to check the power of the new electrical engine, and also to check the general ability of the plane to fly. But before the flight test, we ensured that the plane was balanced and its structural integrity was not engaged. We calibrated the radio controller and checked that all the flight controls are working well and in good conditions. The test has been done and we ve noticed that everything works fine. But we had some parts of the plane which needed to be repaired due to a hard landing. These parts were essentially the plastic support of the nose landing gear and the support plate of the engine. 6.2 Radio control system We needed a new radio since our previous one Futaba 4ch was missing 2 channel for our requirements (Parachute, Computer / Pilot control) and was not a programming Transmitter. We chose the Futaba 6EX 2.4GHz transmitter with the included receiver and equipments. Here are some reasons why we stop our choice on this radio: Futaba is top brand in market, Futaba specifications and documentations can be found online, Smart Bird team used Futaba before, Previous equipment is compatible with Futaba 6 channels Transmitter. This radio control is used to control: ailerons, rudder, elevator, throttle, On/Off parachute, Pilot Control/Computer Control. 6.3 Recovery system In case of signal loss or a major problem during the flight (Eg: fire), a recovery of the UAV must be provided to ensure its safe landing. With this in mind, a parachute system must be designed. During the previous term, the following steps of the design were made: 11

12 6.3.1 Design of the recovery system As it can be seen in the figures above, the recovery system design is fairly simple. The device is actuated by a servomotor, which cause the opening of the bottle of helium, through a striker. The balloon attached to the bottle then fills gas and propel the parachute. At the end of propulsion, the balloon bursts. The design is now completed, but it remains to determine the position of the device relative to the UAV, and the size of all its components Required parachute area To calculate the parachute area needed, a formula taken from the book «l exploration spatiale et ses techniques» of Bertrand Manuali was used. This formula uses the speed of descent of the UAV, and its total weight. S = m.g k.v2 rms Where: m: approximated total mass of the drone in kg g: acceleration gravity m/s² V: speed of descent of the UAV (m/s) K: aerodynamic coefficient S: surface opposing air m2 Numerical application: m = 2.8kg; g = 9.81m/s²; k = 1.2 and V = 2.5m / s, S = 3.67m². 12

13 6.3.3 Inventory of required equipment The tooling required to manufacture the system is summarized in the figures presented above. These include: A bottle of helium, A balloon up to a volume of at least 1 m³, A parachute fabric of an area of 3.7 m 2, A servo-motor, An extension to link the servomotor to the striker, Aluminum foils to hold all the components of the device. With a total approximate weight of 7lb we decide to go with an 8000 map battery, which will allow us to fly up to 30 min. We haven t done the test of the parachute yet but we re expecting another solution if the first doesn t work. The second solution consists in flying with the parachute during the whole flight. But this will increase the drag and reduce the autonomy. We have to make a trade off. 7 Power and control system Since the powering of our plane is electrical, power supply was a critical task to achieve. Main driving force of the UAS is a brushless DC (BLDC) motor. It is driven by a speed controller which control signal comes either from a microcontroller, or from the RC receiver. A PCB has been designed that supports two (2) microcontrollers, a 3.3V-powered one (core 1) and another 5V powered (core 2). Both are fed by the main battery using voltage regulators, MIC29310 for 3.3V and LD1085xx for 5V). Core 1 is dedicated to sensor acquisition and communication with the ground station. Core 2 realises mechanical control: switch between manual and auto pilot, sending PWM signals to servos and control signal to the speed regulator when in autopilot. Also, since GPS and Gyro-Z are 5V-powered, they are connected to core 2, which sends their signals to the other microcontroller. Communication between two cores is achieved using a MAX3002 transducer. Following table summarizes connection of sensors and servos to the cores and Figure 2 presents an overview of our systems and their connections. 13

14 Core 1 Core 2 Voltage Level 3.3V 5V Input signals Accelerometer GPS Barometer (through MAX232) Compass Gyro Z Gyro XY SD card Output signals N/A MUX selection signal 3 Servos and speed controller (through MUX) Bidirectional signals Core 2 (through MAX3002) Core 1 (through MAX3002) Modem Table 2: Summary of components' connection to the microcontrollers Figure 4 : UAS System Achitecture Components used for power and control Accelerometer: LIS3LV02DQ Barometer: SCP1000-D11 Battery Compass: PNI V2Xe 14

15 Gyro XY: IDG300 Gyro Z: ADXRS301 Microcontrollers: DSPIC30F4013 Modem: AC4490 Motor : AXI2826/12 Multiplexer : 74HC257D 3.3V regulator : MIC V regulator : LD1085xx Speed controller: JETI advance 40 opto plus Traducers: MAX 232 and MAX Conclusion For participating to this competition, we got so many issues that we are very happy to be at this stage of the competition. We tried and developed our own PCB, equipped with different sensors. We took a lot of time to program each function of the microcontroller. It was very challenging to do all this design by ourselves and to create our own ground station. It took a lot of time of work but at the end we are very happy of the result we got. We even run out of time at the end because we wanted to explore some innovative things to resolve our issues. Finally we took the simple way and assure a safe solution. It sure that, returning back from this competition, we will do a debriefing and think about the way to improve our systems. For example, a challenge for the next year will be to power some of our systems like the PCB with solar energy. It is on standby for now. 9 Acknowledgments We sincerely acknowledge teachers, professors for all their technical support on control and navigation. We also want to acknowledge the electrical department of Polytechnic College of Montreal which allows us to develop all that system by giving us all the administrative support: Richard Hurteau, Electrical Department. Lahcen Saydy, Electrical Department. David Saucié, Electrical Department. François Morin, Technical societies head at Polytechnic of Montreal Nanorobotic Department for their support for the PCB. 15

16 10 References 1) Dspic30f4013 reference manual 2) 3) 4) 5) 11 Appendices Figure 5: PCB view from above on the left and from below 16

17 Figure 6: Different sensors (GPS, GyroZ, GyroXY, Accelero-meter) 17

Classical Control Based Autopilot Design Using PC/104

Classical Control Based Autopilot Design Using PC/104 Classical Control Based Autopilot Design Using PC/104 Mohammed A. Elsadig, Alneelain University, Dr. Mohammed A. Hussien, Alneelain University. Abstract Many recent papers have been written in unmanned

More information

Design and Navigation Control of an Advanced Level CANSAT. Mansur ÇELEBİ Aeronautics and Space Technologies Institute Turkish Air Force Academy

Design and Navigation Control of an Advanced Level CANSAT. Mansur ÇELEBİ Aeronautics and Space Technologies Institute Turkish Air Force Academy Design and Navigation Control of an Advanced Level CANSAT Mansur ÇELEBİ Aeronautics and Space Technologies Institute Turkish Air Force Academy 1 Introduction Content Advanced Level CanSat Design Airframe

More information

FLCS V2.1. AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station

FLCS V2.1. AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station The platform provides a high performance basis for electromechanical system control. Originally designed for autonomous aerial vehicle

More information

IPRO 312: Unmanned Aerial Systems

IPRO 312: Unmanned Aerial Systems IPRO 312: Unmanned Aerial Systems Kay, Vlad, Akshay, Chris, Andrew, Sebastian, Anurag, Ani, Ivo, Roger Dr. Vural Diverse IPRO Group ECE MMAE BME ARCH CS Outline Background Approach Team Research Integration

More information

TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014

TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014 TEAM AERO-I TEAM AERO-I JOURNAL PAPER DELHI TECHNOLOGICAL UNIVERSITY DELHI TECHNOLOGICAL UNIVERSITY Journal paper for IARC 2014 2014 IARC ABSTRACT The paper gives prominence to the technical details of

More information

Heterogeneous Control of Small Size Unmanned Aerial Vehicles

Heterogeneous Control of Small Size Unmanned Aerial Vehicles Magyar Kutatók 10. Nemzetközi Szimpóziuma 10 th International Symposium of Hungarian Researchers on Computational Intelligence and Informatics Heterogeneous Control of Small Size Unmanned Aerial Vehicles

More information

Air Surveillance Drones. ENSC 305/440 Capstone Project Spring 2014

Air Surveillance Drones. ENSC 305/440 Capstone Project Spring 2014 Air Surveillance Drones ENSC 305/440 Capstone Project Spring 2014 Group Members: Armin Samadanian Chief Executive Officer Juan Carlos Diaz Lead Technician and Test Pilot Afshin Nikzat Lead Financial Planner

More information

2009 Student UAS Competition. Abstract:

2009 Student UAS Competition. Abstract: UNIVERSITY OF PUERTO RICO MAYAGUEZ CAMPUS COLLEGE OF ENGINEERING 2009 Student UAS Competition Journal Paper Team Members: Pablo R. Mejías, Merqui Galarza Jeancarlo Colón Naldie Torres Josue Comulada Veronica

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

Long Range Wireless OSD 5.8G FPV Transmitter

Long Range Wireless OSD 5.8G FPV Transmitter Long Range Wireless OSD 5.8G FPV Transmitter Built-in 10 Axis AHRS + MAVLINK + 600mW Support all flight controller and GPS 1 / 14 User's Guide Catalogue Product Instruction 3 Features 3 Specifications.4

More information

New functions and changes summary

New functions and changes summary New functions and changes summary A comparison of PitLab & Zbig FPV System versions 2.50 and 2.40 Table of Contents New features...2 OSD and autopilot...2 Navigation modes...2 Routes...2 Takeoff...2 Automatic

More information

A3 Pro INSTRUCTION MANUAL. Oct 25, 2017 Revision IMPORTANT NOTES

A3 Pro INSTRUCTION MANUAL. Oct 25, 2017 Revision IMPORTANT NOTES A3 Pro INSTRUCTION MANUAL Oct 25, 2017 Revision IMPORTANT NOTES 1. Radio controlled (R/C) models are not toys! The propellers rotate at high speed and pose potential risk. They may cause severe injury

More information

OughtToPilot. Project Report of Submission PC128 to 2008 Propeller Design Contest. Jason Edelberg

OughtToPilot. Project Report of Submission PC128 to 2008 Propeller Design Contest. Jason Edelberg OughtToPilot Project Report of Submission PC128 to 2008 Propeller Design Contest Jason Edelberg Table of Contents Project Number.. 3 Project Description.. 4 Schematic 5 Source Code. Attached Separately

More information

FY-41AP Autopilot & OSD System

FY-41AP Autopilot & OSD System FY-41AP Autopilot & OSD System Installation & Operation Manual (Multi-rotor Version) Guilin Feiyu Electronic Technology Co., Ltd Address: 4 th Floor,YuTaiJie Science Technology Building, Information Industry

More information

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1 VCU Skyline Last Modified May 13, 2004 Team Members: Abhishek Handa Kevin Van Brittiany Wynne Jeffrey E. Quiñones Project Advisor: Dr. Robert Klenke VCU SKYLINE 1 * Table of Contents I. Abstract... 3 II.

More information

Aerial Photographic System Using an Unmanned Aerial Vehicle

Aerial Photographic System Using an Unmanned Aerial Vehicle Aerial Photographic System Using an Unmanned Aerial Vehicle Second Prize Aerial Photographic System Using an Unmanned Aerial Vehicle Institution: Participants: Instructor: Chungbuk National University

More information

Detrum GAVIN-8C Transmitter

Detrum GAVIN-8C Transmitter Motion RC Supplemental Guide for the Detrum GAVIN-8C Transmitter Version 1.0 Contents Review the Transmitter s Controls... 1 Review the Home Screen... 2 Power the Transmitter... 3 Calibrate the Transmitter...

More information

INSTRUCTIONS. 3DR Plane CONTENTS. Thank you for purchasing a 3DR Plane!

INSTRUCTIONS. 3DR Plane CONTENTS. Thank you for purchasing a 3DR Plane! DR Plane INSTRUCTIONS Thank you for purchasing a DR Plane! CONTENTS 1 1 Fuselage Right wing Left wing Horizontal stabilizer Vertical stabilizer Carbon fiber bar 1 1 1 7 8 10 11 1 Audio/video (AV) cable

More information

EEL 4665/5666 Intelligent Machines Design Laboratory. Messenger. Final Report. Date: 4/22/14 Name: Revant shah

EEL 4665/5666 Intelligent Machines Design Laboratory. Messenger. Final Report. Date: 4/22/14 Name: Revant shah EEL 4665/5666 Intelligent Machines Design Laboratory Messenger Final Report Date: 4/22/14 Name: Revant shah E-Mail:revantshah2000@ufl.edu Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz TAs: Andy

More information

FOXTECH Nimbus VTOL. User Manual V1.1

FOXTECH Nimbus VTOL. User Manual V1.1 FOXTECH Nimbus VTOL User Manual V1.1 2018.01 Contents Specifications Basic Theory Introduction Setup and Calibration Assembly Control Surface Calibration Compass and Airspeed Calibration Test Flight Autopilot

More information

FY-41AP Autopilot & OSD System Installation & Operation Manual

FY-41AP Autopilot & OSD System Installation & Operation Manual FY-41AP Autopilot & OSD System Installation & Operation Manual Multi-rotor Version V2.22 And Above Guilin Feiyu Technology Incorporated Company Addr : 3rd Floor,B,Guilin Electric Valley,Innovation Building,

More information

Implementation of Nonlinear Reconfigurable Controllers for Autonomous Unmanned Vehicles

Implementation of Nonlinear Reconfigurable Controllers for Autonomous Unmanned Vehicles Implementation of Nonlinear Reconfigurable Controllers for Autonomous Unmanned Vehicles Dere Schmitz Vijayaumar Janardhan S. N. Balarishnan Department of Mechanical and Aerospace engineering and Engineering

More information

Detrum MSR66A Receiver

Detrum MSR66A Receiver Motion RC User Guide for the Detrum MSR66A Receiver Version 1.0 Contents Review the Receiver s Features... 1 Review the Receiver s Ports and Connection Orientation... 2 Bind the Receiver to a Transmitter

More information

The Next Generation Design of Autonomous MAV Flight Control System SmartAP

The Next Generation Design of Autonomous MAV Flight Control System SmartAP The Next Generation Design of Autonomous MAV Flight Control System SmartAP Kirill Shilov Department of Aeromechanics and Flight Engineering Moscow Institute of Physics and Technology 16 Gagarina st, Zhukovsky,

More information

Skylark OSD V4.0 USER MANUAL

Skylark OSD V4.0 USER MANUAL Skylark OSD V4.0 USER MANUAL A skylark soars above the clouds. SKYLARK OSD V4.0 USER MANUAL New generation of Skylark OSD is developed for the FPV (First Person View) enthusiasts. SKYLARK OSD V4.0 is equipped

More information

Design of a Flight Stabilizer System and Automatic Control Using HIL Test Platform

Design of a Flight Stabilizer System and Automatic Control Using HIL Test Platform Design of a Flight Stabilizer System and Automatic Control Using HIL Test Platform Şeyma Akyürek, Gizem Sezin Özden, Emre Atlas, and Coşku Kasnakoğlu Electrical & Electronics Engineering, TOBB University

More information

SELF STABILIZING PLATFORM

SELF STABILIZING PLATFORM SELF STABILIZING PLATFORM Shalaka Turalkar 1, Omkar Padvekar 2, Nikhil Chavan 3, Pritam Sawant 4 and Project Guide: Mr Prathamesh Indulkar 5. 1,2,3,4,5 Department of Electronics and Telecommunication,

More information

드론의제어원리. Professor H.J. Park, Dept. of Mechanical System Design, Seoul National University of Science and Technology.

드론의제어원리. Professor H.J. Park, Dept. of Mechanical System Design, Seoul National University of Science and Technology. 드론의제어원리 Professor H.J. Park, Dept. of Mechanical System Design, Seoul National University of Science and Technology. An Unmanned aerial vehicle (UAV) is a Unmanned Aerial Vehicle. UAVs include both autonomous

More information

University of Minnesota. Department of Aerospace Engineering & Mechanics. UAV Research Group

University of Minnesota. Department of Aerospace Engineering & Mechanics. UAV Research Group University of Minnesota Department of Aerospace Engineering & Mechanics UAV Research Group Paw Yew Chai March 23, 2009 CONTENTS Contents 1 Background 3 1.1 Research Area............................. 3

More information

DESIGN & FABRICATION OF UAV FOR DATA TRANSMISSION. Department of ME, CUET, Bangladesh

DESIGN & FABRICATION OF UAV FOR DATA TRANSMISSION. Department of ME, CUET, Bangladesh Proceedings of the International Conference on Mechanical Engineering and Renewable Energy 2017 (ICMERE2017) 18 20 December, 2017, Chittagong, Bangladesh ICMERE2017-PI-177 DESIGN & FABRICATION OF UAV FOR

More information

Formation Flight CS 229 Project: Final Report

Formation Flight CS 229 Project: Final Report Formation Flight CS 229 Project: Final Report Zouhair Mahboubi Tao Wang December 11 th, 2009 Stanford University Abstract This paper is submitted as the requirement for the final project report for the

More information

Flight Detector Indicator

Flight Detector Indicator Flight Detector Indicator Part No: 777-1224-003 Components Maintenance Manual No: 34-25-12 By Soumyadeep Das Raj shekhar Chatterjee Purpose of equipment: The flight detector indicator (FDI) is a part of

More information

Project Name: Tail-Gator

Project Name: Tail-Gator EEL 4924 Electrical Engineering Design (Senior Design) Final Report 22 April 2013 Project Name: Tail-Gator Team Name: Eye in the Sky Team Members: Name: Anthony Incardona Name: Fredrik Womack Page 2/14

More information

Hardware in the Loop Simulation for Unmanned Aerial Vehicles

Hardware in the Loop Simulation for Unmanned Aerial Vehicles NATIONAL 1 AEROSPACE LABORATORIES BANGALORE-560 017 INDIA CSIR-NAL Hardware in the Loop Simulation for Unmanned Aerial Vehicles Shikha Jain Kamali C Scientist, Flight Mechanics and Control Division National

More information

Delhi College of Engineering 2009 AUVSI STUDENT UAS COMPETITION. Team UAS DCE Journal Paper

Delhi College of Engineering 2009 AUVSI STUDENT UAS COMPETITION. Team UAS DCE Journal Paper Delhi College of Engineering 2009 AUVSI STUDENT UAS COMPETITION Team UAS DCE Journal Paper ABSTRACT The following paper discusses the design and implementation of an Unmanned Aircraft System (UAS) for

More information

2007 AUVSI Competition Paper Near Space Unmanned Aerial Vehicle (NSUAV) Of

2007 AUVSI Competition Paper Near Space Unmanned Aerial Vehicle (NSUAV) Of 1 2007 AUVSI Competition Paper Near Space Unmanned Aerial Vehicle (NSUAV) Of University of Colorado at Colorado Springs (UCCS) Plane in flight June 9, 2007 Faculty Advisor: Dr. David Schmidt Team Members:

More information

Unmanned Aerial System Competition

Unmanned Aerial System Competition Association for Unmanned Vehicle Systems International Unmanned Aerial System Competition 2007 2008 Design Report Flagship Envy University of California, Los Angeles Abstract A team of undergraduate students

More information

Autopilot System Installation & Operation Guide. Guilin Feiyu Electronic Technology Co., Ltd

Autopilot System Installation & Operation Guide. Guilin Feiyu Electronic Technology Co., Ltd 2011-11-26 FEIYU TECH FY31AP Autopilot System Installation & Operation Guide Guilin Feiyu Electronic Technology Co., Ltd Rm. C407, Innovation Building, Information Industry Park, Chaoyang Road, Qixing

More information

UP30 UAV Autopilot System Manual Version 5.7

UP30 UAV Autopilot System Manual Version 5.7 UP30 UAV Autopilot System Manual Version 5.7-0 - CONTENTS Warning, warranty and upgrade.....3 Warning....... 3 Warranty...... 3 Upgrade....... 3 Contact..... 4 Introduction to UP30 Autopilot System....

More information

Introduction. Overview. Outputs Normal model 4 Delta wing (Elevon) & Flying wing & V-tail 4. Rx states

Introduction. Overview. Outputs Normal model 4 Delta wing (Elevon) & Flying wing & V-tail 4. Rx states Introduction Thank you for purchasing FrSky S6R/S8R (SxR instead in this manual) multi-function telemetry receiver. Equipped with build-in 3-axis gyroscope and accelerometer, SxR supports various functions.

More information

Digiflight II SERIES AUTOPILOTS

Digiflight II SERIES AUTOPILOTS Operating Handbook For Digiflight II SERIES AUTOPILOTS TRUTRAK FLIGHT SYSTEMS 1500 S. Old Missouri Road Springdale, AR 72764 Ph. 479-751-0250 Fax 479-751-3397 Toll Free: 866-TRUTRAK 866-(878-8725) www.trutrakap.com

More information

Products and solutions for Drones

Products and solutions for Drones Products and solutions for Drones Introduction 2 Even though R.P.A.S. (Remotely Piloted Aerial System) or U.A.V. (Unmanned Aerial Vehicle) technologies were initially developed by the military, they are

More information

Project Number: 13231

Project Number: 13231 Multidisciplinary Senior Design Conference Kate Gleason College of Engineering Rochester Institute of Technology Rochester, New York 14623 Project Number: 13231 UAV GROUND-STATION AND SEEDED FAULT DETECTION

More information

Development of an Autonomous Aerial Reconnaissance System

Development of an Autonomous Aerial Reconnaissance System Development of an Autonomous Aerial Reconnaissance System Jessica Dooley, Ekaterina Taralova, Prasad Gabbur, Timothy Spriggs University of Arizona Tucson, AZ ABSTRACT In preparation for the 2003 International

More information

Introducing the Quadrotor Flying Robot

Introducing the Quadrotor Flying Robot Introducing the Quadrotor Flying Robot Roy Brewer Organizer Philadelphia Robotics Meetup Group August 13, 2009 What is a Quadrotor? A vehicle having 4 rotors (propellers) at each end of a square cross

More information

DESIGN CONSTRAINTS ANALYSIS

DESIGN CONSTRAINTS ANALYSIS TEAM 9 -MRAV DESIGN CONSTRAINTS ANALYSIS by Nick Gentry UPDATED PSSC 1. An ability to remotely monitor remaining battery life (fuel gauge). 2. An ability to hover in a stable position (based on autonomous

More information

Various levels of Simulation for Slybird MAV using Model Based Design

Various levels of Simulation for Slybird MAV using Model Based Design Various levels of Simulation for Slybird MAV using Model Based Design Kamali C Shikha Jain Vijeesh T Sujeendra MR Sharath R Motivation In order to design robust and reliable flight guidance and control

More information

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance)

Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Study of M.A.R.S. (Multifunctional Aero-drone for Remote Surveillance) Supriya Bhuran 1, Rohit V. Agrawal 2, Kiran D. Bombe 2, Somiran T. Karmakar 2, Ninad V. Bapat 2 1 Assistant Professor, Dept. Instrumentation,

More information

INTELLIGENT LANDING TECHNIQUE USING ULTRASONIC SENSOR FOR MAV APPLICATIONS

INTELLIGENT LANDING TECHNIQUE USING ULTRASONIC SENSOR FOR MAV APPLICATIONS Volume 114 No. 12 2017, 429-436 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu INTELLIGENT LANDING TECHNIQUE USING ULTRASONIC SENSOR FOR MAV APPLICATIONS

More information

MICRO AERIAL VEHICLE PRELIMINARY FLIGHT CONTROL SYSTEM

MICRO AERIAL VEHICLE PRELIMINARY FLIGHT CONTROL SYSTEM Multi-Disciplinary Senior Design Conference Kate Gleason College of Engineering Rochester Institute of Technology Rochester, New York 14623 Project Number: 09122 MICRO AERIAL VEHICLE PRELIMINARY FLIGHT

More information

ARKBIRD-Tiny Product Features:

ARKBIRD-Tiny Product Features: ARKBIRD-Tiny Product Features: ARKBIRD System is a high-accuracy autopilot designed for fixed-wing, which has capability of auto-balancing to ease the manipulation while flying. 1. Function all in one

More information

North Carolina State University Aerial Robotics Club

North Carolina State University Aerial Robotics Club North Carolina State University Aerial Robotics Club 2007 AUVSI Student UAS Competition Journal Paper Entry June 1, 2007 by Matthew Hazard (NCSU 08) with thanks to Alan Stewart and James Scoggins NCSU

More information

Control System Design for Tricopter using Filters and PID controller

Control System Design for Tricopter using Filters and PID controller Control System Design for Tricopter using Filters and PID controller Abstract The purpose of this paper is to present the control system design of Tricopter. We have presented the implementation of control

More information

Operating Handbook For FD PILOT SERIES AUTOPILOTS

Operating Handbook For FD PILOT SERIES AUTOPILOTS Operating Handbook For FD PILOT SERIES AUTOPILOTS TRUTRAK FLIGHT SYSTEMS 1500 S. Old Missouri Road Springdale, AR 72764 Ph. 479-751-0250 Fax 479-751-3397 Toll Free: 866-TRUTRAK 866-(878-8725) www.trutrakap.com

More information

Digiflight II SERIES AUTOPILOTS

Digiflight II SERIES AUTOPILOTS Operating Handbook For Digiflight II SERIES AUTOPILOTS TRUTRAK FLIGHT SYSTEMS 1500 S. Old Missouri Road Springdale, AR 72764 Ph. 479-751-0250 Fax 479-751-3397 Toll Free: 866-TRUTRAK 866-(878-8725) www.trutrakap.com

More information

STORC: SEARCH TO RESCUE CRAFT FINAL TECHNICAL PAPER

STORC: SEARCH TO RESCUE CRAFT FINAL TECHNICAL PAPER MEAM-446-2012-1 Senior Design Project - Final Report April 26, 2012 Department of Mechanical Engineering and Applied Mechanics School of Engineering and Applied Science The University of Pennsylvania Philadelphia,

More information

Caution Notes. Features. Specifications. Installation. A3-L 3-axis Gyro User Manual V1.0

Caution Notes. Features. Specifications. Installation. A3-L 3-axis Gyro User Manual V1.0 Caution Notes Thank you for choosing our products. If any difficulties are encountered while setting up or operating it, please consult this manual first. For further help, please don t hesitate to contact

More information

Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide. Guilin Feiyu Electronic Technology Co., Ltd

Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide. Guilin Feiyu Electronic Technology Co., Ltd Rev: 5 th July 2011 FEIYU TECH FY-91Q DREAMCATCHER Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide Guilin Feiyu Electronic Technology Co., Ltd Rm. B305, Innovation Building,

More information

Electrical connection

Electrical connection Electrical connection Autopilot works exclusively in combination with the OSD. All electrical connections between the OSD and autopilot PCBs are made through a dedicated connector on both PCBs. When purchasing

More information

Wireless Monitoring of Agricultural Environment and Greenhouse Gases and Control of Water flow through Fuzzy Logic

Wireless Monitoring of Agricultural Environment and Greenhouse Gases and Control of Water flow through Fuzzy Logic Wireless Monitoring of Agricultural Environment and Greenhouse Gases and Control of Water flow through Fuzzy Logic Nusrat Ansari 1, Himanshu Phatnani 2, Akash Yadav 3, Sanket Sakharkar 4, Akshay Khaladkar

More information

ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION

ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION Journal of Young Scientist, Volume IV, 2016 ISSN 2344-1283; ISSN CD-ROM 2344-1291; ISSN Online 2344-1305; ISSN-L 2344 1283 ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION

More information

User Manual Version 1.0

User Manual Version 1.0 1 Thank you for purchasing our products. The A3 Pro SE controller is the updated version of A3 Pro. After a fully improvement and optimization of hardware and software, we make it lighter, smaller and

More information

Nautical Autonomous System with Task Integration (Code name)

Nautical Autonomous System with Task Integration (Code name) Nautical Autonomous System with Task Integration (Code name) NASTI 10/6/11 Team NASTI: Senior Students: Terry Max Christy, Jeremy Borgman Advisors: Nick Schmidt, Dr. Gary Dempsey Introduction The Nautical

More information

FY-91Q DREAMCATCHER TECH. Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide

FY-91Q DREAMCATCHER TECH. Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide Rev 6: 7 th July 2011 FEIYU TECH FY-91Q DREAMCATCHER Multi-rotor flight stabilization & Autopilot System Installation & Operation Guide Guilin Feiyu Electronic Technology Co., Ltd Rm. B305, Innovation

More information

Lightweight Fixed Wing UAV

Lightweight Fixed Wing UAV Lightweight Fixed Wing UAV Joseph Patton, Paul Owczarczyk, Mattias Dreger, Jason Bui, Cameron Lee, Cindy Xiao, Rijesh Augustine, Sheldon Marquis, Ryan Kapteyn, Nicholas Kwan Wong, Mark Pollock, Andrew

More information

U-Pilot can fly the aircraft using waypoint navigation, even when the GPS signal has been lost by using dead-reckoning navigation. Can also orbit arou

U-Pilot can fly the aircraft using waypoint navigation, even when the GPS signal has been lost by using dead-reckoning navigation. Can also orbit arou We offer a complete solution for a user that need to put a payload in a advanced position at low cost completely designed by the Spanish company Airelectronics. Using a standard computer, the user can

More information

DragonLink Advanced Transmitter

DragonLink Advanced Transmitter DragonLink Advanced Transmitter A quick introduction - to a new a world of possibilities October 29, 2015 Written by Dennis Frie Contents 1 Disclaimer and notes for early release 3 2 Introduction 4 3 The

More information

ISSUE 5 VOLUME 3 ISSN: INTERNATIONAL JOURNAL FOR ENGINEERING APPLICATIONS AND TECHNOLOGY

ISSUE 5 VOLUME 3 ISSN: INTERNATIONAL JOURNAL FOR ENGINEERING APPLICATIONS AND TECHNOLOGY 1 IJFEAT INTERNATIONAL JOURNAL FOR ENGINEERING APPLICATIONS AND TECHNOLOGY Agriculture Drone for Fertilizers and Pesticides Spraying Neha S. Morey 1, Pratiksha N. Mehere 2, Komal Hedaoo 3 1 Student, Department

More information

The drone for precision agriculture

The drone for precision agriculture The drone for precision agriculture Reap the benefits of scouting crops from above If precision technology has driven the farming revolution of recent years, monitoring crops from the sky will drive the

More information

Performance and Design of UAVs: Test Aircraft Development

Performance and Design of UAVs: Test Aircraft Development Performance and Design of UAVs: Test Aircraft Development Xavier Perraudin Herbert J. and Selma W. Bernstein Class of 1945 Internship Report Mechanical Engineering and Applied Mechanics University of Pennsylvania

More information

Development of a Fixed-Wing Autonomous Aerial Vehicle at Virginia Tech

Development of a Fixed-Wing Autonomous Aerial Vehicle at Virginia Tech Development of a Fixed-Wing Autonomous Aerial Vehicle at Virginia Tech Benjamin Dingus Elizabeth Hoppe Jansen Lee Nicholas Misyak David Pape Justin Ryan Matthew Schivikas Steven Ross Shake Christopher

More information

Product Introduction:

Product Introduction: Product Introduction: ARKBIRD-433UHF is a 10-channel module designed for long-distance flight: 1. The advanced code division frequency hopping system (FHSS) produces the only way of frequency hopping sequence

More information

Mississippi State University Unmanned Aerial Vehicle Entry into the AUVSI 2004 Student UAV Competition

Mississippi State University Unmanned Aerial Vehicle Entry into the AUVSI 2004 Student UAV Competition Mississippi State University Unmanned Aerial Vehicle Entry into the AUVSI 2004 Student UAV Competition Ian Broussard Cornelia Hayes Kelly Lancaster Craig Ross Blake Sanders Mississippi State University

More information

T14MZ Software Update Function Modification Contents (Version: 1.1.0, 1.2.0)

T14MZ Software Update Function Modification Contents (Version: 1.1.0, 1.2.0) T14MZ Software Update Function Modification Contents (Version: 1.1.0, 1.2.0) 1M23N14837 Hardware setting This function is for adjusting the sticks, switches and trim characteristics. [System menu] Swash

More information

INERTIAL LABS SUBMINIATURE 3D ORIENTATION SENSOR OS3DM

INERTIAL LABS SUBMINIATURE 3D ORIENTATION SENSOR OS3DM Datasheet Rev..5 INERTIAL LABS SUBMINIATURE D ORIENTATION SENSOR TM Inertial Labs, Inc Address: 9959 Catoctin Ridge Street, Paeonian Springs, VA 2029 U.S.A. Tel: + (70) 880-4222, Fax: + (70) 95-877 Website:

More information

FY-DOS Manual For Multi-rotors Control

FY-DOS Manual For Multi-rotors Control FY-DOS Manual For Multi-rotors Control Installation & Operation Multi-rotor firmware above V2.20 Dear Customer: Thank you for choosing DOS as your autopilot system. Please read this manual carefully before

More information

Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6

Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 March 10, 2014 Dr. Andrew Rawicz School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 Re: ENSC 440 Design Specification for ASD: Air Surveillance Drones Dear Dr. Rawicz,

More information

AG-VA Fully Autonomous UAV Sprayers

AG-VA Fully Autonomous UAV Sprayers AG-VA Fully Autonomous UAV Sprayers One of the most advance sprayer technology on the market! Best Price - Best Flight Time - Best Coverage Rate - 1 Yr Warranty* The AG-VA UAV Sprayer is available in 3

More information

ARIES: Aerial Reconnaissance Instrumental Electronics System

ARIES: Aerial Reconnaissance Instrumental Electronics System ARIES: Aerial Reconnaissance Instrumental Electronics System Marissa Van Luvender *, Kane Cheung, Hao Lam, Enzo Casa, Matt Scott, Bidho Embaie #, California Polytechnic University Pomona, Pomona, CA, 92504

More information

Project METEOR Instrumentation Platform P08101

Project METEOR Instrumentation Platform P08101 Project METEOR 07-08 Instrumentation Platform P08101 Team Members (from left to right): Christopher J. Fisher (Project Manager), David J. Semione, Gabriela Eneriz Pereira Nunes, Brian A. Hanna, Sergey

More information

FlyRealHUDs Very Brief Helo User s Manual

FlyRealHUDs Very Brief Helo User s Manual FlyRealHUDs Very Brief Helo User s Manual 1 1.0 Welcome! Congratulations. You are about to become one of the elite pilots who have mastered the fine art of flying the most advanced piece of avionics in

More information

International Journal of Scientific & Engineering Research, Volume 8, Issue 1, January ISSN

International Journal of Scientific & Engineering Research, Volume 8, Issue 1, January ISSN International Journal of Scientific & Engineering Research, Volume 8, Issue 1, January-2017 500 DESIGN AND FABRICATION OF VOICE CONTROLLED UNMANNED AERIAL VEHICLE Author-Shubham Maindarkar, Co-author-

More information

Oakland University Microraptor 2009 AUVSI Student UAS Competition Entry

Oakland University Microraptor 2009 AUVSI Student UAS Competition Entry Oakland University Microraptor 2009 AUVSI Student UAS Competition Entry Keith Jones, Maurice Farah, Gentian Godo, Hong Chul Yang, Rami AbouSleiman, and Belal Sababha Faculty Advisor: Dr. Osamah Rawashdeh

More information

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Jason Plew Jason Grzywna M. C. Nechyba Jason@mil.ufl.edu number9@mil.ufl.edu Nechyba@mil.ufl.edu Machine Intelligence Lab

More information

Massachusetts Institute of Technology Unmanned Aerial Vehicle Team

Massachusetts Institute of Technology Unmanned Aerial Vehicle Team . Massachusetts Institute of Technology Unmanned Aerial Vehicle Team Jonathan Downey, Buddy Michini Matt Doherty, Carl Engel, Jacob Katz, Karl Kulling 2006 AUVSI Student UAV Competition Journal Paper,

More information

AUTOPILOT CONTROL SYSTEM - IV

AUTOPILOT CONTROL SYSTEM - IV AUTOPILOT CONTROL SYSTEM - IV CONTROLLER The data from the inertial measurement unit is taken into the controller for processing. The input being analog requires to be passed through an ADC before being

More information

MULTIPURPOSE QUADCOPTER SOLUTION FOR AGRICULTURE

MULTIPURPOSE QUADCOPTER SOLUTION FOR AGRICULTURE MULTIPURPOSE QUADCOPTER SOLUTION FOR AGRICULTURE Powered by COVERS UP TO 30HA AT 70M FLIGHT ALTITUDE PER BATTERY PHOTO & VIDEO FULL HD 1080P - 14MP 3-AXIS STABILIZATION INCLUDES NDVI & ZONING MAPS SERVICE

More information

Auvsi 2012 Journal Paper. Abstract ISTANBUL TECHNICAL UNIVERSITY CONTROL & AVIONICS LABORATORY TEAM HEZARFEN

Auvsi 2012 Journal Paper. Abstract ISTANBUL TECHNICAL UNIVERSITY CONTROL & AVIONICS LABORATORY TEAM HEZARFEN ISTANBUL TECHNICAL UNIVERSITY CONTROL & AVIONICS LABORATORY TEAM HEZARFEN Auvsi 2012 Journal Paper Abstract UAS of Team Hezarfen from Istanbul Technical University is explained in this paper. Aerial vehicle

More information

Desktop real time flight simulator for control design

Desktop real time flight simulator for control design Desktop real time flight simulator for control design By T Vijeesh, Technical Officer, FMCD, CSIR-NAL, Bangalore C Kamali, Scientist, FMCD, CSIR-NAL, Bangalore Prem Kumar B, Project Assistant,,FMCD, CSIR-NAL,

More information

ŞahinSim: A Flight Simulator for End-Game Simulations

ŞahinSim: A Flight Simulator for End-Game Simulations ŞahinSim: A Flight Simulator for End-Game Simulations Özer Özaydın, D. Turgay Altılar Department of Computer Science ITU Informatics Institute Maslak, Istanbul, 34457, Turkey ozaydinoz@itu.edu.tr altilar@cs.itu.edu.tr

More information

AUTOPILOT QUICK START GUIDE

AUTOPILOT QUICK START GUIDE AUTOPILOT QUICK START GUIDE The view of PIXHAWK2.1 Ports: GPS1/GPS2 TELEM1/TELEM2 I2C 2 USB Analog to digital converter 3.3 V CAN1/CAN2 Spektrum DSM receiver POWER1 POWER2 S.BUS out for servo SERIAL 5

More information

Lightweight Fixed Wing UAV

Lightweight Fixed Wing UAV Lightweight Fixed Wing UAV Cindy Xiao, Rijesh Augustine, Andrew Jowsey, Michael G. Lipsett, Duncan G. Elliott University of Alberta Abstract The University of Alberta Aerial Robotics (UAARG) is a student

More information

A3 SUPER 3 INSTRUCTION MANUAL. For Firmware Version 1.0, Data Version 1.0 Oct 25, 2017 Revision.

A3 SUPER 3 INSTRUCTION MANUAL. For Firmware Version 1.0, Data Version 1.0 Oct 25, 2017 Revision. A3 SUPER 3 INSTRUCTION MANUAL For Firmware Version 1.0, Data Version 1.0 Oct 25, 2017 Revision support@hobbyeagle.com 1 CONTENTS IMPORTANT NOTES.....3 1. Introduction......4 2. Setup Procedure Overview...5

More information

The brain for the plane is the Airelectronics' U-Pilot flight control system, which is embedded inside the plane's fuselage, leaving a lot of space on

The brain for the plane is the Airelectronics' U-Pilot flight control system, which is embedded inside the plane's fuselage, leaving a lot of space on Airelectronics has developed a new complete solution meeting the needs of the farming science. The completely test Skywalkerplatform has been equipped with both thermal and multispectral cameras to measure

More information

University of California, San Diego AIAA AUVSI

University of California, San Diego AIAA AUVSI University of California, San Diego AIAA AUVSI Morgan Machado, Karthik Balakrishnan, Andrew Chan, Thomas Hong, David Klein, Joe Formanes, Mitch Harris, Michael Pattanachinda, Jeff Gollober, Neil Bloom,

More information

Advanced User Manual

Advanced User Manual Features Advanced User Manual Applications BL-3G Ultra stable 3-Axis Gyro Small size, weight and power USB / PC connection for set up and upgrade MEMS rate sensor - Ultra stable over temperature and time

More information

1 P a g e. P13231 UAV Test Bed Setup Manual

1 P a g e. P13231 UAV Test Bed Setup Manual 1 P a g e P13231 UAV Test Bed Setup Manual Table of Contents Introduction....3 Wings... 3-4 Pitot Tube....3 Aileron Fault...4 Accelerometers.4 Fuselage.. 5-8 GPS.5 FPV System..5 ArduPilot 7 GoPro 7 Rudder

More information

Linear Motion Servo Plants: IP01 or IP02. Linear Experiment #0: Integration with WinCon. IP01 and IP02. Student Handout

Linear Motion Servo Plants: IP01 or IP02. Linear Experiment #0: Integration with WinCon. IP01 and IP02. Student Handout Linear Motion Servo Plants: IP01 or IP02 Linear Experiment #0: Integration with WinCon IP01 and IP02 Student Handout Table of Contents 1. Objectives...1 2. Prerequisites...1 3. References...1 4. Experimental

More information

Arkbird Hummingbird BNF Version Airplane User Manual Caution

Arkbird Hummingbird BNF Version Airplane User Manual Caution Arkbird Hummingbird BNF Version Airplane User Manual Caution 1) Please abide by relevant laws: No flying in populated area, no flying in airport clearance area (10km away from both sides of the runway,

More information

UAV - UAS TECHNOLOGY BASICS

UAV - UAS TECHNOLOGY BASICS UAV - UAS TECHNOLOGY BASICS Dr. István Koller BUTE Department of Networked Systems and Services 2017. október 9., Budapest koller@hit.bme.hu Content 0. Introduction to UAV technology 1. Fixed wing aircraft

More information