The Frequency Response of a linear system ?

712 views

I watched the (https://youtu.be/9HfA0o-_4u4) regarding this topic from the YouTube channel Physics videos by Eugene Khutoryansky. It helped me visualize how lateral numbers are useful to understand this phenomenon.

But it got me also confused about linear systems in general. Can somebody by starting of explaining what is a linear system in the first place and what are some real world engineering applications?

Thanks in advance.

In: Physics

2 Answers

Anonymous 0 Comments

Well linear system is a system where output if proportional to input. So basically output is linear function of input. To make it easier to imagine, system is e.g. electric motor, input is applied voltage, response is your motor revolution per second. So if your electric motor was a linear system, two times bigger voltage would mean two times higher revs. This is just an example to give something to imagine, but in reality its not an linear system. And you can describe basically anything in such way. So system is a plane, input is how much did pilot push the yoke, response is flight angle.

Linear systems have wonderful feature, that they satisfy the property of superposition. For understanding this, let as assume that we have some complicated input, and its possible to represent this input as sum of some simple inputs (we have function Fc – complicated, which is equal to F1+F2, which are simple). Then response to the complicated Fc input, is equal to response to F1 + response to F2. This is true for linear system, id does not have to be true for non-linear systems. Knowing this you can combine it with Fourier Theorem (that you can represent any function with sum of series of sin), and you can easily calculate response to different inputs.

So simplified flow will be like this: you test your system with e.g. impulse input (impulse contains of very big number of sin functions), and you can tell what is your system response to each frequency. Then you can take this information, and you can calculate output for arbitrary input. You first disassemble your input into sin functions, then you know response for each of those from previous experiment, and your output is just sum of those responses.

And what is neat is that you do not do it step by step like I described, those calculations can be done very neatly using complex numbers, many programming languages will have necessary functions available as ready libraries. And one last thing, real system are rarely strictly linear. But we can make some tricks and assumptions, so that we treat our system as liner. This simplifies calculations greatly. In relation to examples from first paragraph we can assume, that while our motor is not linear, in range from 100 to 120 revs it can be approximated as linear. So if what you need is to know motor behavior in this range, then you can go with this approximation.

You are viewing 1 out of 2 answers, click here to view all answers.