What is the period of the forced oscillation

Assignment Help MATLAB Programming
Reference no: EM131303266

Question 1. (a) What is the period of the forced oscillation? What is the numerical value (modulo 2Π) of the angle α defined by?

(b) In this question you are asked to modify the file LAB06ex1.m in order to plot the complementary solution of (L6.1), that is, the first term in (L6.2). First define in the file the angle α (alpha) using (L6.4), then evaluate the complementary solution yc by subtracting the quantity C cos(ωt - α) from the numerical solution y. Plot the resulting quantity. Does it look like an exponentially decreasing oscillation?

Why or why not? Include the modified M-file and the corresponding plot.

Question 2. We now consider C as a function of ω. We use again ω0 = 2, c = 1 and y(0) = y′(0) = 0. The previous problem determined C for a specific value of ω. Here we consider a range of values for ω and determine numerically the corresponding amplitude C. We then plot the result as a function of ω, together with the theoretical amplitude from (L6.3). You may need the following MATLAB program.

function LAB06ex2 omega0 = 2; c = 1;
OMEGA = 1:0.02:3;
C = zeros(size(OMEGA)); Ctheory = zeros(size(OMEGA));
t0 = 0; y0 = 0; v0 = 0; Y0 = [y0;v0]; tf = 50; t1 = 25;
for k = 1:length(OMEGA) omega = OMEGA(k);
param = [omega0,c,omega];
[t,Y] = ode45(@f,[t0,tf],Y0,[],param);

i = find(t>t1);
C(k) = (max(Y(i,1))-min(Y(i,1)))/2;
Ctheory(k) = ??; %FILL-IN
end figure(2)
plot(??); grid on; %FILL-IN
xlabel('\omega'); ylabel('C');
---------------------------------------------------------
function dYdt = f(t,Y,param) y = Y(1); v = Y(2);
omega0 = param(1); c = param(2); omega = param(3);

dYdt = [ v ; cos(omega*t)-omega0^2*y-c*v ];

(a) Fill in the missing parts in the M-file LAB06ex2.m and execute it. You should get a figure like Figure L6b. Include the modified M-file in your lab report.

(b) Examine the graph obtained by running LAB06ex2.m and determine for what (approximate) value of ω the amplitude of the forced oscillation, C, is maximal. This value of ω is called the practical resonance frequency. Give the corresponding maximum value of C.

(c) Determine analytically the value of ω for which the amplitude of the forced oscillation, C, is maximal by di?erentiating the expression for C in (L6.3) as a function of ω. Compare the value you find with the value obtained in part (b).

(d) Run LAB06ex1.m with the value of ω found in part (c) (include the graph). What is the amplitude of the forced oscillation? How does it compare with the amplitude of the forced oscillation in problem 1.? If you run LAB06ex1.m with any other value of ω, how do you expect the amplitude of the solution to be?

(e) Are the results a?ected by changes in the initial conditions? Answer this question both nu- merically (by modifying the initial conditions in LAB06ex2.m) and theoretically (by analyzing the expression for C in (L6.3)). Note that the initial conditions for the DE are y0 and v0.

Question 3. Set c = 0 in LAB06ex2.m.

2010_Figure.jpg

(a) Explain what happens. What is the maximal amplitude? What is the value of ω yielding the maximal amplitude in the forced solution? How does this value compare to ω0?

(b) Run LAB06ex1.m with c = 0 and ω equal to the value found in part (a). Comment on the behavior of the solution. Include the graph.

Question 4. To see the beats phenomenon, set c = 0 and ω = 1.8 in LAB06ex1. Also extend the interval of simulation to 100.

840_Figure1.jpg

(a) In LAB06ex1 define the "envelope" function A = 2C sin ( 1/2(ω0 - ω)t) with C = 1/|ω02 - ω2|.

Plot A in red and -A in green, together with the solution. You should obtain Figure L6c. Include the modified M-file.

2324_Figure2.jpg

(b) What is the period of the fast oscillation (that is, the period of sin ( 1/2(ω0 + ω)t))? Confirm your answer by zooming in on the graph of the solution. Include a graph to support your answer.

(c) What is the length of the beats? Determine the length analytically using the envelope func- tions, and numerically from the graph.

(d) Change the value of ω in LAB06ex1 to 1.9 (a value closer to ω0) and then ω = 1.6 ( a value farther away from ω0). Include the two graphs. For each of these two values of ω find the period of the fast oscillation and the length of the beats. How do the periods change compared to parts (b) and (c)?

(e) If you let ω = 0.5, is the beats phenomenon still present? Why or why not?

Attachment:- Forced Equations and Resonance.pdf

Reference no: EM131303266

Questions Cloud

What is the significance of the sec and the fcm : Discuss the main advantages/disadvantages of financial regulations. What is the significance of the SEC and the FCM for the financial market
Describe the piagets model of cognitive development : What are the most important aspects these development models for a parent, teacher and judge to be aware of? Provide examples and be sure to include specific stage characteristics.
Why did the treasury allow lehman brothers to fail : Why did the Treasury and the Federal Reserve allow Lehman Brothers to fail? Why do some consider the decision to be the biggest mistake of the crisis?
What is the percentage change in the price of these bonds : Both Bond Bill and Bond Ted have 11.8 percent coupons, make semiannual payments, and are priced at par value. If interest rates suddenly rise by 2 percent, what is the percentage change in the price of these bonds
What is the period of the forced oscillation : MAT 275 Forced Equations and Resonance - What is the period of the forced oscillation? What is the numerical value (modulo 2Π) of the angle α defined by and Determine analytically the value of ω for which the amplitude of the forced oscillation
Is this product elastic or inelastic : Is this product elastic or inelastic? Does this answer support what we've learned about elasticity and what we might expect for a pair of Tom's shoes? Briefly explain your answer.
What is the debt deflation process : What is the debt-deflation process? Does this process provide any insight into why the Federal Reserve rescued Bear Stearns?
What is a house price bubble : What is a "house price bubble"?- Why would long-term interest rates have a closer connection to house prices than overnight interest rates?
Two different determinants of demand : With reference to two different determinants of demand, explain why the demand for Levis jeans might decrease (shift inwards, i.e. to the left).

Reviews

Write a Review

MATLAB Programming Questions & Answers

  How much time passes from when the wheel was started from

a sharpening stone at rest is brought to 300 rpm over 2 mins. at that point a dull sword edge is placed against the

  Give the gradient operator in paraboloidal coordinates

Given that the le data.txt contains only real numbers seperated by white space, write down a sequence of maple commands that will read the data into a maple list and then plot a histogram of the elements in the list.

  Plot the lines using the inputted vector of x values and x

Write a function named solveSystem that has three inputs: two vectors consisting of coefficients [a b c] of two line equations of the form ax + by = c and a vector of x values.

  Write a matlab script called estimate_e

How does your actual accuracy compare to the relative tolerance you chose - Can you provide the answer as soon as possible and use basic MATLAB concepts to make this program?

  Function that takes as input parameters a function

Define a function that takes as input parameters a function handle f, start, and end values a and b, and a number of steps n. The function should compute and return the average value of f over the range a to b.

  Write a matlab script using the randn command

Write a Matlab script using the "randn" command to generate a vector of 10,000 random numbers that are normally distributed around zero, with a variance of 1. Use the "hist" command to plot a histogram of these data, specifying 50 bins.

  Write a script to solve the problems using vector operations

Write a script to solve the subsequent problems using only vector operations - Assume you have two vectors named A1 and B1 of equal length and create a vector C1 that combines A1 and B1 such that C1 = [A1(1) B1(1) A1(2) B1(2) . . . . A1(end) B1(end..

  Write project report and provide cross-synthesis

Write project report and provide Cross-synthesis.

  Write compile and run a hello program

With these mechanical details mastered, everything else is comparatively easy - Write, compile and run a hello program.

  Use regression algorithms

The proposal which are two pages and here is the demands - Use Regression Algorithms or any type to achieve the target In Data Mining matter dealing with E-Learning Students' Data.

  Is the interest rate expressed as a fractional amount

Create a MATLAB® function called future_value with three inputs: the investment (present value), the interest rate expressed as a fraction, and the number of compounding periods.

  Matlab program to calculate the rest of the coefficients

Step One: For the design specifications of your filter, see the excel file for specifications (UDO). You need to demonstrate for the first two iterations( n=0 & n=1), by hand, the calculation of the coefficients. Step Two: Develop a Matlab prog..

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