Lab 2: Real-Time Automotive Suspension system Simulator

Size: px
Start display at page:

Download "Lab 2: Real-Time Automotive Suspension system Simulator"

Transcription

1 ENGG*4420 Real Time System Design Lab 2: Real-Time Automotive Suspension system Simulator TA: Aws Abu-Khudhair Due: Week of Oct. 12th Aws Abu-Khudhair ENGG*4420 1

2 Today s Activities Lab 2 Introduction. Lab 1 Demos. Start work on Lab 2. Aws Abu-Khudhair ENGG*4420 2

3 Lab 1 Development Environment HP PC LabVIEW 2009 software Aws Abu-Khudhair ENGG*4420 3

4 Introduction Types of vehicle suspension systems Passive Suspension System. Active Suspension System. Semi-Active Suspension System. Road disturbance Step Input Harmonic Input Aws Abu-Khudhair ENGG*4420 4

5 Passive Suspension System Standard vehicle suspension system Employed in the majority of commercial vehicles Advantages: Low cost. Simple implementation. Disadvantages: Purely passive elements. On-line performance optimization not possible Vehicle body k s b s k t Tire z u z r z s Aws Abu-Khudhair ENGG*4420 5

6 Active Suspension System Fully active system. Computer controlled active element (F a ). Advantages: Offers excellent performance. Allows for control and performance optimization at any point during lifetime. Disadvantages: High cost. Major safety issues. High power demand. Vehicle body k t Tire F a z u z r z s Aws Abu-Khudhair ENGG*4420 6

7 Semi-Active Suspension System Hybrid system (Passive + Active) Provides excellent fail safe mechanism. Relatively low cost. Provides a performance comparable to the active system. Very low power demand. k s Vehicle body b s k t Tire z s b semi z u z r Aws Abu-Khudhair ENGG*4420 7

8 Quarter-Car Suspension Model z s z s m s m s Active element k s b s z u k s b s b semi z u m u m u z r z r k t k t Passive Suspension System Semi-Active Suspension System Aws Abu-Khudhair ENGG*4420 8

9 Quarter-Car Suspension Model cont. The system can be modeled using state space representation: Passive: Semi-Active: X & = AX + Lz& r & = AX + NXb + Lz& semi r X The two models are equivalent when the variable damper coefficient is set to 0,, Aws Abu-Khudhair ENGG*4420 9

10 State Space Model X & = AX + NXb + Lz&, eq semi r In the S.S. equation: X State vector. A State matrix (system description). N Semi-active control matrix. L Input disturbance vector. Z r Road disturbance. Matrices description is provided in the lab manual pg Aws Abu-Khudhair ENGG*

11 Aws Abu-Khudhair ENGG* State Space Model = = = unsprung mass Velocity of Tire deflection sprung mass Velocity of Suspension deflection u r u s u s z z z z z z x x x x X & & - Derivative of the state vector over the sampling time. - Derivative of the road disturbance over the sampling time. X & Z & r

12 Road Disturbance Step Input: Isolated sudden disturbance. Ex. Curb with a height of 10 cm. Z r = 0.1m Road Input Z r (t) 0 Time (t) Aws Abu-Khudhair ENGG*

13 Road Disturbance cont. Harmonic Input: Simple road profile. Modeled as a Sine wave with: Freq. 1 Hz. Amp. 10 cm. Phase 0. Aws Abu-Khudhair ENGG*

14 Semi-Active Suspension Control Methods Skyhook Control. Ground-hook control. Optimal control based on LQR. Fuzzy logic control: GA-based fuzzy control. Neural-Fuzzy control. Adaptive Fuzzy control. Aws Abu-Khudhair ENGG*

15 Linear Quadratic Regulator (LQR) The controller works towards minimizing the performance index given in equation (2.13). J T = lim E T x& 2 + ρ1x1 + ρ 2 x2 + ρ3x3 + ρ 4 x4 eq The controller determines the required ideal active force (F a ) to stabilize the vehicle. Aws Abu-Khudhair ENGG*

16 Semi-Active Control Law (LQR) The optimal control law is determined using Fig According to the calculated optimal active force (F a ), and the absolute velocity of the two masses, the damping coefficient (b semi ) is calculated. Fig Aws Abu-Khudhair ENGG*

17 Semi-Active Control Law (LQR) cont. The LQR control method is summarized in table 2.2. Aws Abu-Khudhair ENGG*

18 Lab 2 Implementation steps Step 1: Read Chapter 2 of the lab manual (further information is given in the appendix section). Step 2: Implement the quarter-car passive and semi-active suspension models in LabVIEW. Step 3: Implement the two road disturbances (step and harmonic). Aws Abu-Khudhair ENGG*

19 Lab 2 Implementation steps Step 4: Implement the LQR controller for the semi-active suspension system. Step 5: Perform the following analysis 1. Compare the performance of the passive and semi-active suspension systems. 2. Vary the weight parameters of the LQR controller (P matrix in eq. 2.14) and observe the change in performance of the SASS. 3. Provide a measure to differentiate the difference in performance of the two systems (% difference?) Aws Abu-Khudhair ENGG*

20 Requirements 1. A fully functional passive and semiactive suspension systems, with the ability to switch between the two systems in the same project. 2. Simulations performed using the two road disturbances given in section of the lab manual. Aws Abu-Khudhair ENGG*

21 Requirements 3. The following performance graphs must be present on the front panel: Vehicle ride quality. Suspension deflection response. Tire deflection response. Input disturbance to the system. 4. LQR control must be performed using a separate Task (loop) from the plant system. Aws Abu-Khudhair ENGG*

22 Notes Matlab Script Nodes The matricies can be coded using the MatLAB script node in LabVIEW. Matrix definitions are done in the following format: X= [xx xx xx; xx xx xx; xx xx xx]; Note that variables can be used within the matrix defintion. Aws Abu-Khudhair ENGG*

23 Notes Matlab Script Nodes Matricies can be multiplied and added as long as the dimensions are consistent. To transpose a matrix add a after the matrix variable. Dot product multiplications can be performed using a *. Aws Abu-Khudhair ENGG*

24 Notes - Another method of implementing the matrices is through using the matrix variables in LabVIEW. Matrix values must be calculated by hand and inputted in the matrices manually. Aws Abu-Khudhair ENGG*

25 Note Plant/Controller synchronization A requirement of the lab is to implement the controller in a separate task than the plant system. Synchronization between the two systems can be accomplished using: Semaphore, or Occurrences. Task 1 SASS Plant synchronization Task 2 LQR Controller Aws Abu-Khudhair ENGG*

26 Deadlines and Marking Lab 2 is worth 8%. 4% for the report, and 4% for the demo The Demo is due Oct. 12 th, 2010 in the Lab. The Report is due Oct. 12 th, 2010 in the Lab. A signed group evaluation sheet must be submitted with the lab report QUESTIONS? Aws Abu-Khudhair ENGG*

Lab 2: Real-Time Automotive Suspension system Simulator

Lab 2: Real-Time Automotive Suspension system Simulator ENGG*4420 Real Time System Design Lab 2: Real-Time Automotive Suspension system Simulator TA: Matthew Mayhew (mmayhew@uoguelph.ca) Due: Fri. Oct 12 th / Mon Oct 15 th ENGG*4420 1 Today s Activities Lab

More information

1 1 / 1 / Due : Fri. Nov. 23 rd / Mon. Nov. 26

1 1 / 1 / Due : Fri. Nov. 23 rd / Mon. Nov. 26 ENGG*4420 Real Time System Design (mmayhew@uoguelph.ca) Due : Fri. Nov. 23 rd / Mon. Nov. 26 th 1 1 Today s Activities Lab 4 Introduction. Lab 3 Demos. Start work on Lab 4. 2 2 Lab 4 Development Environment

More information

Comparative Analysis Of Vehicle Suspension System in Matlab-SIMULINK and MSc- ADAMS with the help of Quarter Car Model

Comparative Analysis Of Vehicle Suspension System in Matlab-SIMULINK and MSc- ADAMS with the help of Quarter Car Model Comparative Analysis Of Vehicle Suspension System in Matlab-SIMULINK and MSc- ADAMS with the help of Quarter Car Model S. J. Chikhale 1, Dr. S. P. Deshmukh 2 PG student, Dept. of Mechanical Engineering,

More information

Hybrid Model Predictive Control Application Towards Optimal Semi-Active Suspension

Hybrid Model Predictive Control Application Towards Optimal Semi-Active Suspension International Journal of Control Vol., No., DD Month 2x, 1 13 Hybrid Model Predictive Control Application Towards Optimal Semi-Active Suspension N. Giorgetti, A. Bemporad, E. Tseng, D. Hrovat Dept. Information

More information

Controllable Suspension Design Using Magnetorheological Fluid

Controllable Suspension Design Using Magnetorheological Fluid Controllable Suspension Design Using Magnetorheological Fluid Public Defence October 213 Student: Supervisor: Co-Supervisor: Anria Strydom Prof Schalk Els Dr Sudhir Kaul 1 Outline Project background MR

More information

Engineering Tool Development

Engineering Tool Development Engineering Tool Development Codification of Legacy Three critical challenges for Indian engineering industry today Dr. R. S. Prabakar and Dr. M. Sathya Prasad Advanced Engineering 21 st August 2013 Three

More information

AN APPROACH TO DEVELOPING A REFERENCE PROFILER

AN APPROACH TO DEVELOPING A REFERENCE PROFILER AN APPROACH TO DEVELOPING A REFERENCE PROFILER John B. Ferris TREY Associate SMITH Professor Graduate Mechanical Research Engineering Assistant Virginia Tech RPUG October Meeting 08 October 28, 2008 Overview

More information

Vehicle Suspension Optimization. J. Michael Gray Jacob Wronski Friday May 9 th, 2003

Vehicle Suspension Optimization. J. Michael Gray Jacob Wronski Friday May 9 th, 2003 Vehicle Suspension Optimization J. Michael Gray Jacob Wronski Friday May 9 th, 2003 Presentation Outline Project introduction Simulation model description Trade space exploration Single objective optimization

More information

Ride Analysis of Three Wheeled Vehicle Using MATLAB/Simulink

Ride Analysis of Three Wheeled Vehicle Using MATLAB/Simulink Ride Analysis of Three Wheeled Vehicle Using MATLAB/Simulink M K Naidu 1, S Srinivasa Rao 2 and T Tejesh 3 1, 2 Asso.Profs., Mechanical Dept., M V G R College of Engineering Email: mknaidu99@gmail.com

More information

Development of Fuzzy Logic Controller by Particle Swarm Optimization Algorithm for Semi-active Suspension System using Magneto-rheological Damper

Development of Fuzzy Logic Controller by Particle Swarm Optimization Algorithm for Semi-active Suspension System using Magneto-rheological Damper Development of Fuzzy Logic Controller by Particle Swarm Optimization Algorithm for Semi-active Suspension System using Magneto-rheological Damper MAT HUSSIN AB TALIB and INTAN Z. MAT DARUS Department of

More information

Research on Suspension System Based on Genetic Algorithm and Neural Network Control

Research on Suspension System Based on Genetic Algorithm and Neural Network Control 72 The Open Mechanical Engineering Journal, 2009, 3, 72-79 Open Access Research on Suspension System Based on Genetic Algorithm and Neural Network Control Chuan-Yin Tang and Li-Xin Guo * School of Mechanical

More information

SEMI-ACTIVE VIBRATION CONTROL WITH ON-LINE IDENTIFICATION OF THE INVERSE MR DAMPER MODEL

SEMI-ACTIVE VIBRATION CONTROL WITH ON-LINE IDENTIFICATION OF THE INVERSE MR DAMPER MODEL SEMI-ACTIVE VIBRATION CONTROL WITH ON-LINE IDENTIFICATION OF THE INVERSE MR DAMPER MODEL Jerzy Kasprzyk and Piotr Krauze Institute of Automatic Control, Silesian University of Technology, Gliwice, Poland,

More information

THE EXPERIENCE WITH OPTIMISATION OF HIGHLY NON-LINEAR DYNAMIC SYSTEMS BY GENETIC ALGORITHMS IN MATLAB ENVIRONMENT

THE EXPERIENCE WITH OPTIMISATION OF HIGHLY NON-LINEAR DYNAMIC SYSTEMS BY GENETIC ALGORITHMS IN MATLAB ENVIRONMENT THE EXPERIENCE WITH OPTIMISATION OF HIGHLY NON-LINEAR DYNAMIC SYSTEMS BY GENETIC ALGORITHMS IN MATLAB ENVIRONMENT Zbynek Šika, Pavel Steinbauer, Michael Valášek, 1 Abstract: The paper summarises experience

More information

Lunar / Mars Rover Suspension

Lunar / Mars Rover Suspension Lunar / Mars Rover Suspension HW1: A Plan for a Simulation-Based Study ME 6105 Modeling and Simulation in Design January 30, 2007 Nathan Young Stephanie Thompson Robert Thiets 1. The Decision Situation

More information

AN LPV APPROACH FOR SEMI-ACTIVE SUSPENSION CONTROL

AN LPV APPROACH FOR SEMI-ACTIVE SUSPENSION CONTROL Copyright c 29 by ABCM January 4-8, 2, Foz do Iguaçu, PR, Brazil AN LPV APPROACH FOR SEMI-ACTIVE SUSPENSION CONTROL Do Anh-Lam, anh-lam.do@gipsa-lab.grenoble-inp.fr Sename Olivier, olivier.sename@gipsa-lab.grenoble-inp.fr

More information

A Simplified Vehicle and Driver Model for Vehicle Systems Development

A Simplified Vehicle and Driver Model for Vehicle Systems Development A Simplified Vehicle and Driver Model for Vehicle Systems Development Martin Bayliss Cranfield University School of Engineering Bedfordshire MK43 0AL UK Abstract For the purposes of vehicle systems controller

More information

Dynamic analysis of a half-car model with active suspension

Dynamic analysis of a half-car model with active suspension Dynamic analysis of a half-car model with active suspension Cătălin Alexandru, and Petre Alexandru Abstract Passive suspension systems of the motor vehicles have inherent limitations as a consequence of

More information

Active Suspension Design Requirements for Compliant Boundary Condition Road Disturbances

Active Suspension Design Requirements for Compliant Boundary Condition Road Disturbances Active Suspension Design Requirements for Compliant Boundary Condition Road Disturbances Anirudh Srinivasan Thesis submitted to the faculty of the Virginia Polytechnic Institute and State University in

More information

COSMOS. Vehicle Suspension Analysis ---- SolidWorks Corporation. Introduction 1. Role of vehicle suspension 2. Motion analysis 2

COSMOS. Vehicle Suspension Analysis ---- SolidWorks Corporation. Introduction 1. Role of vehicle suspension 2. Motion analysis 2 ---- WHITE PAPER Vehicle Suspension Analysis CONTENTS Introduction 1 Role of vehicle suspension 2 Motion analysis 2 Motion analysis using COSMOSMotion 3 Real-life example 4-5 Exporting loads to COSMOSWorks

More information

PSO based Adaptive Force Controller for 6 DOF Robot Manipulators

PSO based Adaptive Force Controller for 6 DOF Robot Manipulators , October 25-27, 2017, San Francisco, USA PSO based Adaptive Force Controller for 6 DOF Robot Manipulators Sutthipong Thunyajarern, Uma Seeboonruang and Somyot Kaitwanidvilai Abstract Force control in

More information

Lab 0a: Introduction to MATLAB

Lab 0a: Introduction to MATLAB http://www.comm.utoronto.ca/~dkundur/course/real-time-digital-signal-processing/ Page 1 of 1 Lab 0a: Introduction to MATLAB Professor Deepa Kundur Introduction and Background Welcome to your first real-time

More information

in Truck Suspension - Design-by-Simulation O. Vaculn, W. Kortum, W. Schwartz Oberpfaenhofen, D Wessling, Germany

in Truck Suspension - Design-by-Simulation O. Vaculn, W. Kortum, W. Schwartz Oberpfaenhofen, D Wessling, Germany Analysis and Design of Semi-Active Damping in Truck Suspension - Design-by-Simulation O. Vaculn, W. Kortum, W. Schwartz DLR, German Aerospace Research Establishment Institute for Robotics and System Dynamics

More information

Robotics: Science and Systems

Robotics: Science and Systems Robotics: Science and Systems Model Predictive Control (MPC) Zhibin Li School of Informatics University of Edinburgh Content Concepts of MPC MPC formulation Objective function and constraints Solving the

More information

Potential of Low Bandwidth Active Suspension Control with Continuously Variable Damper

Potential of Low Bandwidth Active Suspension Control with Continuously Variable Damper roceedings of the 7th World Congress The nternational Federation of Automatic Control Seoul, Korea, July 6-, 28 otential of Low Bandwidth Active Suspension Control with Continuously Variable Damper Guido

More information

ROBOTICS 01PEEQW. Basilio Bona DAUIN Politecnico di Torino

ROBOTICS 01PEEQW. Basilio Bona DAUIN Politecnico di Torino ROBOTICS 01PEEQW Basilio Bona DAUIN Politecnico di Torino Control Part 4 Other control strategies These slides are devoted to two advanced control approaches, namely Operational space control Interaction

More information

SEMI-ACTIVE CONTROL OF BUILDING STRUCTURES USING A NEURO-FUZZY CONTROLLER WITH ACCELERATION FEEDBACK

SEMI-ACTIVE CONTROL OF BUILDING STRUCTURES USING A NEURO-FUZZY CONTROLLER WITH ACCELERATION FEEDBACK Proceedings of the 6th International Conference on Mechanics and Materials in Design, Editors: J.F. Silva Gomes & S.A. Meguid, P.Delgada/Azores, 26-30 July 2015 PAPER REF: 5778 SEMI-ACTIVE CONTROL OF BUILDING

More information

Experiment 9: Inverted Pendulum using Torsion Control System

Experiment 9: Inverted Pendulum using Torsion Control System DEPARTMENT OF ELECTRICAL ENGINEERING UNIVERSITY OF MINNESOTA EE 4237 State Space Control Laboratory Experiment 9: Inverted Pendulum using Torsion Control System Objective: 1. To study the LQR design and

More information

Hybrid control strategy for a semi active suspension system using fuzzy logic and bio-inspired chaotic fruit fly algorithm

Hybrid control strategy for a semi active suspension system using fuzzy logic and bio-inspired chaotic fruit fly algorithm Hybrid control strategy for a semi active suspension system using fuzzy logic and bio-inspired chaotic fruit fly algorithm Vikram Bhattacharjee Department of Electrical & Computer Engineering Carnegie

More information

Using 1D & 3D Simulation for Mechatronic System Design

Using 1D & 3D Simulation for Mechatronic System Design Using 1D & 3D Simulation for Mechatronic System Design Andrew Dyer Altair Engineering, Inc. Troy, USA adyer@altair.com Abstract Products and processes have become increasingly complex to meet demands on

More information

EE6102 Multivariable Control Systems

EE6102 Multivariable Control Systems EE612 Multivariable Control Systems Homework Assignments for Part 2 Prepared by Ben M. Chen Department of Electrical & Computer Engineering National University of Singapore April 21, 212 EE612 Multivariable

More information

The Virtual Prototype of a Mechatronic Suspension System with Active Force Control

The Virtual Prototype of a Mechatronic Suspension System with Active Force Control The Virtual Prototype of a Mechatronic Suspension System with Active Force Control CATALIN ALEXANDRU, PETRE ALEXANDRU Product Design and Robotics Department Transilvania University of Brasov 9 Bd. Eroilor,

More information

SOLUTION APPROACHES TO DIFFERENTIAL EQUATIONS OF MECHANICAL SYSTEM DYNAMICS: A CASE STUDY OF CAR SUSPENSION SYSTEM

SOLUTION APPROACHES TO DIFFERENTIAL EQUATIONS OF MECHANICAL SYSTEM DYNAMICS: A CASE STUDY OF CAR SUSPENSION SYSTEM Advances in Science and Technology Research Journal Volume 12, No. 2, June 2018, pages 266-273 DOI: 10.12913/22998624/85662 Research Article SOLUTION APPROACHES TO DIFFERENTIAL EQUATIONS OF MECHANICAL

More information

Precalculus Notes: Unit 7 Systems of Equations and Matrices

Precalculus Notes: Unit 7 Systems of Equations and Matrices Date: 7.1, 7. Solving Systems of Equations: Graphing, Substitution, Elimination Syllabus Objectives: 8.1 The student will solve a given system of equations or system of inequalities. Solution of a System

More information

Exploration Assignment #1. (Linear Systems)

Exploration Assignment #1. (Linear Systems) Math 0280 Introduction to Matrices and Linear Algebra Exploration Assignment #1 (Linear Systems) Acknowledgment The MATLAB assignments for Math 0280 were developed by Jonathan Rubin with the help of Matthew

More information

Controller Calibration using a Global Dynamic Engine Model

Controller Calibration using a Global Dynamic Engine Model 23.09.2011 Controller Calibration using a Global Dynamic Engine Model Marie-Sophie Vogels Johannes Birnstingl Timo Combé CONTENT Introduction Description of Global Dynamic Model Concept Controller Calibration

More information

K-Beam Accelerometer. Acceleration. Capacitive MEMS, Triaxial Accelerometer. Type 8395A...

K-Beam Accelerometer. Acceleration. Capacitive MEMS, Triaxial Accelerometer. Type 8395A... Acceleration K-Beam Accelerometer Type 8395A... Capacitive MEMS, Triaxial Accelerometer Type 8395A is a high-sensitivity, low noise triaxial accelerometer which simultaneously measures acceleration and/or

More information

A Self Tuning Suspension Controller for Multi-body Quarter Vehicle Model

A Self Tuning Suspension Controller for Multi-body Quarter Vehicle Model Proceedings of the 7th World Congress The International Federation of Automatic Control A Self Tuning Suspension Controller for Multi-body Quarter Vehicle Model C. Poussot-Vassal A. Drivet O. Sename L.

More information

Optimization to Reduce Automobile Cabin Noise

Optimization to Reduce Automobile Cabin Noise EngOpt 2008 - International Conference on Engineering Optimization Rio de Janeiro, Brazil, 01-05 June 2008. Optimization to Reduce Automobile Cabin Noise Harold Thomas, Dilip Mandal, and Narayanan Pagaldipti

More information

Example: Modeling a Cruise Control System in Simulink

Example: Modeling a Cruise Control System in Simulink Example: Modeling a Cruise Control System in Simulink Physical setup and system equations Building the model Open-loop response Extracting the Model Implementing PI control Closed-loop response Physical

More information

K-Beam Accelerometer. Acceleration. Capacitive MEMS, Triaxial Accelerometer. Type 8396A...

K-Beam Accelerometer. Acceleration. Capacitive MEMS, Triaxial Accelerometer. Type 8396A... Acceleration K-Beam Accelerometer Type 8396A... Capacitive MEMS, Triaxial Accelerometer Type 8396A is a high-sensitivity, low noise triaxial accelerometer which simultaneously measures acceleration and/or

More information

ME422 Mechanical Control Systems Matlab/Simulink Hints and Tips

ME422 Mechanical Control Systems Matlab/Simulink Hints and Tips Cal Poly San Luis Obispo Mechanical Engineering ME Mechanical Control Systems Matlab/Simulink Hints and Tips Ridgely/Owen, last update Jan Building A Model The way in which we construct models for analyzing

More information

Prof. Fanny Ficuciello Robotics for Bioengineering Visual Servoing

Prof. Fanny Ficuciello Robotics for Bioengineering Visual Servoing Visual servoing vision allows a robotic system to obtain geometrical and qualitative information on the surrounding environment high level control motion planning (look-and-move visual grasping) low level

More information

Math 4: Advanced Algebra Ms. Sheppard-Brick A Quiz Review LT ,

Math 4: Advanced Algebra Ms. Sheppard-Brick A Quiz Review LT , 4A Quiz Review LT 3.4 3.10, 4.1 4.3 Key Facts Know how to use the formulas for projectile motion. The formulas will be given to you on the quiz, but you ll need to know what the variables stand for Horizontal:

More information

Research Article. ISSN (Print) *Corresponding author Chen Hao

Research Article. ISSN (Print) *Corresponding author Chen Hao Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 215; 3(6):645-65 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources)

More information

Model Library Mechanics

Model Library Mechanics Model Library Mechanics Using the libraries Mechanics 1D (Linear), Mechanics 1D (Rotary), Modal System incl. ANSYS interface, and MBS Mechanics (3D) incl. CAD import via STL and the additional options

More information

Lecture 17. ENGR-1100 Introduction to Engineering Analysis CENTROID OF COMPOSITE AREAS

Lecture 17. ENGR-1100 Introduction to Engineering Analysis CENTROID OF COMPOSITE AREAS ENGR-00 Introduction to Engineering Analysis Lecture 7 CENTROID OF COMPOSITE AREAS Today s Objective : Students will: a) Understand the concept of centroid. b) Be able to determine the location of the

More information

Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI Decomposition

Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI Decomposition Large-scale Ultrasound Simulations Using the Hybrid OpenMP/MPI Decomposition Jiri Jaros*, Vojtech Nikl*, Bradley E. Treeby *Department of Compute Systems, Brno University of Technology Department of Medical

More information

FreeMat Tutorial. 3x + 4y 2z = 5 2x 5y + z = 8 x x + 3y = -1 xx

FreeMat Tutorial. 3x + 4y 2z = 5 2x 5y + z = 8 x x + 3y = -1 xx 1 of 9 FreeMat Tutorial FreeMat is a general purpose matrix calculator. It allows you to enter matrices and then perform operations on them in the same way you would write the operations on paper. This

More information

Can be put into the matrix form of Ax=b in this way:

Can be put into the matrix form of Ax=b in this way: Pre-Lab 0 Not for Grade! Getting Started with Matlab Introduction In EE311, a significant part of the class involves solving simultaneous equations. The most time efficient way to do this is through the

More information

MAT 275 Laboratory 2 Matrix Computations and Programming in MATLAB

MAT 275 Laboratory 2 Matrix Computations and Programming in MATLAB MATLAB sessions: Laboratory MAT 75 Laboratory Matrix Computations and Programming in MATLAB In this laboratory session we will learn how to. Create and manipulate matrices and vectors.. Write simple programs

More information

Purdue e-pubs. Purdue University. Jeongil Park Samsung Electronics Co. Nasir Bilal Purdue University. Douglas E. Adams Purdue University

Purdue e-pubs. Purdue University. Jeongil Park Samsung Electronics Co. Nasir Bilal Purdue University. Douglas E. Adams Purdue University Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 26 Development of a Two-Dimensional Finite Element Model of a Suction Valve for Reduction

More information

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 4,000 116,000 120M Open access books available International authors and editors Downloads Our

More information

A Longitudinal Control Algorithm for Smart Cruise Control with Virtual Parameters

A Longitudinal Control Algorithm for Smart Cruise Control with Virtual Parameters ISSN (e): 2250 3005 Volume, 06 Issue, 12 December 2016 International Journal of Computational Engineering Research (IJCER) A Longitudinal Control Algorithm for Smart Cruise Control with Virtual Parameters

More information

Introduction: Equipment: Getting Started Collecting the data:

Introduction: Equipment: Getting Started Collecting the data: Introduction: Collecting Ball Bounce data. Many aspects relating to the motion of a bouncing ball can be modelled mathematically. The first stage in modelling the motion is to collect some data. The Calculator

More information

2009 E09PS E09PS E09PS E09PS E09PS E09PS38 IEEE 2009 E09PS39 E09PS40 E09PS41 E09PS42 E09PS43 IEEE 2008 E09PS44

2009 E09PS E09PS E09PS E09PS E09PS E09PS38 IEEE 2009 E09PS39 E09PS40 E09PS41 E09PS42 E09PS43 IEEE 2008 E09PS44 1 CODE IEEE TRANSACTION POWER SYSTEM YEAR E09PS32 E09PS01 E09PS02 E09PS03 E09PS04 E09PS05 E09PS06 E09PS07 E09PS08 E09PS09 E09PS10 E09PS11 E09PS12 E09PS13 E09PS14 E09PS15 E09PS16 E09PS17 E09PS18 E09PS19

More information

Modeling Mechanical System using SIMULINK

Modeling Mechanical System using SIMULINK Modeling Mechanical System using SIMULINK Mechanical System We will consider a toy train consisting of an engine and a car as shown in Figure. Assuming that the train only travels in one direction, we

More information

Experimental Fault Diagnosis in Systems Containing Finite Elements of Plate of Kirchoff by Using State Observers Methodology

Experimental Fault Diagnosis in Systems Containing Finite Elements of Plate of Kirchoff by Using State Observers Methodology Journal of Physics: Conference Series PAPER OPEN ACCESS Experimental Fault Diagnosis in Systems Containing Finite Elements of Plate of Kirchoff by Using State Observers Methodology To cite this article:

More information

Analytically Redundancy Based IFDI Scheme for Semi-Active Suspension Systems in Motorcycle

Analytically Redundancy Based IFDI Scheme for Semi-Active Suspension Systems in Motorcycle Journal of Physics: Conference Series PAPER OPEN ACCESS Analytically Redundancy Based IFDI Scheme for Semi-Active Suspension Systems in Motorcycle To cite this article: D Capriglione et al 2018 J. Phys.:

More information

Linear quadratic regulator

Linear quadratic regulator Chapter 5 Linear quadratic regulator 5.1 Introduction The linear quadratic regulator is one of the most simple optimal controller that can be developed. It is a stable and explicit controller. Its key

More information

ELEC4042 Signal Processing 2 MATLAB Review (prepared by A/Prof Ambikairajah)

ELEC4042 Signal Processing 2 MATLAB Review (prepared by A/Prof Ambikairajah) Introduction ELEC4042 Signal Processing 2 MATLAB Review (prepared by A/Prof Ambikairajah) MATLAB is a powerful mathematical language that is used in most engineering companies today. Its strength lies

More information

Introduction to Simulink

Introduction to Simulink University College of Southeast Norway Introduction to Simulink Hans-Petter Halvorsen, 2016.11.01 http://home.hit.no/~hansha Preface Simulink, developed by The MathWorks, is a commercial tool for modeling,

More information

Hands-on Lab. LabVIEW Simulation Tool Kit

Hands-on Lab. LabVIEW Simulation Tool Kit Hands-on Lab LabVIEW Simulation Tool Kit The LabVIEW Simulation Tool Kit features a comprehensive suite of tools to test designs. This lab provides a primer to implementing a simulation. This will be useful

More information

Modular and Scalable Power Converters in the UPS Industry

Modular and Scalable Power Converters in the UPS Industry A-PDF Split DEMO : Purchase from www.a-pdf.com to remove the watermark Modular and Scalable Power Converters in the Industry Ian Wallace Eaton Corporation, Innovation Center 1 Eaton Overview Eaton Electric

More information

LED55WPG Programmable LED Driver

LED55WPG Programmable LED Driver Dimmable Constant Current Rev 8-9-7 Electrical Specifications Input Voltage Range: Frequency: Power Factor: Inrush Current: Input Current (Max): -77 Vac Nom. (8-35 V Min/Max) 5/6 Hz Nom. (47-63 Hz Min/Max)

More information

Appendix H: Introduction to Maple

Appendix H: Introduction to Maple Appendix H: Introduction to Maple Maple is an application that can be used to analytically solve algebraic and differential equations. The capability to differentiate, integrate and algebraically manipulate

More information

Figure (2) The arrows show the directions of the hinge vectors and the hinge orientation angles (φ h )

Figure (2) The arrows show the directions of the hinge vectors and the hinge orientation angles (φ h ) In this example we will analyze a rocket vehicle during level flight. It is controlled by five aerosurfaces and a fixed engine, similar to the vehicle shown in Figure (1). The control surfaces are: two

More information

Estimation of Altitude and Vertical Velocity for Multirotor Aerial Vehicle using Kalman Filter

Estimation of Altitude and Vertical Velocity for Multirotor Aerial Vehicle using Kalman Filter Estimation of Altitude and Vertical Velocity for Multirotor Aerial Vehicle using Kalman Filter Przemys law G asior, Stanis law Gardecki, Jaros law Gośliński and Wojciech Giernacki Poznan University of

More information

x = 12 x = 12 1x = 16

x = 12 x = 12 1x = 16 2.2 - The Inverse of a Matrix We've seen how to add matrices, multiply them by scalars, subtract them, and multiply one matrix by another. The question naturally arises: Can we divide one matrix by another?

More information

This project has received funding from the European Union s Horizon 2020 research and innovation programme under grant agreement No

This project has received funding from the European Union s Horizon 2020 research and innovation programme under grant agreement No This project has received funding from the European Union s Horizon 2020 research and innovation programme under grant agreement No 643921. TOOLS INTEGRATION UnCoVerCPS toolchain Goran Frehse, UGA Xavier

More information

Plotting Graphs. Error Bars

Plotting Graphs. Error Bars E Plotting Graphs Construct your graphs in Excel using the method outlined in the Graphing and Error Analysis lab (in the Phys 124/144/130 laboratory manual). Always choose the x-y scatter plot. Number

More information

Colorado State University Department of Mechanical Engineering. MECH Laboratory Exercise #1 Introduction to MATLAB

Colorado State University Department of Mechanical Engineering. MECH Laboratory Exercise #1 Introduction to MATLAB Colorado State University Department of Mechanical Engineering MECH 417 - Laboratory Exercise #1 Introduction to MATLAB Contents 1) Vectors and Matrices... 2 2) Polynomials... 3 3) Plotting and Printing...

More information

George Mason University Signals and Systems I Spring 2016

George Mason University Signals and Systems I Spring 2016 George Mason University Signals and Systems I Spring 2016 Laboratory Project #1 Assigned: January 25, 2016 Due Date: Laboratory Section on Week of February 15, 2016 Description: The purpose of this laboratory

More information

2nd Annual International Conference on Advanced Material Engineering (AME 2016)

2nd Annual International Conference on Advanced Material Engineering (AME 2016) 2nd Annual International Conference on Advanced Material Engineering (AME 2016) Experimental and Modeling Studies of Engine Rubber Bushing Subjected to Impact Loading Xiong-Li-Ren JIANG1,a,, Na YANG1,b,*,

More information

Experiment 6 SIMULINK

Experiment 6 SIMULINK Experiment 6 SIMULINK Simulink Introduction to simulink SIMULINK is an interactive environment for modeling, analyzing, and simulating a wide variety of dynamic systems. SIMULINK provides a graphical user

More information

Role of Kinematic Analysis in tuning the Dynamic Behavior of a Formula Car

Role of Kinematic Analysis in tuning the Dynamic Behavior of a Formula Car gopalax -International Journal of Technology And Engineering System(IJTES): Jan March 2011- Vol.2.No.3. Role of Kinematic Analysis in tuning the Dynamic Behavior of a Formula Car K. J. Prashanth 1, Ashish

More information

New Dynamic Modeling and Practical Control Design for MacPherson Suspension System

New Dynamic Modeling and Practical Control Design for MacPherson Suspension System New Dynamic Modeling and Practical Control Design for MacPherson Suspension System by MOHAMMAD SABER FALLAH A thesis in the Department Mechanical and Industrial Engineering Presented in partial fulfillment

More information

10/11/07 1. Motion Control (wheeled robots) Representing Robot Position ( ) ( ) [ ] T

10/11/07 1. Motion Control (wheeled robots) Representing Robot Position ( ) ( ) [ ] T 3 3 Motion Control (wheeled robots) Introduction: Mobile Robot Kinematics Requirements for Motion Control Kinematic / dynamic model of the robot Model of the interaction between the wheel and the ground

More information

Designing for Reliability and Robustness

Designing for Reliability and Robustness MATLAB Digest Designing for Reliability and Robustness By Stuart Kozola No design is free from uncertainty or natural variation. For example, how will the design be used? How will it respond to environmental

More information

Engineering Software. Computer Aided Design Mathematical modelling and simulation Other specialised software. ENGG1811: Computing for Engineers

Engineering Software. Computer Aided Design Mathematical modelling and simulation Other specialised software. ENGG1811: Computing for Engineers ENGG1811: Computing for Engineers Engineering Software Computer Aided Design Mathematical modelling and simulation Other specialised software Cartoon by Roger Penwill, www.cadalyst.com/management/cad-cartoon-6373

More information

The University of Nottingham, Ningbo, China, 199 Taikang East Road, Ningbo, , China

The University of Nottingham, Ningbo, China, 199 Taikang East Road, Ningbo, , China Increasing the road safety of e-bike: Design of protecting shell based on stability criteria during severe road accidents Lele ZHANG 1,a, Alexander KONYUKHOV 2,b,*, Edwin MOK 1,c, Hui Leng CHOO 1,d 1 The

More information

Lab 5 Nodal and Mesh Analysis

Lab 5 Nodal and Mesh Analysis Lab 5 Nodal and Mesh Analysis Objectives concepts 1. node voltage and mesh current 2. systems of equations 3. matrix inverse skills 1. simulating a circuit 2. building a circuit on a breadboard 3. analyzing

More information

LMS Virtual.Lab Noise and Vibration

LMS Virtual.Lab Noise and Vibration LMS Virtual.Lab Noise and Vibration LMS Virtual.Lab Noise and Vibration From component to system-level noise and vibration prediction 2 LMS Virtual.Lab Noise and Vibration LMS Virtual.Lab Noise and Vibration

More information

Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps

Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps John W. Allen Samuel Gin College of Engineering GPS and Vehicle Dynamics Lab Auburn University Auburn,

More information

Matlab Tutorial. The value assigned to a variable can be checked by simply typing in the variable name:

Matlab Tutorial. The value assigned to a variable can be checked by simply typing in the variable name: 1 Matlab Tutorial 1- What is Matlab? Matlab is a powerful tool for almost any kind of mathematical application. It enables one to develop programs with a high degree of functionality. The user can write

More information

CS4620/5620. Professor: Kavita Bala. Cornell CS4620/5620 Fall 2012 Lecture Kavita Bala 1 (with previous instructors James/Marschner)

CS4620/5620. Professor: Kavita Bala. Cornell CS4620/5620 Fall 2012 Lecture Kavita Bala 1 (with previous instructors James/Marschner) CS4620/5620 Affine and 3D Transformations Professor: Kavita Bala 1 Announcements Updated schedule on course web page 2 Prelim days finalized and posted Oct 11, Nov 29 No final exam, final project will

More information

Math Homework 3

Math Homework 3 Math 0 - Homework 3 Due: Friday Feb. in class. Write on your paper the lab section you have registered for.. Staple the sheets together.. Solve exercise 8. of the textbook : Consider the following data:

More information

ALGEBRA 2 W/ TRIGONOMETRY MIDTERM REVIEW

ALGEBRA 2 W/ TRIGONOMETRY MIDTERM REVIEW Name: Block: ALGEBRA W/ TRIGONOMETRY MIDTERM REVIEW Algebra 1 Review Find Slope and Rate of Change Graph Equations of Lines Write Equations of Lines Absolute Value Functions Transformations Piecewise Functions

More information

Chapter 3 Path Optimization

Chapter 3 Path Optimization Chapter 3 Path Optimization Background information on optimization is discussed in this chapter, along with the inequality constraints that are used for the problem. Additionally, the MATLAB program for

More information

CMPUT 412 Motion Control Wheeled robots. Csaba Szepesvári University of Alberta

CMPUT 412 Motion Control Wheeled robots. Csaba Szepesvári University of Alberta CMPUT 412 Motion Control Wheeled robots Csaba Szepesvári University of Alberta 1 Motion Control (wheeled robots) Requirements Kinematic/dynamic model of the robot Model of the interaction between the wheel

More information

Review for Quarter 3 Cumulative Test

Review for Quarter 3 Cumulative Test Review for Quarter 3 Cumulative Test I. Solving quadratic equations (LT 4.2, 4.3, 4.4) Key Facts To factor a polynomial, first factor out any common factors, then use the box method to factor the quadratic.

More information

Game Mathematics. (12 Week Lesson Plan)

Game Mathematics. (12 Week Lesson Plan) Game Mathematics (12 Week Lesson Plan) Lesson 1: Set Theory Textbook: Chapter One (pgs. 1 15) We begin the course by introducing the student to a new vocabulary and set of rules that will be foundational

More information

1-- Pre-Lab The Pre-Lab this first week is short and straightforward. Make sure that you read through the information below prior to coming to lab.

1-- Pre-Lab The Pre-Lab this first week is short and straightforward. Make sure that you read through the information below prior to coming to lab. EELE 477 Lab 1: Introduction to MATLAB Pre-Lab and Warm-Up: You should read the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in the Pre-Lab section before attending your

More information

A multilevel simulation framework for highly automated harvest processes enabled by environmental sensor systems

A multilevel simulation framework for highly automated harvest processes enabled by environmental sensor systems A multilevel simulation framework for highly automated harvest processes enabled by environmental sensor systems Jannik Redenius, M.Sc., Matthias Dingwerth, M.Sc., Prof. Dr. Arno Ruckelshausen, Faculty

More information

Optimised corrections for finite-difference modelling in two dimensions

Optimised corrections for finite-difference modelling in two dimensions Optimized corrections for 2D FD modelling Optimised corrections for finite-difference modelling in two dimensions Peter M. Manning and Gary F. Margrave ABSTRACT Finite-difference two-dimensional correction

More information

MULTI OBJECTIVE OPTIMIZATION OF VEHICLE ACTIVE SUSPENSION SYSTEM USING DEBBO BASED PID CONTROLLER

MULTI OBJECTIVE OPTIMIZATION OF VEHICLE ACTIVE SUSPENSION SYSTEM USING DEBBO BASED PID CONTROLLER MULTI OBJECTIVE OPTIMIZATION OF VEHICLE ACTIVE SUSPENSION SYSTEM USING DEBBO BASED CONTROLLER Kalaivani Rajagopal #1, Lakshmi Ponnusamy # # DEEE, CEG, Anna University Chennai, India 1 kalaivanisudhagar@gmail.com

More information

VIBRATION ISOLATION USING A MULTI-AXIS ROBOTIC PLATFORM G.

VIBRATION ISOLATION USING A MULTI-AXIS ROBOTIC PLATFORM G. VIBRATION ISOLATION USING A MULTI-AXIS ROBOTIC PLATFORM G. Satheesh Kumar, Y. G. Srinivasa and T. Nagarajan Precision Engineering and Instrumentation Laboratory Department of Mechanical Engineering Indian

More information

Creates a 1 X 1 matrix (scalar) with a value of 1 in the column 1, row 1 position and prints the matrix aaa in the command window.

Creates a 1 X 1 matrix (scalar) with a value of 1 in the column 1, row 1 position and prints the matrix aaa in the command window. EE 350L: Signals and Transforms Lab Spring 2007 Lab #1 - Introduction to MATLAB Lab Handout Matlab Software: Matlab will be the analytical tool used in the signals lab. The laboratory has network licenses

More information

Measuring and Assessing Road Profile by Employing Accelerometers and IRI Assessment Tools

Measuring and Assessing Road Profile by Employing Accelerometers and IRI Assessment Tools American Journal of Traffic and Transportation Engineering 218; 3(2): 24-4 http://www.sciencepublishinggroup.com/j/ajtte doi: 1.11648/j.ajtte.21832.12 Measuring and Assessing Road Profile by Employing

More information

STUDY ON MODEL REDUCTION OF LARGE STRUCTURAL SYSTEMS FOR ACTIVE VIBRATION CONTROL

STUDY ON MODEL REDUCTION OF LARGE STRUCTURAL SYSTEMS FOR ACTIVE VIBRATION CONTROL 4"' Australasian Congress on Applied Mechanics Institute of Materials Engineering Australasia Ltd 2005 STUDY ON MODEL REDUCTION OF LARGE STRUCTURAL SYSTEMS FOR ACTIVE VIBRATION CONTROL J. Boffa, N. Zhang

More information

Using RecurDyn. Contents

Using RecurDyn. Contents Using RecurDyn Contents 1.0 Multibody Dynamics Overview... 2 2.0 Multibody Dynamics Applications... 3 3.0 What is RecurDyn and how is it different?... 4 4.0 Types of RecurDyn Analysis... 5 5.0 MBD Simulation

More information