ENS6160 Signals and Systems Assignment Problem

Assignment Help Electrical Engineering
Reference no: EM132381234

ENS6160: SIGNALS & SYSTEMS ASSIGNMENT 2

Analysing a simple system

Condition monitoring of equipment is an essential part of modern predictive maintenance. This involves the measuring of various parameters of the equipment (e.g. temperature, vibration) to identify significant changes that could indicate impending failure. Preventive maintenance based on such indicators can prevent catastrophic failure and consequent impacts (financial loss, injury or even death).

Vibration sensors convert mechanical vibrations detected into electrical signals that can then be sent to condition monitoring systems that process the signals to extract signal features (both time domain and frequency domain features). This data can then be analysed to determine if equipment requires attention (de Silva, 2007).

Accelerometers are dynamic sensors commonly used in vibration sensors. Piezoelectric accelerometers are extensively used as vibration sensors due to their light weight and high- frequency response (de Silva, 2007).

The basic principle of operation behind a piezoelectric accelerometer is the displacement of a small inertial mass on a piezoelectric crystal and restrained by a stiff spring. Consistent with Newton's second law of motion (F = ma), as an acceleration is applied to the device, a force develops which displaces the mass. Movement of the inertial mass distorts the piezoelectric crystal, changing the output signal voltage. The fluid (usually air) trapped inside the device acts as a damper, resulting in a second order lumped physical system.

1436_Piezoelectric accelerometer components.jpg

Figure 1: Piezoelectric accelerometer components and lumped physical model

In this figure:
• x is the position of the large body, with its rest position given by x = 0.
• The mass m represents the inertial mass within the accelerometer.
• The height of mass m above its reference level is called y. The reference level is chosen such that when accelerometer is at rest, y = 0.
• The voltage output, V, would be proportional to the change in the difference between x
and y due to piezoelectric effect.

Section 1: Mathematical Analysis of System

1. Draw a free-body diagram showing all the forces acting on the inertial mass m shown in Figure 1(b).

2. Let z(t) = y(t) - x(t) . From the earlier description, diagrams and the laws of Physics, show that the motion of the accelerometer can be described by the LCCDE (linear constant- coefficient differential equation) below:

d2z(t)/dt2 + C/m dz(t)/dt + k/m z(t) = - d2x/dt2

Equation (1) shows that the output response depends on the acceleration of the large body.

3. Using the Laplace transform of the equation above, find an expression for H(s) , the system transfer function, taking z(t) as the system output.

The accelerometer is a damped second order system. It is common to express the homogenous second order DE for such a damped system as

d2z(t)/dt2  + 2Çωn dz(t)/dt + ω2nz(t) = 0                      (2)

where Ç is the damping ratio and ωn is the undamped natural (resonant) frequency.

4. From equations (1) and (2), determine expressions for Ç (the damping ratio) and ωn (the natural frequency) in terms of the parameters m, k and C

5. Determine the characteristic equation and eigenvalues (characteristic values) for this system based on equation (2) above (in terms of ωn and Ç ).

6. From the answer to part 5, determine the full mathematical expression (in terms of ωn and
Ç ) for the natural response of the system for the following cases:
a. Ç = 0
b. 0 < Ç < 1
c. Ç = 1
d. Ç > 1

Consider an accelerometer with the following parameters:
m = 4.8 x 10-5 kg
k = 800 N/m

7. Determine ωn (in rad/s) for this vibration sensor and the corresponding value for fn (in Hz).

8. Calculate the required value of C in order to achieve Ç = 1

Section 2: System analysis using Matlab

In this section, the system responses should be analysed using Matlab. Refer to the document "A Brief MATLAB Guide" in order to understand how to represent LTI systems in Matlab, and hence how to determine impulse response, step response and frequency response of systems. Sample Matlab code that has been provided as part of learning materials can also be modified to suit. Students are advised to refer to the help function within Matlab as well as online Matlab documentation for more details. Note: MATLAB is installed in the engineering computer labs.

Using the commands given in the Guide, analyse the response of the vibration sensor using the m and k parameters given in Section 1 and C value calculated in question 8:

9. Plot the impulse response and step response of the system for 0.01 seconds duration and time ‘step size' of 10 nanoseconds (1e-8 sec) using the impulse and step functions. Include all plots (properly labelled) in your submission.

10. Determine the frequency response from 1000 to 106 rad/s using the freqs command. Plot the magnitude and phase response over this frequency range. Hint: Use frequency ‘step size' of 10 rad/s.

Hint 1: You can plot all 4 graphs in one go using a 2 x 2 matrix of plots using subplot(22n), where n determines which of the 4 subplots gets used.

Hint 2: In order to clearly see variations over a range of frequencies, it is best to use a log scale for the frequency and magnitude (phase would still be displayed using linear scale). The functions loglog (for magnitude) and semilogx (for phase) can be used instead of plot.

11. Determine the magnitude response at mn. Determine the frequency of the -3dB point (where magnitude = 1⁄√2). Hint: Use the ‘data cursor' tool on the plot of the magnitude response. It shows the x and y values of the plot as you move along the curve.

12. Discuss the response of the system. Why do the impulse and step responses have that particular shape? How well will this accelerometer fulfil its purpose of a vibration sensor? Based on the frequency response, what limitations will there be on its usefulness?

Note: The function of a vibration sensor is to provide an accurate measurement of vibrations over a range of frequencies.

13. Repeat the analysis above (steps 9 - 11) for the following damping ratios

a. Ç = 0.3

b. Ç = 0.5

c. Ç = 0.7

d. Ç = 1.5

e. Ç = 2.0

Hint 3: It would be more efficient to put all the necessary commands into a script file (a .m file) so you can edit the parameters and then run all the commands at once.

14. Based on the results of the Matlab analysis above, which of the 6 values of damping ratio tested would be best for a vibration sensor. Clearly justify your selection and relate your selection to a sample application where appropriate.

Section 3: Modelling system response to input and effectiveness

The vibration sensor modelled previously (using the Ç value chosen in the previous step) is to be used on a pump designed to run at 1800 rpm. The vibration output of the pump during normal operation can be modelled by a sinusoid of that frequency (30Hz).

The M-file for the custom-written function inputsig has been provided, with explanatory comments in the file.

15. Use the inputsig function to generate a sinusoid of 30 Hz with magnitude 1 and appropriate duration, then simulate the sensor response to this function and plot both the input and output response vs time.

Hint 4: The system response to an input signal can be simulated using the lsim function. Following is some sample code that shows how this function could be used.
[xsig, t1] = inputsig(0.1); % generate signal duration 0.1
Sys1 = tf(B,A); % define system, use tf (transfer function) Sysout = lsim(Sys1, xsig, t1); % simulate LTI system response

Note: Students are advised to refer to the help function within Matlab as well as the online Matlab documentation for more details.

16. Repeat step 15 with the input signal being (a) square wave and (b) pulse

17. Compare the system response to the 3 types of input and explain the output signal for each and the differences.

Failing parts in rotating mechanical devices often produce non-sinusoidal vibrations (e.g. pulses or square waves) at the same frequency as the normal rotating frequency.

18. Repeat the simulation in step 15 with a combination of a sinusoid of amplitude 1 and a square wave of amplitude 0.1. Describe any visible differences in input and output waveforms due to the addition of the square wave. Hence comment on the suitability of using the vibration sensor to detect faults in the system.

19. Repeat the simulation in step 18 with a combination of a sinusoid of amplitude 1 and a pulse wave of amplitude 0.1. Describe any visible differences in input and output waveforms due to the addition of the pulse wave and compare with results of the previous steps.

Section 4: State Space Analysis (22 marks) A brief introduction to state space analysis

State space analysis enables a system that would be described using an nth order differential equation to be represented using first order matrix differential equations through the definition of n state variables.

The state space representation of a system is given by two equations:

a) The state equation: q? = Aq + Bx
b) The output equation: y = Cq + Dx

Note: The variables in the equation above are denoted in bold as they are matrices.

For an nth order system with r inputs and m outputs, the sizes of the matrices are as below:

Matrix

Size

Name

Type

q

n x 1

State vector

Function of time

A

n x n

State matrix

Constant

B

n x r

Input matrix

Constant

x

r x 1

Input

Function of time

y

m x 1

Output

Function of time

C

m x n

Output matrix

Constant

D

m x r

Direct transition (or feedforward) matrix

Constant

20. Research and discuss the advantages of state space analysis and the types of problems for which state space analysis is most suited (in no more than 500 words).

21. From you understanding of state space analysis and the vibration sensor mathematical model in section 1, work out the state space representation of the vibration sensor. Show the values of all elements in the matrices involved and provide clear explanation of what the variables in the vectors q, x and y represent.

Hint: You can replace the acceleration of the large body surface d2s(t)/dt2 with a single variable a.

Attachment:- Signals and Systems.rar

Reference no: EM132381234

Questions Cloud

MIS605 Systems Analysis and Design Assignment : MIS605 Systems Analysis and Design Assignment Help and Solution, Laureate International Universities, Australia - Who are the stakeholders in this project
Calculate the composite life in years for these assets : Assume that Machine Z was sold for $250,000 on December 31, 2019. Prepare the journal entry to record the sale. Calculate the composite life in years for these
What is the total profit if the stock price in six months : A trader creates a bull spread by buying a six-month put option with a $30 strike price for $3 and selling a six-month put option with a $35 strike price for $4
What should atlas fitness report on its income statement : After four training? sessions, what should Atlas Fitness report on its income statement assuming it uses the accrual basis accounting? method?
ENS6160 Signals and Systems Assignment Problem : ENS6160 Signals and Systems Assignment help and solution, Edith Cowan University, Assessment help - Determine the characteristic equation and eigenvalues
Same maturity of one year : The price of a stock is $15. Consider put and call options (European style) on this stock with the same maturity of one year.
When and how much can he deduct for the electricity bill : He received his December electric bill for $650 on January 18, 2019. The bill included charges for December 15, 2018 through January 14, 2019.
What is the total profit if the stock price : What is the total profit if the stock price in six months is $25?
Nine-month interest rates in united kingdom : The nine-month interest rates in United Kingdom and the United States are .3% and .2% per annum, respectively, with continuous compounding.

Reviews

len2381234

10/3/2019 4:14:04 AM

Section 3: Modelling system response to input (18 marks) Description Marks Simulation of input and output response (3 basic types) 7 Explanation of responses 3 Simulation of sinusoid with non-sinusoid plus explanation 8 TOTAL 18 Section 4: Investigation of State Space Analysis Techniques (22 marks) Description Marks Discussion of state space analysis advantages and disadvantages, and suitable problems 12 State space analysis of a vibration sensor system with explanation 7 Referencing 3 TOTAL 22

len2381234

10/3/2019 4:13:51 AM

Section 2: Matlab System Analysis (35 marks) Description Marks Impulse and step response, frequency plot, and specific magnitude values 12 Description of responses and relating it to the system’s desired function 3 Analysis of various damping ratios 15 Selection and justification of preferred damping ratio 5 TOTAL 35

len2381234

10/3/2019 4:13:44 AM

ASSIGNMENT 2 MARKING SCHEME Section 1: Mathematical Analysis (25 marks) Description Marks Free body diagram 3 Deriving DE formula 4 System transfer function 2 Expressions for damping coefficient and natural frequency 2 Characteristic equation and eigenvalues 4 Natural response (4 cases) 8 Calculation of mn and Cc 2 TOTAL 25

len2381234

10/3/2019 4:13:30 AM

While you are strongly encouraged to discuss this assignment with other students and with the teaching staff to better understand the concepts, the assignment is to be submitted under your name. It is assumed that you are certifying that the details are entirely your own work and that you played at least a substantive role in the conception stage. • You should not use results from other students in preparing your solutions. • You should not take credit for computer code or graphics that were generated by other students. • You should also not directly share your solutions with other students. The teaching staff will check for similarities and you should be prepared to explain your answers and respond to other related questions that may be asked. • You should also not use any other resources (including textbooks and websites) without explicitly acknowledging them and being able to explain their inclusion.

len2381234

10/3/2019 4:13:21 AM

All assignment documents should be submitted via Blackboard. The link for submitting the assignment will be activated 2 weeks prior to the deadline. You should upload a suitably formatted report in Adobe PDF format (preferred) or as a Microsoft Word document. Hard copies in the form of printed, handwritten, or scanned handwritten reports will not be accepted. The report should document in detail your individual approach, work, results, and justified answers to the stated problems.

Write a Review

Electrical Engineering Questions & Answers

  Lithium ion battery technology

The paper includes Lithium ion battery technology with its advantages and disadvantages. The paper discusses about the Lithium air battery in which detailed reactions of Lithium with air including nonaqueous as well as aqueous are given.

  Power transformers and tariffs

Construction of different types of power transformer, significant energy savings

  Paper on orthogonal frequency-division multiplexing

This document is shown a paper on Orthogonal frequency-division multiplexing with advantages, disadvantages and uses.

  Function of the hmi in a scada system

This assignment contains electronics engineering questions like State the commonly found components of a SCADA (Supervisory control and data acquisition) system. and decribe the function of the HMI in a SCADA system.

  Resultant waveform of the odd harmonic series

Prepare an Excel graph showing the individual components and summated resultant waveform of the odd harmonic series resulting in an approximate square wave.

  Explain scada system

Explain the function of the HMI in a SCADA system.

  Design a 2-digit 24 second shot-clock

Design a 2-digit 24 second "shot-clock" countdown timer with pushbutton controller.

  Model a discrete-time system

To understand di erent signal models To be able to model a discrete-time system and design simple signal processing algorithms.

  Draw a relay construction diagram

Draw a relay construction diagram and briefly explain the operation of a relay.

  Frequency division multiplexing

Write a short technical report on Frequency Division Multiplexing

  Impact of electron energy

Briefly discuss the impact of electron energy, electron current and target on the Bremsstrahlung generated.

  Traffic light controller

The schematic of the traffic light controller

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd