MAE 3319 Dynamic Systems Modeling and Simulation Assignment

Assignment Help Mechanical Engineering
Reference no: EM133119088

MAE 3319 Dynamic Systems Modeling and Simulation - The University of Texas at Arlington

Assignment

This course pertains to modeling and analysis of engineering systems which means deriving and solving differential and algebraic equations that are used to determine the performance of the engineering system. A controls course follows this modeling course. The controls course pertains to stabilizing or improving the performance of the engineering system by adding feedback to the model.

1122_Roll control system.jpg

 

A schematic of an airplane with a feedback roll control system is shown below. Feedback is achieved with a gyro that measures angular rotation rate and instrumentation that measures aileron angles. The roll control computer in the airplane receives a desired roll angle Φd from the pilot and then the computer moves the ailerons θ to achieve the desired roll angle in a reasonable time with minimal oscillations.

An controls engineer has modeled the aerodynamics and then designed the feedback controller gains to achieve these objectives. The model also includes the aerodynamic effects associated with turbulence T(t) that cause the roll angle to undesirably change during flight. Thus, there are two possible inputs that affect the roll angle of the airplane: (1) desired roll angle Φd(t) from the pilot and (2) turbulence T(t). The equations for the roll dynamics and the feedback controller are

Φ¨ + Φ· = T + θ Roll dynamics due to turbulence and ailerons
θ· = u Aileron change rate based on feedback control u
u = 64(Φd - Φ) - 35Φ· - 7θ Feedback control u

For the following parts to this assignment, create a function file and keep adding to it each part as you work through the assignment. In the end, you will have a single function file that does every part of the assignment.

Question 1: Define state variables for the equations and express the three equations in state variable format assuming that Φ(t) is the output-of-interest. Let x1 = Φ, x2 = Φ· and x3 = θ

x· = Ax + B 733_Roll control system1.jpg and y = Cx + D 733_Roll control system1.jpg A = ? B = ? C = ? D = ?

Question 2: Enter this system into MATLAB using the command ‘ss' and use ‘damp' to determine the eigenvalues. Define the system with notation R.

Confirm that the eigenvalues are -2.18 and -2.91 ± j4.57 using damp(R)?

What is the damping ratio?

What are the time constants?

Question 3: Use the command ss2tf(A,B,C,D,1) to get the transfer function for input T and ss2tf(A,B,C,D,2) to get the transfer function for input Φd. Confirm that both transfer functions have the same denominator and thus, the same eigenvalues.

Question 4: What is the DC gain of the Φd transfer function?

What does this mean in terms of what the roll angle will be eventually if the input from the pilot is a constant?

Question 5: If the pilot puts in a step input for Φd, assuming T = 0, how long will it take for the roll angle to reach steady state?

Question 6: Assume Φd(t) is a step of 10 degrees and T=0. Assume the initial roll angle is zero. Considering the damping ratio, the damped natural frequency, the final value and the time constants, draw an estimate of the airplane roll angle following the command Φd(t) = 10.

1453_Engineering systems.jpg

 

Question 7: Use MATLAB to generate the roll angle response to a pilot command of 10 degrees and determine if it matches your estimated plot in part 6. If it doesn't match, determine which one is wrong.

Question 8: To see what happens if the airplane flies through a very small tornado, assume T(t) is a unit impulse. Use the impulse command for T(t) assuming Φd(t) = 0 and all initial conditions are zero to generate a plot of Φ(t).

Does the feedback controller bring the disturbed roll angle Φ(t) back to zero and in a timely manner?

Question 9: Turbulence, T(t), is a stochastic process containing many frequencies. A typical plot of T(t) is shown below. It is very random and contains many frequencies.

1586_Engineering systems1.jpg

 

If you don't understand the meaning of ‘containing many frequencies', review Fourier series on page 26 in Section 1.9. So, T(t) can be represented by the sum of sine and cosine terms at many frequencies. The question is, which of these frequencies have a significant affect on the roll angle?

A very important concept pertaining to frequency response is bandwidth. For example, the bandwidth for a set of audio speakers is the input frequency range that the output is not distorted; in this case you have a desired input and desired output that you don't want distorted and the larger the bandwidth, the better.

However, for problems such as this roll control system, the turbulence input is not desired and the resulting disturbance to the roll angle is not desired. Thus, it is desired that the transfer function for the input T(t) has a low bandwidth which means that as many frequencies as possible of the turbulence will be ignored or at least have a reduced effect on the roll angle.

The industry standard for the definition of bandwidth is the frequency range for which the dynamic gain is not less than 3 dB below the zero-frequency dynamic gain. Thus, according to this definition, all contributions of the input with frequencies not in the bandwidth of the transfer function will theoretically not affect the roll angle.

Use ‘bode' in MATAB to show that the bandwidth of the T transfer function is approximately 2.89 rad/s. That is, according to the industry standard of -3 dB, all turbulence input frequencies greater than 2.89 rad/s can be ignored.

Question 10: To demonstrate the significance on the amplitude of the output for frequencies below, at, and above the bandwidth, assume Φd(t) = 0 and use ‘lsim' in MATLAB to generate Φ(t) for T(t) = 640/7sin(0.3t), for T(t) = 640/7sin(3t) and for T(t) = 640/7sin(30t); put all three responses on the same plot for comparison. Note, to see a significant portion of the steady-state response, your simulations need to run more than 5-time constants; Use a final time of 12 s. In addition, the highest input frequency is 3 rad/s; so, to get at least 20 points per cycle with this frequency, the time increment for all three simulations needs to be about 0.01 s.

(10.a) From the frequency response plot, we see that a turbulence input frequency of 0.3 rad/s has a dynamic gain that is very close to the DC gain of the transfer function; from your lsim simulation, what is the steady-state roll angle amplitude for this low frequency?

(10.b) If the frequency of the turbulence input is equal to the bandwidth frequency, 3 rad/s, from your lsim plot what is the steady-state roll angle amplitude?
Is this amplitude consistent with the -3 dB gain reduction associated with the bandwidth frequency?

(10.c) Considering your lsim plot for a turbulence frequency of 30 rad/s, what is the roll angle amplitude?

What can you say about the ability of the roll angle control system to filter out (ignore) turbulence with frequencies above the bandwidth?
Considering the comparison of the amplitudes of the three plots, what can you conclude about the significance of the bandwidth?

Question 11: In this part of the assignment, the turbulence input is a band limited white noise (Sections 8.3.4.2, 8.3.5.4 and example on page 285) with magnitude of 50 for 0 < f < 10 hz i.e.

Upload the function file StochInput in the March 28 Announcement. Copy and paste it as an internal function in the function file you are creating for this assignment. In the dpsd function at the end of StochInput, change the desired PSD to the one shown above.

(11.a) Determine appropriate values for N and H (Section 8.3.5.1).

(11.b) Generate a stochastic input for the turbulence that has this PSD. StochInput should generate plots of the turbulence and the desired PSD so you can confirm you entered the correct PSD.

(11.c) Run lsim with this input to the turbulence transfer function. Plot the roll angle Φ(t) resulting from the airplane flying through this turbulence.

(11.d) Use the MATLAB function files ‘mean' and ‘std' to compute the mean and standard deviation of Φ(t).

Reference no: EM133119088

Questions Cloud

Evaluation of the leadership style : An evaluation of the leadership style of your selected leader, according to an existing leadership style theory. How would you describe your leadership style?
Prepare a Trial Balance for Pete Pets : Prepare a Trial Balance for Pete's Pets, showing the debits and credits balance. And what is the net income for Pete's Pets
Prepare an income statement for the quarter : The company buys amplifiers from several suppliers with an average price of $280. Prepare an income statement for the quarter
Gds ratio using a monthly mortgage payment : It is February 18, 2022, Asra and Yadi are looking to buy their first home but prices during this pandemic seem especially high. To come up with the down paymen
MAE 3319 Dynamic Systems Modeling and Simulation Assignment : MAE 3319 Dynamic Systems Modeling and Simulation Assignment Help and Solution, The University of Texas at Arlington - Assessment Writing Service
Give at least three risks faced by a portfolio manager : Give at least three risks faced by a portfolio manager? Explain each.
Determine the forward or futures contract : Suppose you are a farmer who primarily grows soybeans. You would like to lock in the price you can sell your produce for in six months (when it is ready for har
How much revenue can Ned Stark recognize : After moving to warmer weather, Ned Stark sold his fur coats for $2,000. How much revenue can Ned Stark recognize
Calculate the total payment for the fha purchase : Calculate the total payment for the FHA purchase scenario below.

Reviews

Write a Review

Mechanical Engineering Questions & Answers

  Find the angular acceleration and the time taken

Find (a) the angular acceleration, (b) the time taken, (c) the work done, (d) the maximum power developed, (e) the distance travelled by a point on the rim of the flywheel.

  What is the effect on the critical load when the rods act

What is the effect on the critical load when the rods act as a single member?

  What is the velocity of the carriage

If the carriage has a velocity of 5 ft/sec to the right at t = 0, determine the velocity v1 of the' carriage when t = 1sec. By inspection, what is the velocity v2 of the carriage when t = 2 sec

  Determine the thread depth and helix angle

A jack similar to the ones shown in Figure 10.5 uses a single square-thread screw to raise a load of 50 kN.

  Research preparation on robots in space latex

Present a showcase skills covered in class lectures with a minimum of 1500 words. The report should be based on a minimum of 3 peer reviewed papers

  A fan is to accelerate quiescent velocity is 0 ms air to a

assuming there are both a pressure gage and a manometer attached to a gas tank which has a pressure lower than patm. if

  Estimate the hourly cost of running the pump

An electrically-driven pump operating at steady state draws water from a pond at a pressure of 1 bar and a rate of 40 kg/s and delivers the water at a pressure of 4 bar. Evaluating electricity at 8 percents per kW/h estimate the hourly cost of runnin..

  Application of advanced kinetic and kinematic concepts

Demonstrate application of advanced kinetic and kinematic concepts to various mechanisms both from a practical and theoretical context Recognise, Develop and Solve numerical problems related to kinetic and kinematic based mechanisms.

  Develop equations which may be solved to give the final

develop equations which may be solved to give the final temperature of the gas remaining in a tank after the tank has

  Calculate the work done on the object by the force

A force of F= (-2i+8j-6k)N is applied to an object that is constrained to move in the direction u=0.5571i+0.4481j-0.6992k. If the object has a total displacement of 10 meters in the direction of u, calculate the work done on the object by the force.

  Determine steady-state value of outer surface temperature

For the preferred paint of part (a), determine the steady-state value of the outer surface temperature Ts,o. The boundary layer is tripped at the leading edge of the roof, and turbulent flow may be assumed to exist over the entire roof. Properties..

  What are the operating costs

The heat exchanger can be the necessary width, but the air inlet side must be 1.5 ft x 4 ft. Water flows through the tubes. Select the better surface based on economy of operation by calculating (a) the heat-exchanger width required for both surfa..

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