Honors Physics 1 Class 20 Fall 2013

Slides:



Advertisements
Similar presentations
1-Compressed sensing. 2-Partial Fourier. 3-My thesis.
Advertisements

Lab5 (Signal & System) Instructor: Anan Osothsilp Date: 20 Feb 07 Due Date 09 March 07.
1 Fields and Signals in Coupled Coaxial and Cylindrical Cavities John C. Young Chalmers M. Butler Clemson University.
GG 313 Lecture 25 Transform Pairs and Convolution 11/22/05.
DREAM PLAN IDEA IMPLEMENTATION Introduction to Image Processing Dr. Kourosh Kiani
Lab8 (Signal & System) Instructor: Anan Osothsilp Date: 17 April 07.
Fast Fourier Transformation of Vibration Signals using Microsoft EXCEL Mohammed Aref Department of Information Technology Salalah.
THIS LECTURE single From single to coupled oscillators.
A spring with a mass of 6 kg has damping constant 33 and spring constant 234. Find the damping constant that would produce critical damping
Lab 5: Damped simple harmonic motion
Designing Bandpass Filters We will design several filters for the following normalized frequencies and desired frequency response. First, specify the desired.
Motion of a mass at the end of a spring Differential equation for simple harmonic oscillation Amplitude, period, frequency and angular frequency Energetics.
Hannah Thoreson, ASU/NASA Space Grant Mentor: Dr. James Villarreal ROAR - Robot On A Rocket.
Sect. 6.5: Forced Vibrations & Dissipative Effects
1 Honors Physics 1 Class 18 Fall 2013 Harmonic motion Unit circle and the phasor Solution to the spring differential equation Initial and boundary conditions.
Section 2 Measuring simple harmonic motion. Amplitude, Period and Frequency.
Chapter 7. Free and Forced Response of Single-Degree-of-Freedom Linear Systems 7.1 Introduction Vibration: System oscillates about a certain equilibrium.
CAN WE BUILD A SINGLE BUNCH FEEDBACK Eric Plouviez ESRF Diagnostic group.
Masses Go To and Fro Oscillating Systems. Periodic Motion OSCILLATION – a periodic variation from one state to another SIMPLE HARMONIC OSCILLATOR– an.
Lab 9: Simple Harmonic Motion, Mass-Spring Only 3 more to go!! The force due to a spring is, F = -kx, where k is the spring constant and x is the displacement.
1 Lecture D32 : Damped Free Vibration Spring-Dashpot-Mass System Spring Force k > 0 Dashpot c > 0 Newton’s Second Law (Define) Natural Frequency and Period.
Autar Kaw Humberto Isaza Transforming Numerical Methods Education for STEM Undergraduates.
Periodic driving forces
1 Honors Physics 1 Summary and Review - Fall 2013 Quantitative and experimental tools Mathematical tools Newton’s Laws and Applications –Linear motion.
Physics 321 Hour 11 Simple and Damped Harmonic Oscillators.
Signals and Systems 1 Lecture 3 Dr. Ali. A. Jalali August 23, 2002.
Lecture#10 Spectrum Estimation
1 Teaching Innovation - Entrepreneurial - Global The Centre for Technology enabled Teaching & Learning M G I, India DTEL DTEL (Department for Technology.
ALLEGRO GWDAW-9, Annecy 16 December, Generating time domain strain data (h(t)) for the ALLEGRO resonant detector or calibration of ALLEGRO data.
Dr S D AL_SHAMMA Dr S D AL_SHAMMA11.
Physics Vibrations and Waves ....
4. Harmonic oscillations
Physics 8.03 Vibrations and Waves
Period of Simple Harmonic Motion
Vertical emittance measurement and modeling Correction methods
Dynamic Response of MDOF Structures
ECE 477 Digital Systems Senior Design Project  Spring 2009
Department of Computer Engineering
Dr-Ing Asrat Worku, AAIT
Discrete Fourier Transform (DFT)
Figure Hz sine wave to be sampled.
Coupled Oscillators By: Alex Gagen and Sean Larson.
Net 222: Communications and networks fundamentals (Practical Part)
8 DIGITAL SIGNAL SPECTRA
Net 222: Communications and networks fundamentals (Practical Part)
Physics 111 Practice Problem Solutions 14 Oscillations SJ 8th Ed
Neurons Skip a Beat during Fast Ripples
GoldExperience 통신공학설계실험 Kim Hyun Tai
Introduction to MATLAB Programming
LECTURE 18: FAST FOURIER TRANSFORM
Autar Kaw Humberto Isaza
Active Figure 15.1  A block attached to a spring moving on a frictionless surface. (a) When the block is displaced to the right of equilibrium (x > 0),
Coupled Oscillations 2/22/2019 Coupled Oscillators.
Department of Computer Engineering
The Fourier Transform Intro: Marisa, Nava, Compression Scheme project. Relies heavily on Fourier Transform.
Neurons Skip a Beat during Fast Ripples
Hour 33 Coupled Oscillators I
Autar Kaw Humberto Isaza
6. Coupled Oscillators L L a k b m m D
Physics 319 Classical Mechanics
Introduction to MATLAB
Physics 319 Classical Mechanics
6. Coupled Oscillators L L a k b m m D
Importing Excel Data & Exporting Data to Excel
ENEE222 Elements of Discrete Signal Analysis Lab 9 1.
EE150: Signals and Systems 2016-Spring
Pump and probe technique
LECTURE 18: FAST FOURIER TRANSFORM
ME 123 Computer Applications I Lecture 4: Vectors and Matrices 3/14/03
ME 123 Computer Applications I Lecture 5: Input and Output 3/17/03
Presentation transcript:

Honors Physics 1 Class 20 Fall 2013 Coupled Oscillators Normal Modes Fourier Analysis

Damped Harmonic Oscillator

Two masses, three springs, tethered at both ends

Coupled oscillators – general solution

Coupled Oscillators - cases

Coupled oscillators – Case 1

Coupled oscillators – Case 1

Coupled oscillators – Case 1 Three equal springs

Fourier analysis We introduce this powerful tool as a technique for determining from experimental data the normal mode oscillation frequencies.

A MATLAB program for Fourier analysis % This is an example of the use of the Fourier transform for finding components of a signal. clear all %Get the data and put it in arrays %The Excel file must be in the same directory as the MATLAB program A=xlsread('fourier_transform_example_data'); %Reads an array of data from an excel file of this name t = A(:,1); %Put the time data from the first column into a vector y = A(:,4); %Put the position data in the fourth column into a second matched vector Fs=1/(t(2)-t(1)); %Set the sampling frequency to 1/time step L = length(t); % Length of signal vector %Plot raw data h=figure(1); % Set up the figure axes('FontSize',16,'FontName','Times New Roman','LineWidth',.5,'Box','on','xLim',[0 20], 'yLim',[0 10]) line(t,y,'LineStyle','-','LineWidth',2) %Plot the data xlabel('time'); ylabel('position') % The Fourier transform part of the program NFFT = 2^nextpow2(L); % Next power of 2 from length of y Y = fft(y,NFFT)/L; f = Fs/2*linspace(0,1,NFFT/2+1); %Plot transform h=figure(2); line(f,2*abs(Y(1:NFFT/2+1)),'LineStyle','-','LineWidth',2) xlabel('frequency'); ylabel('amplitude')