Workshop Matlab/Simulink in Drives and Power electronics Lecture 3

Size: px
Start display at page:

Download "Workshop Matlab/Simulink in Drives and Power electronics Lecture 3"

Transcription

1 Workshop Matlab/Simulink in Drives and Power electronics Lecture 3 : DC-Motor Control design Ghislain REMY Jean DEPREZ 1 / 29

2 Workshop Program 8 lectures will be presented based on Matlab/Simulink : 1 Introduction to Matlab 2 Introduction to Simulink 3 DC-Motor Control design 4 DC-Motor Chopper design SimPowerSystems 5 Introduction to Stateflow/Statechart 6 Induction Motor Inverter Control 7 Synchronous Motor Modeling 8 Synchronous Motor Control Two system applications (four quadrants electric drives of mechanical systems) will be used as "conducting lines" during the workshop. 2 / 29

3 Drives and Power Systems Presentation of the Structure of Industrial Drives and Power Systems Large domains of application DC-Motor, Synchronous Motor and Induction Motor Power Electronics (IGBT, MOSFET ) Classical Control Algorithm (Cascaded Control Loop, Scalar control, Vector Control ) 3 / 29

4 Problems with Traditional Development Solution Model-based design 4 / 29

5 Advantages of Model-based design 5 / 29

6 Design of Mechatronics System Model-based design Simulation of the system is essential Multi-domain modeling Matlab/Simulink is a very good tool for this kind of approach. Many useful Toolboxes in Matlab/Simulink: SimPowerSystems / SimScape StateFlow Real-Time Workshop 6 / 29

7 Summary Overview of the Control System Toolbox Building Models Analyzing Models: Introduces the LTI Viewer Designing Compensators: Introduces the SISO Design Tool Using an application to the DC-Motor Control design 7 / 29

8 Hand Tuning Control Systems Hand tuning refers to iterative, manual tuning of control systems Disadvantages of hand-tuning: Tuning on a real system can be costly (test cell) Tuning requires significant knowledge, experience or both Impossible to tell that you are at optimal solution 8 / 29

9 Overview of the Control System Toolbox The Control System Toolbox product provide functions designed for control engineering. This product is a collection of algorithms, written mostly as M-files, that implements common control system design, analysis, and modeling techniques and convenient graphical user interfaces (GUIs). Control System Toolobox specificities : Model can be Transfer functions, in zero-pole-gain or state-space form, allowing you to use both classical and modern control techniques. You can manipulate both continuous-time and discrete-time systems. Conversions between various model representations are provided. Time responses, frequency responses, and root loci can be computed and graphed. Other functions allow pole placement, optimal control, and estimation. 9 / 29

10 Some examples of the Control Toolbox Various tools for the Model Analysis using Bode Diagram, Pole-Zero Map, Nyquist Diagram, Step Response Graphical User Interface for an easy controller design Example: rlc_gui 10 / 29

11 1: Building Models Describes how to build linear models, interconnect models, determine model characteristics, convert between continuous- and discrete-time models, and how to perform model order reduction on large scale models. This chapter develops a DC motor model from basic laws of physics. Firstly: Creating Continuous-Time Models 11 / 29

12 LTI Model Types Palestine Polytechnic University LTI Model Types Control System Toolbox provides functions for creating four basic representations of linear time-invariant (LTI) models: Transfer function (TF) models Zero-pole-gain (ZPK) models State-space (SS) models Frequency response data (FRD) models These functions take model data as input and create objects that embody this data in a single MATLAB variable. 12 / 29

13 Creating Transfer Function Models Transfer functions (TF) are frequency-domain representations. A SISO transfer function is a ratio of polynomials: Transfer functions are specified by their numerator and denominator polynomials A(s) and B(s). In MATLAB, a polynomial is represented by the vector of its coefficients, for example, the polynomial is specified as [1 2 10]. To create a TF object representing the transfer function: specify the numerator and denominator polynomials and use tf to construct the TF object: num = [ 1 0 ]; % Numerator: s den = [ ]; % Denominator: s^2 + 2 s + 10 H = tf(num,den) Transfer function: s s^2 + 2 s Model can also be defined as an expression of the Laplace variable s: s = tf('s'); % Create Laplace variable H = s / (s^2 + 2*s + 10) Transfer function: s s^2 + 2 s / 29

14 A simplified model of the DC motor The torque Td models load disturbances. You must minimize the speed variations induced by such disturbances. For this example, the physical constants are: R = 2.0; % Ohms L = 0.5; % Henrys Km = 0.1; Kb = 0.1; % torque and back emf constants Kf = 0.2; % Nms J = 0.02; % kg.m^2/s^2 First construct a state-space model of the DC motor with two inputs (Va,Td) and one output (w): h1 = tf(km,[l R]); % armature h2 = tf(1,[j Kf]); % eqn of motion dcm = ss(h2) * [h1, 1]; % w = h2 * (h1*va + Td) dcm = feedback(dcm,kb,1,1); % close back emf loop 14 / 29

15 Creating State-Space Models State-space (SS) models are time-domain representations of LTI systems: dx = Ax + Bu dt y = Cx + Du ( t) ( t) ( t) ( t) ( t) where x(t) is the state vector, u(t) is input vector, and y(t) is the output trajectory. State-space models are derived from the differential equations describing the system dynamics: For example, a simple electric motor: 15 / 29

16 DC Motor in State-Space Models For example, consider a simple electric motor: di U = RA i+ LA + e dt e = Ke w c = Ke i dw J = c BM w T dt L dx = Ax + Bu dt y = Cx + Du To create this model, specify the state-space matrices A, B, C, D and use ss to construct the SS object: A = [ Ra/La Ke/La ; Ke/J -Bm/J]; B = [ 1/L ; 0 ]; C = [ 1 1 ]; D = [ x x]; H = ss(a,b,c,d) ( t) ( t) ( t) ( t) ( t) i x( t) = w i y( t) = w U u( t) = TL 16 / 29

17 LTI Viewer from Simulink 17 / 29

18 Analyzing Models: Introduces the LTI Viewer Analyzing Models: Introduces the LTI Viewer, a graphical user interface (GUI) that simplifies the task of viewing model responses. This chapter also discusses command-line functions for viewing model responses. 1- Select the Plot Type 2- Export Models to the Workspace Model reduction 18 / 29

19 19 / 29

20 Define a Controller Use a Controller as a Simple gain 1/1, It will be tuned by the control toolbox 20 / 29

21 Designing Compensators: Introduces the SISO Design Tool, a GUI that allows you to rapidly iterate on compensator designs. You can use this tool to adjust compensator gains and add dynamics, such as poles, zeros, notch filters 21 / 29

22 Tune Blocks 22 / 29

23 Configuring Design and Analysis Plots 23 / 29

24 The SISO Design Tool The SISO Design Task in the Control and Estimation Tools Manager, a user interface (UI) that facilitates the design of compensators for single-input, single-output feedback loops through a series of interactive pages The Graphical Tuning window, a graphical user interface (GUI) for displaying and manipulating the Bode, root locus, and Nichols plots for the controller currently being designed. This window is titled SISO Design for Design Name. The LTI Viewer associated with the SISO Design Task 24 / 29

25 The SISO Tool : Graphical window Using the Graphical Tuning Window Toolbar The toolbar can performs: Add and delete real and complex poles and zeros Zoom in and out Invoke the SISO Design Tool's context-sensitive help 25 / 29

26 Opening the SISO Design Tool This section shows how to open the SISO Design Tool with the DC motor example developed in Building Models Examples of the DC motor model, type load ltiexamples This loads a collection of linear models, including the DC motor. To open the SISO Design Tool and import the DC motor, type sisotool(sys_dc) This command opens both the SISO Design Task node on the Control and Estimation Tools Manager and the Graphical Tuning window with the root locus and open-loop Bode diagrams for the DC motor plotted by default. 26 / 29

27 SISO Design Task Node (Architecture Page View) Right Click to Add Pole/Zero Feedback Structure G - plant H - sensor dynamics F - prefilter C - compensator 27 / 29

28 Graphical Tuning Window : The DC Motor Right - click in any of these regions to see design options This status bar shows useful tips about how to use this window and information about the status of your design 28 / 29

29 Loop Responses As you select different compensator designs, you may find it convenient to be able to examine the various loop responses (for example, step or impulse responses) for a particular design. To view, for example, the closed-loop step response, click the Analysis Plots tab This opens the Analysis Plots page containing the list of available responses, with none initially selected. 29 / 29

Control System Toolbox

Control System Toolbox The Almighty University of Mohaghegh Ardabili Control System Toolbox The SISO Design Tool 1 Transfer Function TF = 2s + 4 s 2 + 6s + 5 TF = TF = 2(s + 2) (s + 1)(s + 5) 2(s + 2) (s + 1)(s + 5) 0 1 A= 5

More information

Guidelines for MATLAB s SISO Design Tool GUI

Guidelines for MATLAB s SISO Design Tool GUI Dr. Farzad Pourboghrat Guidelines for MATLAB s SISO Design Tool GUI The SISO Design Tool is a graphical user interface (GUI) that facilitates the design of compensators for single-input, single-output

More information

MATLAB CONTROL SYSTEM TOOLBOX IN LTI SYSTEM MODEL ANALYSIS

MATLAB CONTROL SYSTEM TOOLBOX IN LTI SYSTEM MODEL ANALYSIS MATLAB CONTROL SYSTEM TOOLBOX IN LTI SYSTEM MODEL ANALYSIS Asist.univ. Luminiţa Giurgiu Abstract The MATLAB environment has important numerical tools. One of them provides a reliable foundation for control

More information

Control System Toolbox For Use with MATLAB

Control System Toolbox For Use with MATLAB Control System Toolbox For Use with MATLAB User s Guide Version 6 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com suggest@mathworks.com bugs@mathworks.com doc@mathworks.com

More information

Control System Toolbox For Use with MATLAB

Control System Toolbox For Use with MATLAB Control System Toolbox For Use with MATLAB Using the Control System Toolbox Version 6 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com suggest@mathworks.com bugs@mathworks.com

More information

Developing a MATLAB-Based Control System Design and Analysis Tool for Enhanced Learning Environment in Control System Education

Developing a MATLAB-Based Control System Design and Analysis Tool for Enhanced Learning Environment in Control System Education Developing a MATLAB-Based Control System Design and Analysis Tool for Enhanced Learning Environment in Control System Education Frank S. Cheng and Lin Zhao Industrial and Engineering Technology Department

More information

2. Introduction to Matlab Control System Toolbox

2. Introduction to Matlab Control System Toolbox . Introduction to Matlab Control System Toolbox Consider a single-input, single-output (SISO), continuous-time, linear, time invariant (LTI) system defined by its transfer function: u(t) Y( S) num y(t)

More information

An Introduction to MATLAB and the Control Systems toolbox Aravind Parchuri, Darren Hon and Albert Honein

An Introduction to MATLAB and the Control Systems toolbox Aravind Parchuri, Darren Hon and Albert Honein E205 Introduction to Control Design Techniques An Introduction to MATLAB and the Control Systems toolbox Aravind Parchuri, Darren Hon and Albert Honein MATLAB is essentially a programming interface that

More information

Using MATLAB, SIMULINK and Control System Toolbox

Using MATLAB, SIMULINK and Control System Toolbox Using MATLAB, SIMULINK and Control System Toolbox A practical approach Alberto Cavallo Roberto Setola Francesco Vasca Prentice Hall London New York Toronto Sydney Tokyo Singapore Madrid Mexico City Munich

More information

Control System Toolbox

Control System Toolbox Control System Toolbox For Use with MATLAB Computation Visualization Programming Using the Control System Toolbox Version 5 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com

More information

Note 10 Introduction to MATLAB & SIMULINK

Note 10 Introduction to MATLAB & SIMULINK Note 10 Introduction to MATLAB & SIMULINK Department of Mechanical Engineering, University Of Saskatchewan, 57 Campus Drive, Saskatoon, SK S7N 5A9, Canada 1 1 Introduction to MATLAB MATLAB stands for the

More information

E105: RLTOOL Tutorial

E105: RLTOOL Tutorial E105: RLTOOL Tutorial Andrew C. Smith 7/30/2007 Thanks to Sean Augenstein for his tutorial. 1. Introduction What is RLTOOL? RLTOOL is a tool in MATLAB, that provides a GUI for performing Root Locus analysis

More information

Control System Toolbox 8 User s Guide

Control System Toolbox 8 User s Guide Control System Toolbox 8 User s Guide How to Contact The MathWorks www.mathworks.com Web comp.soft-sys.matlab Newsgroup www.mathworks.com/contact_ts.html Technical Support suggest@mathworks.com bugs@mathworks.com

More information

Root Locus Controller Design

Root Locus Controller Design Islamic University of Gaza Faculty of Engineering Electrical Engineering department Control Systems Design Lab Eng. Mohammed S. Jouda Eng. Ola M. Skeik Experiment 4 Root Locus Controller Design Overview

More information

Lab # 3 Time Response Design. State Space and Transfer Functions

Lab # 3 Time Response Design. State Space and Transfer Functions Islamic University of Gaza Faculty of Engineering Computer Engineering Dep. Feedback Control Systems Lab Eng. Tareq Abu Aisha Lab # 3 Lab # 3 Time Response Design State Space and Transfer Functions There

More information

MATLAB MATLAB mat lab funtool

MATLAB MATLAB mat lab funtool MATLAB MATLAB (matrix laboratory) is a numerical computing environment and fourthgeneration programming language. Developed by MathWorks, MATLAB allows matrix manipulations, plotting of functions and data,

More information

Version USER GUIDE A Matlab Graphical User Interface for Flight Dynamics Analysis

Version USER GUIDE A Matlab Graphical User Interface for Flight Dynamics Analysis FLIGHT DYNAMICS ANALYSIS - COMMAND AUGMENTATION DESIGN Version 3.1 USER GUIDE A Matlab Graphical User Interface for Flight Dynamics Analysis Originated by: Shane Rees (Version 1.) Written by: Konstantinos

More information

Simulink Based Robot Arm Control Workstation. Figure 1-1 High Level Block Diagram

Simulink Based Robot Arm Control Workstation. Figure 1-1 High Level Block Diagram Introduction: This project consists of designing a software-based control workstation in the Simulink environment using the SimMechanics Toolbox. The Quanser robot arm system will be modeled using this

More information

MATLAB Control Software Bharat Balagopal, Bharathram Balasubramanian, and Eric Stratton Green

MATLAB Control Software Bharat Balagopal, Bharathram Balasubramanian, and Eric Stratton Green ECE-536 DIGITAL CONTROL SYSTEMS Page 1 of 12 MATLAB Control Software Bharat Balagopal, Bharathram Balasubramanian, and Eric Stratton Green Electrical and Computer Engineering Department, North Carolina

More information

Estimation of Unknown Disturbances in Gimbal Systems

Estimation of Unknown Disturbances in Gimbal Systems Estimation of Unknown Disturbances in Gimbal Systems Burak KÜRKÇÜ 1, a, Coşku KASNAKOĞLU 2, b 1 ASELSAN Inc., Ankara, Turkey 2 TOBB University of Economics and Technology, Ankara, Turkey a bkurkcu@aselsan.com.tr,

More information

American International University- Bangladesh Faculty of Engineering (EEE) Control Systems Laboratory

American International University- Bangladesh Faculty of Engineering (EEE) Control Systems Laboratory Experiment 1 American International University- Bangladesh Faculty of Engineering (EEE) Control Systems Laboratory Title: Introduction to design and simulation of open loop and close loop control systems

More information

Introduction to Control Systems Design

Introduction to Control Systems Design Experiment One Introduction to Control Systems Design Control Systems Laboratory Dr. Zaer Abo Hammour Dr. Zaer Abo Hammour Control Systems Laboratory 1.1 Control System Design The design of control systems

More information

Introduction to Physical Modelling Rory Adams Senior Application Engineer

Introduction to Physical Modelling Rory Adams Senior Application Engineer Introduction to Physical Modelling Rory Adams Senior Application Engineer 2014 The MathWorks, Inc. 1 Creating Reusable Physical Models What you should walk away with Increased knowledge of: What is meant

More information

ME2142/ME2142E Feedback Control Systems

ME2142/ME2142E Feedback Control Systems ME2142/ME2142E Feedback Control Systems Installing OCTAVE in WINDOWS And Using OCTAVE for Control Systems Analysis August 2013 Department of Mechanical Engineering National University of Singapore 1. Introduction

More information

Lab 7: PID Control with Trajectory Following

Lab 7: PID Control with Trajectory Following Introduction ME460: INDUSTRIAL CONTROL SYSTEMS Lab 7: PID Control with Trajectory Following In Lab 6 you identified an approximate transfer function for both the X and Y linear drives of the XY stage in

More information

Design and Verification of Motion Control Algorithms Using Simulation

Design and Verification of Motion Control Algorithms Using Simulation Design and Verification of Motion Control Algorithms Using Simulation Douglas Eastman, Paul Lambrechts, Arkadiy Turevskiy The MathWorks, Inc. Natick, MA, 176 Identifying system level problems early and

More information

Robust Pole Placement using Linear Quadratic Regulator Weight Selection Algorithm

Robust Pole Placement using Linear Quadratic Regulator Weight Selection Algorithm 329 Robust Pole Placement using Linear Quadratic Regulator Weight Selection Algorithm Vishwa Nath 1, R. Mitra 2 1,2 Department of Electronics and Communication Engineering, Indian Institute of Technology,

More information

MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape

MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape SimPowerSystems SimMechanics SimHydraulics SimDriveline SimElectronics MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape Simscape MATLAB, Simulink September 13, 2012

More information

GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS

GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS Fernando Gandía (1), Luigi Strippoli (1), Valentín Barrena (1) (1) GMV, Isaac Newton 11, P.T.M. Tres Cantos, E-28760

More information

Lab #1 Revision to MATLAB

Lab #1 Revision to MATLAB Lab #1 Revision to MATLAB Objectives In this lab we would have a revision to MATLAB, especially the basic commands you have dealt with in analog control. 1. What Is MATLAB? MATLAB is a high-performance

More information

7. Completing a Design: Loop Shaping

7. Completing a Design: Loop Shaping 7. Completing a Design: Loop Shaping Now that we understand how to analyze stability using Nichols plots, recall the design problem from Chapter 5: consider the following feedback system R C U P Y where

More information

A NOUVELLE MOTION STATE-FEEDBACK CONTROL SCHEME FOR RIGID ROBOTIC MANIPULATORS

A NOUVELLE MOTION STATE-FEEDBACK CONTROL SCHEME FOR RIGID ROBOTIC MANIPULATORS A NOUVELLE MOTION STATE-FEEDBACK CONTROL SCHEME FOR RIGID ROBOTIC MANIPULATORS Ahmad Manasra, 135037@ppu.edu.ps Department of Mechanical Engineering, Palestine Polytechnic University, Hebron, Palestine

More information

Control Technology. motion controller and power amplifier

Control Technology. motion controller and power amplifier Control Technology motion controller and power amplifier Erik van Hilten Rik Prins National Instruments Agenda Controller, the central element Tools for controller design in drive systems: - in PC-based

More information

Scilab4.1.2 PartIII:SystemsandControl

Scilab4.1.2 PartIII:SystemsandControl Scilab 4.1.2 Part III: Systems and Control p. 1 Scilab4.1.2 PartIII:SystemsandControl Gianluca Antonelli Stefano Chiaverini Università degli Studi di Cassino {antonelli,chiaverini}@unicas.it http://webuser.unicas.it/antonelli

More information

FDP on Electronic Design Tools Matlab for Control System Modeling 13/12/2017. A hands-on training session on

FDP on Electronic Design Tools Matlab for Control System Modeling 13/12/2017. A hands-on training session on A hands-on training session on MATLAB for Control System Modeling in connection with the FDP on Electronic Design Tools @ GCE Kannur 11 15 December 2017 Resource Person : Dr. A. Ranjith Ram Associate Professor,

More information

Introduction to Matlab Simulink. Control Systems

Introduction to Matlab Simulink. Control Systems Introduction to Matlab Simulink & their application in Control Systems ENTC 462 - Spring 2007 Introduction Simulink (Simulation and Link) is an extension of MATLAB by Mathworks Inc. It works with MATLAB

More information

Vom Konzept zum Modell physikalischer Systeme Smarter Modellieren mit Simscape

Vom Konzept zum Modell physikalischer Systeme Smarter Modellieren mit Simscape Vom Konzept zum Modell physikalischer Systeme Smarter Modellieren mit Simscape A B T P T + - 12V Up V- V+ Down Up Down M Maximilian Apfelbeck MathWorks München, 9.07.2014 2014 The MathWorks, Inc. 1 Key

More information

Department of Electrical Engineering. Indian Institute of Technology Dharwad EE 303: Control Systems Practical Assignment - 6

Department of Electrical Engineering. Indian Institute of Technology Dharwad EE 303: Control Systems Practical Assignment - 6 Department of Electrical Engineering Indian Institute of Technology Dharwad EE 303: Control Systems Practical Assignment - 6 Adapted from Take Home Labs, Oklahoma State University Root Locus Design 1 OBJECTIVE

More information

SIMULINK A Tutorial by Tom Nguyen

SIMULINK A Tutorial by Tom Nguyen Introduction SIMULINK A Tutorial by Tom Nguyen Simulink (Simulation and Link) is an extension of MATLAB by Mathworks Inc. It works with MATLAB to offer modeling, simulating, and analyzing of dynamical

More information

Introduction to programming in MATLAB

Introduction to programming in MATLAB Master Degree Course in ELECTRONICS ENGINEERING http://www.dii.unimore.it/~lbiagiotti/systemscontroltheory.html Introduction to programming in MATLAB e-mail: luigi.biagiotti@unimore.it http://www.dii.unimore.it/~lbiagiotti

More information

Model Predictive Control System Design and Implementation Using MATLAB

Model Predictive Control System Design and Implementation Using MATLAB Liuping Wang Model Predictive Control System Design and Implementation Using MATLAB Springer List of Symbols and Abbreviations xxvii 1 Discrete-time MPC for Beginners 1 1.1 Introduction 1 1.1.1 Day-to-day

More information

ELEC 341 Project Selective Laser Sintering 3D Printer The University of British Columbia

ELEC 341 Project Selective Laser Sintering 3D Printer The University of British Columbia ELEC 341 Project 2017 - Selective Laser Sintering 3D Printer The University of British Columbia In selective laser sintering (SLS), 3D parts are built by spreading a thin layer of metallic powder over

More information

User s Manual for PZGui, v.8.0.xx

User s Manual for PZGui, v.8.0.xx User s Manual for PZGui, v.8.0.xx (Pole/Zero Graphical-user-interface) a Matlab Toolbox by Prof. Mark A. Hopkins, Ph.D. Electrical & Microelectronic Engineering Department Kate Gleason College of Engineering

More information

Parameter Estimation and Model Order Identification of LTI Systems

Parameter Estimation and Model Order Identification of LTI Systems Preprint, 11th IFAC Symposium on Dynamics and Control of Process Systems, including Biosystems Parameter Estimation and Model Order Identification of LTI Systems Santhosh Kumar Varanasi, Phanindra Jampana

More information

Non Linear Control of Four Wheel Omnidirectional Mobile Robot: Modeling, Simulation and Real-Time Implementation

Non Linear Control of Four Wheel Omnidirectional Mobile Robot: Modeling, Simulation and Real-Time Implementation Non Linear Control of Four Wheel Omnidirectional Mobile Robot: Modeling, Simulation and Real-Time Implementation eer Alakshendra Research Scholar Robotics Lab Dr Shital S.Chiddarwar Supervisor Robotics

More information

Integrating Mechanical Design and Multidomain Simulation with Simscape

Integrating Mechanical Design and Multidomain Simulation with Simscape 1 Integrating Mechanical Design and Multidomain Simulation with Simscape 강효석과장 / Ph. D. Application Engineer MathWorks Korea 2017 The MathWorks, Inc. 2 In this session Onshape and MATLAB enable engineers

More information

MAC-3xx Core. Application. As the result, we deliver any customized SPEC Off-the-Shelf

MAC-3xx Core. Application. As the result, we deliver any customized SPEC Off-the-Shelf MAC-3xx Core 333MHz (3ns) ADSP-21362 SHARC DSP 2.0 GigaFLOP s, SIMD Core IEEE-compatible 32-bit floating-point, 40-bit extended floating-point 64 bit memory mapping format 80 bit MAC Instructions 200 MHz,

More information

Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems

Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems Gernot Schraberger Industry Manager, Europe Industrial Automation & Machinery, Energy Production MathWorks 2012 The

More information

BRUSH UP ON MATLAB UNIVERSITY OF PAVIA. Industrial Control FACULTY OF ENGINEERING. Prof. Lalo Magni

BRUSH UP ON MATLAB UNIVERSITY OF PAVIA. Industrial Control FACULTY OF ENGINEERING. Prof. Lalo Magni UNIVERSITY OF PAVIA FACULTY OF ENGINEERING Industrial Control Prof. Lalo Magni BRUSH UP ON MATLAB Chiara Toffanin, Assistant Professor Gian Paolo Incremona, Ph.D. MATLAB: What is it? MATLAB (from MATrix

More information

Exercises Unit 4. Graphics User Interface

Exercises Unit 4. Graphics User Interface Exercises Unit 4. Graphics User Interface Working period: Seventh and Eighth weeks Due date: 21 April 2013 Submit only one file name_e4.pdf containing the solution to the following exercises. Include the

More information

Open Loop Step Response

Open Loop Step Response TAKE HOME LABS OKLAHOMA STATE UNIVERSITY Open Loop Step Response by Sean Hendrix revised by Trevor Eckert 1 OBJECTIVE The objective is to find a first-order model for a DC motor using the open loop step

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

Importing Models from Physical Modeling. Tools Using the FMI Standard

Importing Models from Physical Modeling. Tools Using the FMI Standard Importing Models from Physical Modeling Tools Using the FMI Standard Overview The objective of this tutorial is to demonstrate the workflow for the integration of FMUs in DYNA4. The following use case

More information

Real-Time & Feedback Control. Moris Behnam

Real-Time & Feedback Control. Moris Behnam Real-Time & Feedback Control Moris Behnam Outline Introduction Feedback control Real-time and control systems Using control theories in real-time scheduling Introduction Control systems constitute an important

More information

Multivariate Controller Performance Assessment

Multivariate Controller Performance Assessment University of Alberta Computer Process Control Group Multivariate Controller Performance Assessment Limited Trial Version Written by: CPC Control Group, University of Alberta Version 2.1 Table of Contents

More information

IMPLEMENTATION OF BALL-AND-BEAM CONTROL SYSTEM AS AN INSTANCE OF SIMULINK TO 32-BIT MICROCONTROLLER INTERFACE

IMPLEMENTATION OF BALL-AND-BEAM CONTROL SYSTEM AS AN INSTANCE OF SIMULINK TO 32-BIT MICROCONTROLLER INTERFACE POZNAN UNIVE RSITY OF TE CHNOLOGY ACADE MIC JOURNALS No 76 Electrical Engineering 2013 Krzysztof NOWOPOLSKI* IMPLEMENTATION OF BALL-AND-BEAM CONTROL SYSTEM AS AN INSTANCE OF SIMULINK TO 32-BIT MICROCONTROLLER

More information

SIMULINK Tutorial. Select File-New-Model from the menu bar of this window. The following window should now appear.

SIMULINK Tutorial. Select File-New-Model from the menu bar of this window. The following window should now appear. SIMULINK Tutorial Simulink is a block-orientated program that allows the simulation of dynamic systems in a block diagram format whether they are linear or nonlinear, in continuous or discrete forms. To

More information

2 SIMULATING A MODEL Simulink Tutorial

2 SIMULATING A MODEL Simulink Tutorial 2 SIMULATING A MODEL Simulink Tutorial 1 Introduction Simulation of dynamic systems has been proven to be immensely useful in system modeling and controller design. Simulink R is a add-on to MATLAB which

More information

Menu-driven Graphical Interface for MATLAB Control Design*

Menu-driven Graphical Interface for MATLAB Control Design* Int. J. Engng Ed. Vol. 16, No. 6, pp. 544±552, 2000 0949-149X/91 $3.00+0.00 Printed in Great Britain. # 2000 TEMPUS Publications. Menu-driven Graphical Interface for MATLAB Control Design* E. K. ONG and

More information

Lecture abstract. EE C128 / ME C134 Feedback Control Systems. Chapter outline. Intro, [1, p. 664] Lecture Chapter 12 Design via State Space

Lecture abstract. EE C128 / ME C134 Feedback Control Systems. Chapter outline. Intro, [1, p. 664] Lecture Chapter 12 Design via State Space EE C18 / ME C134 Feedback Control Systems Lecture Chapter 1 Design via State Space Lecture abstract Alexandre Bayen Department of Electrical Engineering & Computer Science University of California Berkeley

More information

Physical Modelling with Simscape

Physical Modelling with Simscape Physical Modelling with Simscape Rick Hyde Control Electrical Embedded Software Mechanical 2015 The MathWorks, Inc. 1 Presentation overview Modelling physical systems Why model a physical system? Network

More information

Model-based Design/Simulation

Model-based Design/Simulation Fast development of controllers and sequence controllers The MATLAB program package and the associated toolbox, Simulink from Mathworks Inc. are considered to be the worldwide standard in the area of modeling

More information

LQG Benchmark for Performance Assessment: Subspace Approach

LQG Benchmark for Performance Assessment: Subspace Approach University of Alberta Computer Process Control Group LQG Benchmark for Performance Assessment: Subspace Approach Limited Trial Version Written by CPC Control Group, University of Alberta Version 2.0 Table

More information

The Cantor Handbook. Alexander Rieder

The Cantor Handbook. Alexander Rieder Alexander Rieder 2 Contents 1 Introduction 5 2 Using Cantor 6 2.1 Cantor features....................................... 6 2.2 The Cantor backends.................................... 7 2.3 The Cantor Workspace...................................

More information

System Identification Toolbox Getting Started Guide

System Identification Toolbox Getting Started Guide System Identification Toolbox Getting Started Guide Lennart Ljung R2015a How to Contact MathWorks Latest news: www.mathworks.com Sales and services: www.mathworks.com/sales_and_services User community:

More information

Exercise: State-space models

Exercise: State-space models University College of Southeast Norway Exercise: State-space models A state-space model is a structured form or representation of a set of differential equations. Statespace models are very useful in Control

More information

MATLAB MODULES FOR CONTROL SYSTEM PRINCIPLES AND DESIGN

MATLAB MODULES FOR CONTROL SYSTEM PRINCIPLES AND DESIGN MATLAB MODULES FOR CONTROL SYSTEM PRINCIPLES AND DESIGN Welcome to the MATLAB Modules for Control Systems Principles and Design. They are designed to help you learn how to use MATLAB for the analysis and

More information

Integrating Mechanical Design and Multidomain Simulation with Simscape

Integrating Mechanical Design and Multidomain Simulation with Simscape Integrating Mechanical Design and Multidomain Simulation with Simscape Steve Miller Simscape Product Manager, MathWorks 2015 The MathWorks, Inc. 1 Integrating Mechanical Design and Multidomain Simulation

More information

Justin s Guide to Good Lab Writing

Justin s Guide to Good Lab Writing General Formatting: Justin s Guide to Good Lab Writing Different sections of the lab report should be easy to distinguish. (Just look at this document) o Section titles should NOT be separated from content

More information

What s New in Simulink in R2015b and R2016a

What s New in Simulink in R2015b and R2016a What s New in Simulink in R2015b and R2016a Ruth-Anne Marchant Application Engineer 2016 The MathWorks, Inc. 1 2 Summary of Major New Capabilities for Model-Based Design RESEARCH REQUIREMENTS DESIGN Modelling

More information

UNIVERSITI TEKNIKAL MALAYSIA MELAKA FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER

UNIVERSITI TEKNIKAL MALAYSIA MELAKA FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER UNIVERSITI TEKNIKAL MALAYSIA MELAKA FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER BENC 2113 DENC ECADD 2532 ECADD LAB SESSION 6/7 LAB

More information

jmpc Toolbox v3.11 User s Guide

jmpc Toolbox v3.11 User s Guide Industrial Information & Control Centre jmpc Toolbox v3.11 User s Guide Jonathan Currie AUT University email: jonathan.currie@aut.ac.nz July 5, 2011 Contents 1 Introduction 2 1.1 Overview.............................................

More information

Introduction to the MATLAB SIMULINK Program

Introduction to the MATLAB SIMULINK Program Introduction to the MATLAB SIMULINK Program Adapted from similar document by Dept. of Chemical Engineering, UC - Santa Barbara MATLAB, which stands for MATrix LABoratory, is a technical computing environment

More information

Modeling Mechanical, Electric, and Hydraulic Systems in Simulink

Modeling Mechanical, Electric, and Hydraulic Systems in Simulink Modeling Mechanical, Electric, and Hydraulic Systems in Simulink 2006 The MathWorks, Inc. Terry Denery, Ph.D. Physics-Based Modeling Tools Physics-Based Modeling Methods Improve Control System Design u

More information

International Journal of Emerging Technology and Advanced Engineering Website: (ISSN , Volume 2, Issue 6, June 2012)

International Journal of Emerging Technology and Advanced Engineering Website:   (ISSN , Volume 2, Issue 6, June 2012) MATLAB as a Substitute for Analysis of Transient Response of Dc Motor without Having Number of Machine. Mr. P. J. Kotak 1, Miss.P.R.Gadling 2 1 M.Tech student, SSSIST Sehore (M.P) 2 Lecturer at L.A.M.I.T.

More information

Lab # 8 Parallel Port Interface with LabView & Root Locus Design

Lab # 8 Parallel Port Interface with LabView & Root Locus Design Islamic University of Gaza Faculty of Engineering Computer Engineering Dep. Feedback Control Systems Lab Eng. Tareq Abu Aisha Lab # 8 Lab # 8 Parallel Port Interface with LabView & Root Locus Design Introduction:

More information

Simulink Basics Tutorial

Simulink Basics Tutorial 1 of 20 1/11/2011 5:45 PM Starting Simulink Model Files Basic Elements Running Simulations Building Systems Simulink Basics Tutorial Simulink is a graphical extension to MATLAB for modeling and simulation

More information

Design and Development of a Generic, Platform Independent MoSART Environment

Design and Development of a Generic, Platform Independent MoSART Environment Design and Development of a Generic, Platform Independent MoSART Environment Musti K. S. Sastry, Richard Balgobin Abstract This paper describes a new approach for the development of Modeling, Simulation,

More information

Mechanical System and SimMechanics Simulation

Mechanical System and SimMechanics Simulation American Journal of Mechanical Engineering, 3, Vol., No. 7, 555 Available online at http://pubs.sciepub.com/ajme//7/ Science and Education Publishing DOI:.69/ajme--7 Mechanical System and SimMechanics

More information

Design of Fuzzy Logic Controller for Speed Regulation of BLDC motor using MATLAB

Design of Fuzzy Logic Controller for Speed Regulation of BLDC motor using MATLAB IJSRD - International Journal for Scientific Research & Development Vol. 1, Issue 2, 2013 ISSN (online): 2321-0613 Design of Fuzzy Logic Controller for Speed Regulation of BLDC motor using MTLB 1 Mr. Rakesh

More information

Controlling Hybrid Systems

Controlling Hybrid Systems Controlling Hybrid Systems From Theory to Application Manfred Morari M. Baotic, F. Christophersen, T. Geyer, P. Grieder, M. Kvasnica, G. Papafotiou Lessons learned from a decade of Hybrid System Research

More information

LEARNING TO PROGRAM WITH MATLAB. Building GUI Tools. Wiley. University of Notre Dame. Craig S. Lent Department of Electrical Engineering

LEARNING TO PROGRAM WITH MATLAB. Building GUI Tools. Wiley. University of Notre Dame. Craig S. Lent Department of Electrical Engineering LEARNING TO PROGRAM WITH MATLAB Building GUI Tools Craig S. Lent Department of Electrical Engineering University of Notre Dame Wiley Contents Preface ix I MATLAB Programming 1 1 Getting Started 3 1.1 Running

More information

Modelling and Simulation for Engineers

Modelling and Simulation for Engineers Unit T7: Modelling and Simulation for Engineers Unit code: F/503/7343 QCF level: 6 Credit value: 15 Aim This unit gives learners the opportunity to develop their understanding of Ordinary Differential

More information

Control Systems Laboratory Manual Hardware and Software Overview. 2 Hardware Equipment. 2.1 Analog Plant Simulator (EE357 Only)

Control Systems Laboratory Manual Hardware and Software Overview. 2 Hardware Equipment. 2.1 Analog Plant Simulator (EE357 Only) 1 Introduction Control Systems Laboratory Manual Hardware and Software Overview The undergraduate Control Systems Lab is located in ETLC E5-006. In the lab, there are 15 PCs equipped with data acquisition

More information

Virtuelle Inbetriebnahme und Optimierung von Robotersystemen mit Simscape The MathWorks, Inc. 1

Virtuelle Inbetriebnahme und Optimierung von Robotersystemen mit Simscape The MathWorks, Inc. 1 Virtuelle Inbetriebnahme und Optimierung von Robotersystemen mit Simscape 2015 The MathWorks, Inc. 1 In this session Onshape and MATLAB enable engineers to combine CAD models with multidomain, dynamic

More information

CONSCIENCE TECHNOLOGIES A Right Platform For All Engineers... CODE B.TECH EEE MAT LAB PROJECT TITLE

CONSCIENCE TECHNOLOGIES A Right Platform For All Engineers... CODE B.TECH EEE MAT LAB PROJECT TITLE CODE B.TECH EEE MAT LAB PROJECT TITLE 2015-16 CT EEE 001 CT EEE 002 CT EEE 003 CT EEE 004 CT EEE 005 ACTIVE BUCK BOOST INVERTER FUZZY LOGIC CONTROLLER BASED SEPIC CONVERTER FOR MAXIMUM POWER POINT TRACKING

More information

Networked control methods robust to jitter and their evaluation by inverted pendulum

Networked control methods robust to jitter and their evaluation by inverted pendulum Networked control methods robust to jitter and their evaluation by inverted pendulum Naotoshi Adachi, Ken Aida, Masuhiro Nitta, and Kenji Sugimoto {naotos-a, ken-a, masuhi-n, kenji} @is.aist-nara.ac.jp

More information

Robot. A thesis presented to. the faculty of. In partial fulfillment. of the requirements for the degree. Master of Science. Zachary J.

Robot. A thesis presented to. the faculty of. In partial fulfillment. of the requirements for the degree. Master of Science. Zachary J. Uncertainty Analysis throughout the Workspace of a Macro/Micro Cable Suspended Robot A thesis presented to the faculty of the Russ College of Engineering and Technology of Ohio University In partial fulfillment

More information

Table of Contents. Introduction.*.. 7. Part /: Getting Started With MATLAB 5. Chapter 1: Introducing MATLAB and Its Many Uses 7

Table of Contents. Introduction.*.. 7. Part /: Getting Started With MATLAB 5. Chapter 1: Introducing MATLAB and Its Many Uses 7 MATLAB Table of Contents Introduction.*.. 7 About This Book 1 Foolish Assumptions 2 Icons Used in This Book 3 Beyond the Book 3 Where to Go from Here 4 Part /: Getting Started With MATLAB 5 Chapter 1:

More information

Dynamic Analysis of Manipulator Arm for 6-legged Robot

Dynamic Analysis of Manipulator Arm for 6-legged Robot American Journal of Mechanical Engineering, 2013, Vol. 1, No. 7, 365-369 Available online at http://pubs.sciepub.com/ajme/1/7/42 Science and Education Publishing DOI:10.12691/ajme-1-7-42 Dynamic Analysis

More information

SIMULINK FOR BEGINNERS:

SIMULINK FOR BEGINNERS: 1 SIMULINK FOR BEGINNERS: To begin your SIMULINK session open first MATLAB ICON by clicking mouse twice and then type»simulink You will now see the Simulink block library. 2 Browse through block libraries.

More information

Parameter Estimation of a DC Motor-Gear-Alternator (MGA) System via Step Response Methodology

Parameter Estimation of a DC Motor-Gear-Alternator (MGA) System via Step Response Methodology American Journal of Applied Mathematics 2016; 4(5): 252-257 http://www.sciencepublishinggroup.com/j/ajam doi: 10.11648/j.ajam.20160405.17 ISSN: 2330-0043 (Print); ISSN: 2330-006X (Online) Parameter Estimation

More information

Model-based Design/Simulation

Model-based Design/Simulation Fast development of controllers and sequence controllers The MATLAB program package and the associated toolbox, Simulink from Mathworks Inc. are considered to be the worldwide standard in the area of modeling

More information

Middleware-based distributed heterogeneous simulation

Middleware-based distributed heterogeneous simulation 1 Middleware-based distributed heterogeneous simulation Cecil Bruce-Boye 1, Dmitry A. Kazakov 2, Helge Colmorgen 3, Rüdiger zum Beck 4, Jehan Z. Hassan 5 and Harald Wojtkowiak 6 Abstract In this paper

More information

Session 3 Introduction to SIMULINK

Session 3 Introduction to SIMULINK Session 3 Introduction to SIMULINK Brian Daku Department of Electrical Engineering University of Saskatchewan email: daku@engr.usask.ca EE 290 Brian Daku Outline This section covers some basic concepts

More information

DESIGN AND IMPLEMENTATION OF VISUAL FEEDBACK FOR AN ACTIVE TRACKING

DESIGN AND IMPLEMENTATION OF VISUAL FEEDBACK FOR AN ACTIVE TRACKING DESIGN AND IMPLEMENTATION OF VISUAL FEEDBACK FOR AN ACTIVE TRACKING Tomasz Żabiński, Tomasz Grygiel, Bogdan Kwolek Rzeszów University of Technology, W. Pola 2, 35-959 Rzeszów, Poland tomz, bkwolek@prz-rzeszow.pl

More information

Login your clickers & NO calculators. Get the 4.1 checkpoint from the brown table and answer the questions.

Login your clickers & NO calculators. Get the 4.1 checkpoint from the brown table and answer the questions. Login your clickers & NO calculators. Get the 4.1 checkpoint from the brown table and answer the questions. Nov 3 4:18 PM 1 Do you plan on doing chapter 3 test corrections? Yes No Nov 3 4:19 PM 1 Algebra

More information

Fundamentals of Inverse Kinematics Using Scara Robot

Fundamentals of Inverse Kinematics Using Scara Robot Fundamentals of Inverse Kinematics Using Scara Robot Overview of SCARA Bot: The 2 Degree of freedom (DOF) Selective Compliance Articulate Robotic Arm (SCARA) (Selective Compliance Articulated Robot Arm)

More information

Training Systems for Power Electronics

Training Systems for Power Electronics Training Systems for Power Electronics The Key Technology for Electrical Drives Multimedia Learning, Experimenting, Programming and Researching Connection via USB and LN-Toolbox to Matlab /Simulink Making

More information

CASE STUDY : Transient Stability Simulation Package

CASE STUDY : Transient Stability Simulation Package CASE STUDY : Transient Stability Simulation Package CLIENT NAME : A major T&D solutions provider in the world END CUSTOMER : A public T&D utility in one of the SAARC nations PROJECT TITLE : Customized

More information