You are on page 1of 12

INSTITUTE OF SPACE TECHNOLOGY

FLIGHT CONTROL SYTEM

ASSIGNMENT # 6

Submitted By:

Mesum Ali Irfani

170101016

Aero 16-A

Submitted to: Dr. Jamshed Riaz

Department of Aeronautics and Astronautics

Date Submitted: 18th April , 2020


Simulink Model of Lateral SAS

We took the system as given in the lecture slides .This system is for two inputs and two outputs
(yaw rate and bank angle ) and two inputs (rudder and aileron).
We first feed the system in the Matlab editor to use it in the LTI system in SIMULINK.

This System would be used for the analysis and creation of an augmentation system.
CHARACTERISTICS Of THE POLES

INITIAL OPEN LOOP RESPONSE :

We have to make the characteristics such that it matches the Handling Quality requirements
INITIAL STEP RESPONSE:

OPEN LOOP MODEL IN SIMULINK

Here we used LTI block for sys and Demux to separate the two outputs . Mux is used to combine
the 2 input to feed them to the LTI system . We have marked the Rudder Input as Input
perturbation from linear analysis point in SIMULINK ,Scope are used to see the response.
INITIAL RESPONSE ON THE SCOPE

ADDED YAW RATE FEEDBACK LOOP


Here we have used a gain and make a yaw rate feedback system (a positive feedback). To
Workspace exports the data to Wokspace.
CONTROL SYSTEM DESIGNER :
Here Compensator gain were changed to get the desired output

ROOT LOCUS:

We see that the Damping


ratio is 0.44 and
Frequency is 0.692

These meet our


requirements
RESPONSE AFTER FEEDBACK and GAIN VARIATION

RESPONSE ON SCOPE :
IMPULSE RESPONSE OF THE WHOLE SYSTEM :
Response of Bank Angle to Aileron Transfer Function

We see that spiral mode is over stabilized and becomes zero , which is not acceptable to the
pilots.
We will try to decrease some stability to make the spiral mode such that it does not
returns to Zero. For this purpose we will use washout filter

ADDITION OF WASHOUT FILTER :


We add a washout filter with transfer function (s/s+0.2) with gain 1
ROOT LOCUS FOR NEW CONFIGURATION :

SCOPE
RESPONSES AFTER WASHOUT FILTER
SPIRAL MODE RESPONSE LESS STABLE

MATLAB CODE:

A=[-0.0558 -0.9968 0.0802 0.0415;.598 -.115 -0.0318 0;-3.05 .388 -.4650 0;0 0.0805 1 0];
B=[0.00729 0;-0.475 0.00775; 0.153 0.143;0 0];
C=[0 1 0 0;0 0 0 1];
D=[0 0; 0 0];
states={'beta' 'yaw' 'roll' 'phi'} inputs={'rudder' 'aileron'} outputs={'yaw' 'bank angle'}
sys=ss(A,B,C,D,'statename',states,'inputname',inputs,'outputname',outputs)

You might also like