Example 2-2: Multi-DOF mechanical systems

Slides:



Advertisements
Similar presentations
Unit 4 The Performance of Second Order System Open Loop & Close Loop Open Loop: Close Loop:
Advertisements

PID Control for Embedded Systems
INDUSTRIAL AUTOMATION (Getting Started week -1). Contents PID Controller. Implementation of PID Controller. Response under actuator Saturation. PID with.
CHE 185 – PROCESS CONTROL AND DYNAMICS
Proportional, Integral, Derivative Line Following October 5, 2013.
Part IV :Enhancements to Single-Loop PID Feedback Control
Pulse Width Modulation and Motor Control
 A  p q B  C D  r F G E t I J H s u K    P.
SIMULATION OF 2-DOF HELICOPTER RESULTS Maryam Alizadeh June 29 th
TCS3 Servo System Proposed Design. Why Model? Meet Resolution Requirements What Resolution Encoder to use? Velocity Configuration PID Values Wind Loading.
1 Control System Using LabVIEW Performed by: Goldfeld Uri Schwartz David Project instructor: Alkalay Daniel Reuben Amir Technion – Israel Institute of.
ECE 4951 Lecture 5: PID Control of Processes. PID Control A closed loop (feedback) control system, generally with Single Input-Single Output (SISO) A.
Flight Control Dynamics & UAVs. Outline Their history Basic flight controls Roll Pitch Their benefits Where they are headed Questions.
Improving A PID Controller Using Fuzzy Logic Andrew Thompson Ni Li Ara Tchobanian Professor: Riadh Habash TA: Hanliu Chen.
Adaptive Cruise Control (ACC)
Team: James Mazza, Andre Berwin, Peter Dunning, Nathan Fulcher, Andrew Watson, Travis Bardsley, Anthony Parker April 5, 2013.
Chapter 3 mathematical Modeling of Dynamic Systems
ME 335 Boğaziçi University A Study on Motor Speed Control.
Basic Concepts  Block diagram representation of control systems  Transfer functions  Analysis of block diagrams  P, PI and PID controllers ( Continuous.
Advanced Control of Marine Power System
CLOSED LOOP CONTROL OF DC DRIVES. Controller Requirements  Fast tracking capability  Less steady state error  Robust to load disturbance during steady.
Final Project ME 270 NASA CDSL 6-DOF Platform Jesse Kaneko.
Observer-Based Robot Arm Control System Nick Vogel, Ron Gayles, Alex Certa Advised by: Dr. Gary Dempsey.
PID. The proportional term produces an output value that is proportional to the current error value. Kp, called the proportional gain constant.
Implementing PID on a microcontroller
1 Apply Lyaponove function to design the observer Advisor: Ming-Shyan Wang Presenter: Hanh Nguyen Thi.
2.1 Step Input Response: Eigenvalues: p 1 =-4.526, p 2,3 = ±2.7883i, p 4 = Final value theorem: Stability: If the step response reaches to.
BIRLA VISHWAKARMA MAHAVIDHYALAYA ELECTRONICS & TELECOMUNICATION DEPARTMENT o – ANKUR BUSA o – KHUSHBOO DESAI UNDER THE GUIDENCE.
Date of download: 7/8/2016 Copyright © 2016 SPIE. All rights reserved. Simulation results using the hill-climbing algorithm for comparison with Fig. 3.
EEN-E1040 Measurement and Control of Energy Systems Control I: Control, processes, PID controllers and PID tuning Nov 3rd 2016 If not marked otherwise,
PID Control for Embedded Systems
Component models – RAND MODEL DESIGNER 7 Component models –
Salman Bin Abdulaziz University
Automatic control systems III
Chapter 7 The Root Locus Method The root-locus method is a powerful tool for designing and analyzing feedback control systems The Root Locus Concept The.
Control engineering and signal processing
VSI FED INDUCTION MOTOR DRIVE
Date of download: 11/4/2017 Copyright © ASME. All rights reserved.
Minor Project - Human Interaction Robot Arm
Autopilot Design Points of Discussion
Lecture 20: Root Locus for Design
University of Bridgeport
6: Processor-based Control Systems
Basic Design of PID Controller
Beyond p-only control via root locus
MATLAB/SIMULINK Professor Walter W. Olson
Example: Obtain the equation of motion of the mechanical system given below. Write the form of the output θ(t) in case of free vibration and determine.
RiSE State-Based Voltage Control
HW-03 Problem Kuo-95 (p. 377) Find the steady-state errors for step, ramp and parabolic inputs. Determine the type of the system. ) s ( R Problem.
قوانين برگزاري مناقصات و آيين نامه مالي و معاملاتي دانشگاه علوم پزشكي و خدمات بهداشتي ،درماني تهران
Chapter 9. Design of Control Systems
4. Closed-Loop Responses Using the Laplace Transform Method
7b. PID Controller Design
System models Time domain models
9. Frequency-Domain Analysis
E(s): Laplace transform of the error e(t)
7. Stability [Ref:Rao] 7.1 System stability
Introduction to Control Systems
Cable-driven system diagram for structure matrix.
3.Closed-Loop Transfer Functions
CONTROL OF MOBILE ROBOT
Generating Block Diagrams
Homework-2.1: 1-DOF quarter car model.
Find the closed-loop transfer function in terms of Gİ.
Homework 7-1: Design PID controller for cruise control.
o Problem Reconsider Problem
H(s) Transfer Function: f(t): input x(t): response f(t) fz(t)
HOMEWORK-03 Problem Kuo-95 (p. 377)
Homework 1.1: Cruise control for a car.
The Design of Feedback Control Systems
Presentation transcript:

Example 2-2: Multi-DOF mechanical systems k2 c2 k1 c1 f1: Control Force f2: Disturbance (External force) DEU-MEE 5017 Advanced Automatic Control

clc,clear m1=1.2;m2=1;k1=350;k2=300;c1=4;c2=3; m=[m1,0;0,m2]; c=[c1+c2,-c2;-c2,c2]; k=[k1+k2,-k2;-k2,k2]; syms s; a=[s^2*m+s*c+k]; h=inv(a);pretty(h)

Block diagram of closed loop system: P, PI, PD, PID control Study the PID control with MATLAB/Simulink Block diagram of open loop system:

Simulation with MATLAB/Simulink: Kp=250, Ki=150 Kd=10 Kp=1, Ki=400 Kd=15 Kp=250, Ki=300 Kd=10