Download presentation
Presentation is loading. Please wait.
Published byStephany Haynes Modified over 8 years ago
1
President UniversityErwin SitompulSMI 6/1 Lecture 6 System Modeling and Identification Dr.-Ing. Erwin Sitompul President University http://zitompul.wordpress.com 2014
2
President UniversityErwin SitompulSMI 6/2 Chapter 3State Space Process Models Homework 5 A linear time-invariant system is given as below: a)Calculate the eigenvalues and the eigenvectors of the system. b)A second order model is now wished to approximate the system. The second and the third state are chosen to be the significant states. Perform the Order Reduction based on the chosen significant states. Regarding the Dominance Measure, which eigenvalues of the original model should be considered in the new reduced-order model? c)Write the complete reduced-order model in state space form. Hint: This model must be a second order model.
3
President UniversityErwin SitompulSMI 6/3 Chapter 3State Space Process Models Solution to Homework 5
4
President UniversityErwin SitompulSMI 6/4 Chapter 3State Space Process Models Solution to Homework 5
5
President UniversityErwin SitompulSMI 6/5 Chapter 3 The equivalence transformation is done, with x = T z. As the result, we obtain a state space in canonical form, State Space Process Models Solution to Homework 5
6
President UniversityErwin SitompulSMI 6/6 n=3 k=[1…n] m=1 j=[1…m] r=2 i=[1…r] Chapter 3State Space Process Models Solution to Homework 5
7
President UniversityErwin SitompulSMI 6/7 Dominant Chapter 3State Space Process Models Solution to Homework 5
8
President UniversityErwin SitompulSMI 6/8 Chapter 3State Space Process Models Solution to Homework 5
9
President UniversityErwin SitompulSMI 6/9 Chapter 4 Dynamical Behavior of Processes System Modeling and Identification
10
President UniversityErwin SitompulSMI 6/10 Chapter 4Dynamical Behavior of Processes System Representation Using s-Function We already know that in Matlab-Simulink we can construct a mathematical model by using the available components in the Simulink library. By using an s-Function, it is also possible to compose a model by directly using the mathematical equations of the model. The s-Function is written according to a certain form that must be followed, so that the function can be executed. The mathematical model can be written in differential or difference equation, making it possible to implement s-Function in both continuous and discrete systems. To find the component shown above, in Matlab-Simulink, go to “User Defined Function”, and drag the suitable component.
11
President UniversityErwin SitompulSMI 6/11 Chapter 4Dynamical Behavior of Processes System Representation Using s-Function In Matlab workspace, type “edit sfuntmpl” to open the template of s-Function.
12
President UniversityErwin SitompulSMI 6/12 Chapter 4Dynamical Behavior of Processes System Representation Using s-Function function [sys,x0,str,ts] = model_name(t,x,u,flag);% SFUNTMPL General S-function template switch flag, case 0, [sys,x0,str,ts]=mdlInitializeSizes; % Assignment of Sizes and Initial Conditions case 1, sys=mdlDerivatives(t,x,u);% Return the derivatives of the states case 3, sys=mdlOutputs(t,x,u);% Return the outputs end function [sys,x0,str,ts]=mdlInitializeSizes; % Assignment of Sizes and Initial Conditions sizes = simsizes; sizes.NumContStates = 2; sizes.NumDiscStates = 0;% Leave unchanged sizes.NumOutputs = 1; sizes.NumInputs = 3; sizes.DirFeedthrough = 0;% Leave unchanged sizes.NumSampleTimes = 1; % Leave unchanged sys = simsizes(sizes); x0 = zeros(2,1); % Assignment of Initial conditions str = []; % Leave unchanged ts = [0 0]; % Leave unchanged function sys=mdlDerivatives(t,x,u); % Return the derivatives of the states c = 5.0; % Definition of constants d = 0.25; sys(1) = 4*u(1) - c*x(1); % First state equation sys(2) = u(2) + u(3)/x(2) + d*x(1);% Second state equation function sys=mdlOutputs(t,x,u); % Return the outputs sys = x(2); % The output is the second state
13
President UniversityErwin SitompulSMI 6/13 The highlighted parts are the main frame of an s-function. The file itself can be written in Matlab m-file editor or in a Notepad, and saved with a unique name, for example conic_tank.m. The same name must be inserted in the Simulink window, after clicking the s-Function box. Chapter 4Dynamical Behavior of Processes System Representation Using s-Function The flag assignments are fixed and given by Matlab. Each flag will be called sequentially as Matlab process the simulation. case 0, [sys,x0,str,ts]=mdlInitializeSizes; "Assignment of Sizes and Initial Conditions" case 1, sys=mdlDerivatives(t,x,u); "Return the derivatives of the states" case 3, sys=mdlOutputs(t,x,u); "Return the outputs" In each section, specific variables assigned in the name of sys will be returned. For example, in section with abs(flag) == 1, sys(1) is the derivative of the states x(1). In section with abs(flag) == 3, sys(1) is the first output.
14
President UniversityErwin SitompulSMI 6/14 Type “edit” in Matlab workspace to open the m-file editor. Copy and paste the s-Function template as given on the previous slide to the m-file. Edit the m-file, give distinctive name, and save it in your active folder (the folder where you normally save your Matlab-Simulink file). This time, you need to include the active folder in the path by clicking File>>Set Path in Matlab workspace so that Matlab can access your m-file properly. You can also use Notepad to edit the m-File, but do not forget to save with the extension.m. Chapter 4Dynamical Behavior of Processes Some Hints in Writing s-Function
15
President UniversityErwin SitompulSMI 6/15 v1v1 The single-tank system which is already familiar for us consists of one differential equation: s-Function of Single-Tank System qiqi qo qo V h Chapter 4Dynamical Behavior of Processes
16
President UniversityErwin SitompulSMI 6/16 s-Function of Single-Tank System Chapter 4Dynamical Behavior of Processes
17
President UniversityErwin SitompulSMI 6/17 s-Function of Single-Tank System Chapter 4Dynamical Behavior of Processes Direct Comparison Between Component Model and s-Function Model
18
President UniversityErwin SitompulSMI 6/18 Homework 6 Chapter 4Dynamical Behavior of Processes Construct an s-Function model of the interacting tank-in-series system and compare its simulation result with the simulation result of the component model from Homework 2. For the tanks, use the same parameters as in Homework 2. The required initial conditions are: h 1,0 = 20 cm, h 2,0 = 40 cm. v1v1 qiqi h1h1 h2h2 v2v2 q1 q1 a1 a1 a2 a2 qo qo Deadline: The lecture session following the mid-term examination. Send the softcopy and submit the hardcopy on time.
19
President UniversityErwin SitompulSMI 6/19 Homework 6A Chapter 4Dynamical Behavior of Processes Construct an s-Function model of the triangular-prism-shaped tank system and compare its simulation result with the simulation result of the component model from Homework 2A. For the tanks, use the same parameters as in Homework 2A. v q i1 qo qo a q i2 h max h Deadline: The lecture session following the mid-term examination. Send the softcopy and submit the hardcopy on time.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.