P14372 Gate Review Update Presentation

Slides:



Advertisements
Similar presentations
Digital Kommunikationselektronik TNE027 Lecture 5 1 Fourier Transforms Discrete Fourier Transform (DFT) Algorithms Fast Fourier Transform (FFT) Algorithms.
Advertisements

DFT/FFT and Wavelets ● Additive Synthesis demonstration (wave addition) ● Standard Definitions ● Computing the DFT and FFT ● Sine and cosine wave multiplication.
3.1 Chapter 3 Data and Signals Computer Communication & Networks.
Design Goal Design an Analog-to-Digital Conversion chip to meet demands of high quality voice applications such as: Digital Telephony, Digital Hearing.
Techniques in Signal and Data Processing CSC 508 Fourier Analysis.
Dr. Holbert Dr. Holbert April 23, 2008
Physics 434 Module 4-FFT - T. Burnett 1 Physics 434 Module 4 week 2: the FFT Explore Fourier Analysis and the FFT.
Alice EMCAL Meeting, July 2nd EMCAL global trigger status: STU design progress Olivier BOURRION LPSC, Grenoble.
Gwynneth Davidoff, Kendall Pletcher, Mary Schmidt, Amy Whitcombe.
2 Team Induct-Us: Anna Camery Kyle Ryan Brady Coyle Brett Russell Dan Mathewson Advisors: Herb Hess David Atkinson Greg Donohoe Mentors: John Porter Armen.
Arduino Week 3 Lab ECE 1020 Prof. Ahmadi. Objective Data acquisition (DAQ) is the process of measuring an electrical or physical phenomenon such as voltage,
Lecture 12: Introduction to Discrete Fourier Transform Sections 2.2.3, 2.3.
Magnitude and Phase Measurements
Actively Stabilized Hand Held Laser Pointer May 8, 2014 Kaitlin Peranski Spencer Wasilewski Kyle Lasher Kyle Jensen Chris Caporale Jeremy Berke.
FT Representation of DT Signals:
Kaitlin Peranski Spencer Wasilewski Kyle Jensen Kyle Lasher Jeremy Berke Chris Caporale.
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Chapter 16 Speech Synthesis Algorithms 16.1 Synthesis based on LPC 16.2 Synthesis based on formants 16.3 Synthesis based on homomorphic processing 16.4.
INC 112 Basic Circuit Analysis Week 13 Frequency Response.
KAITLIN PERANSKI: IE, PROJECT MANAGER JEREMY BERKE: EE, SCRIBE/LEAD SOFTWARE CHRIS CAPORALE: EE, LEAD HARDWARE SPENCER WASILEWSKI: ME, MODELING/MACHINIST.
EE/CS 481 Spring Founder’s Day, 2008 University of Portland School of Engineering Project Golden Eagle CMOS Fast Fourier Transform Processor Team.
09/19/2002 (C) University of Wisconsin 2002, CS 559 Last Time Color Quantization Dithering.
Kaitlin Peranski Spencer Wasilewski Kyle Jensen Kyle Lasher Jeremy Berke Chris Caporale.
Project Active Vibration Cancellation. The Team NameDisciplineRole Kaitlin PeranskiIndustrial and SystemsProject Leader/ Edge Updating Jeremy BerkeElectricalScribe.
AWB’s Spectrum Analyzer and the Fourier Series waveform reconstruction /12/02 AWB’s Spectrum Analyzer and the Fourier Series waveform reconstruction...
Quiz 1 Review. Analog Synthesis Overview Sound is created by controlling electrical current within synthesizer, and amplifying result. Basic components:
Toshiba Infrared (IR) Test Apparatus Project Nurfazlina Kamaruddin Ahmad Nazri Fadzal Wan Othman Zamir Izam.
Instrumented Football Helmet
Sensor testing and validation plans for Phase-1 and Ultimate IPHC_HFT 06/15/ LG1.
Frequency Response Analysis and Stability
Center for Wireless Integrated MicroSystems (WIMS) Code for Cochlear Implant with Low-Power Constraints Luis Calderón, Axel Claudio, Jomayra Marrero, Guillermo.
Dance Tutorial Design Review Steve Amoroso Lauren Bouchard Marcy Dutcher CE Design Projects II December 1, 2005 Professor Czernikowski.
Arduino Week 3 Lab ECE 1020 Prof. Ahmadi. Objective Data acquisition (DAQ) is the process of measuring an electrical or physical phenomenon such as voltage,
CS 591 S1 – Computational Audio -- Spring, 2017
Lecture 2 Transmission Line Characteristics
Gesture Control interface
Michael Rahaim, PhD Candidate Multimedia Communications Lab
DIGITAL SIGNAL PROCESSING ELECTRONICS
Lecture 11 FIR Filtering Intro
Inverse scattering terms for laterally-varying media
Project of Network Analysis
MECH 373 Instrumentation and Measurements
Spread Spectrum Audio Visualizer
Instrument Interface FPGA
Lab02 :Logic Gate Fundamentals:
Digital Communication
Harmonics Ben Kemink.
Lock-in amplifiers
Presenter: Artur M. KUCZAPSKI
CHAPTER 3 DATA AND SIGNAL
Generating Sinusoidal Signals
P14372 Actively Stabilized Hand-Held Laser Pointer
CSCE 643 Computer Vision: Thinking in Frequency
Image Processing, Leture #14
Any type of vibration can be defined by
ECE 477 DESIGN REVIEW PART 2 Team 14
Lecture 2: Frequency & Time Domains presented by David Shires
Nuclear Magnetic Resonance
Advanced Digital Systems Design Methodology
Uses of filters To remove unwanted components in a signal
Lecture 5: Phasor Addition & Spectral Representation
KAGRA PLC System Overview
FPGA Vinyl to Digital Converter (VDC)
A Top-Level View Of Computer Function And Interconnection
Lec.6:Discrete Fourier Transform and Signal Spectrum
Fast Fourier Transform
♪ Embedded System Design: Synthesizing Music Using Programmable Logic
The Frequency Domain Any wave shape can be approximated by a sum of periodic (such as sine and cosine) functions. a--amplitude of waveform f-- frequency.
FPGA Based Single Phase Motor Control Using Multistep Sine PWM Author Name1, Author Name2., Author Name3, (BE-Stream Name) Under the Guidance Of Guide.
3.1 Chapter 3 Data and Signals Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Presentation transcript:

P14372 Gate Review Update Presentation Kaitlin Peranski Kyle Lasher Kyle Jensen Spencer Wasilewski Jeremy Berke Chris Caporale

Agenda Power Analysis Response Time Transfer Function Control Algorithm Bode Plot CAD Housing Models Risk Assessment by Component Cost Analysis/BOM/Order Plan Questions for NST

Power Analysis

Total Response Time Worst Case NST ~ 7 ms Data Acquisition ~ .5 ms Software Interpretation and Control ~ 3 ms Communication to NST ~ .2 ms Total Time = 10.7 ms Leaves 2 ms of overhead

Total Response Time Expected Time NST ~ 4 ms Data Acquisition ~ .5 ms Software Interpretation and Control ~ 1 ms Communication to NST ~ .2 ms Total Time = 5.7 ms Leaves 7 ms of overhead

Transfer Function Derivation To integrate the gyroscope data, Newton’s Method is applied to incoming data ?

Control Algorithm Back-Up Computing the correction can also be done by taking the following steps: 1) Integrate incoming data and store 2) Once there are 32 data points of position compute an FFT on the data. 3) Keep only those frequencies that are above a certain amplitude threshold. 4) Invert the remaining spectrum. 5) Compute the inverse FFT. 6) Send to NST module. 7) Repeat

Control Algorithm Back-Up The incoming integrated data will be held in an array that removes the oldest data to make room for the newest. x[n-1] x[n-2] x[n-3] ... x[n-32] This seems like a foolish thing to do because the only processing being done in the frequency domain is picking out the dominant frequencies and then inverting the resulting spectrum. It uses way more computation time than the proposed method and there is no reason to suspect a more than marginal, if that, increase in performance. x[n]

The peaks happen at 2n / Ts , if a pure sine wave is an input at these frequencies then the integrator will sample at the peaks of the wave and cause the output to increase with out bound Bode Plot 9

CAD Housing Models

Housing Layout

Housing Layout Side View

Risk Assessment: Battery

Risk Assessment: Gyroscope

Risk Assessment: Processor

Risk Assessment: Housing

Risk Assessment: System

Risk Assessment: Test Bench

Cost Analysis/BOM/Order Plan

Questions for NST Can you remove the USB connection from the board and leave contacts to solder wires to?