Multi-Domain Modeling: Electrical and Mechanical

Size: px
Start display at page:

Download "Multi-Domain Modeling: Electrical and Mechanical"

Transcription

1 Filename: AET_lab6b ECE535 Smart Sensors and Fuel Cell Laboratory #6b Objectives: Multi-Domain Modeling: Electrical and Mechanical 1. To study Multi-Domain Modeling, using MEMS Accelerometer.. To learn typical sensing converts signal in one domain to another ( Mechanical to Electrical). 3. To learn how to write DAE in each own domain. I. MEMS Accelerometer Structure Sensing is typically performed in two steps: Transform acceleration to mechanical displacement Transform mechanical displacement to electrical signal environmental acceleration Primary Transducer tethered seismic mass mechanical displacement Secondary Transducer capacitive electrical signal

2 Microflexural Structure

3 Mechanical Domain Portion of MEMS Accelerometer Daspot: (D) Model frictional resistance as damping force proportional to rate of movement (velocity) Seismic Mass (M): Model inertia as force proportional to rate of velocity (acceleration) Spring (K): Model structural elasticity as spring force proportional to movement F applied = F mass + F damping + F spring d x dx F(t) = M + D + Kx dt dt Inertia, dissipative, elasticity characteristics determine transient (time domain) and bandwidth (frequency domain) response. F( t) d x dx = G( t) = + ξω 0 + ω0x M dt dt ω = 0 ξ = ω = ω x a 0 1 = ω 0 K M D KM 1 ξ

4 Where: ω 0 ξ ω x/a natural resonant frequency - oscillation with no damping/forcing damping factor actual damping/critical damping damped resonant frequency primary transducer transfer function displacement/unit acceleration Electrical Domain Portion of MEMS Accelerometer Capacitive Sensing Seismic mass forms one plate of a parallel plate capacitance. Movement of mass changes area/gap between parallel plates and, consequently the capacitance. Differential Capacitance Sensing Easier to detect relative (differential) change rather than absolute change Comb finger capacitances connected in parallel to add to form C 1 and C. Sensing requires a bridge circuit with complementary AC source VS.

5 VS V + C1 - + I C1 VX + VS C I = C C1C C1 + C 1sVS = svs V X = V S V C1 = V S I sc1 = V S 1 sc1 C1C C1- C svs = VS C1 + C C1 + C C 1 = C C 1 C => no acceleration => acceleration II. MEMS Simulation Using Simplorer VHDL-AMS Draw the schematic diagram of the mems accelerometer. It consists of three voltage sources and comb_drive, where: env_force1 is the low frequency 100Hz source, emulating earthquake signal. Vsource1, and Vsource are the high frequency 1MHz sources for the capacitor bridge circuit to convert mechanical motion to electrical signal. Comb_drive is the mems vhdl-ams model of the accelerometer. Task1: In LISTING1, the complete VHDL-AMS code has been provided for the3999 voltage sources. For the comb-drive, only the port, generic and quantities are provided. You need to complete the dynamic equations of the comb-drive to complete the code.

6 vsource1 env_force1 ENV_FORCE mag_ac := 0.16e-9*5*9.8 freq := comb_drive1 comb_drive m := 0.16e-9 k :=.6455 d := 4.0e-6 a :=.0e-6*110.0e-6 do := 1.5e-6 VSOURCE mag_ac := 300.0e-3 freq := 1.0 Meg vsource VSOURCE r1 mag_ac := e-3 freq := 1.0Meg Figure 1. MEM accelerometer schematic diagram. r := 3.0Meg LISTING1 LIBRARY IEEE; USE IEEE.ENERGY_SYSTEMS.ALL; USE IEEE.ELECTRICAL_SYSTEMS.ALL; USE IEEE.MECHANICAL_SYSTEMS.ALL; ENTITY comb_drive IS GENERIC(m : MASS := 0.16*nano; d : DAMPING := 4.0e-6; k : STIFFNESS :=.6455; a : REAL :=.0e-6 * 110.0e-6; do : REAL := 1.5e-6); PORT(TERMINAL proof_mass, ref : TRANSLATIONAL; TERMINAL top_el, mid_el, bot_el : ELECTRICAL); END ENTITY comb_drive; ARCHITECTURE bcr OF comb_drive IS --Free quantities QUANTITY vel : VELOCITY; QUANTITY qtm, qbm : CHARGE; QUANTITY dtm, dbm : DISPLACEMENT; QUANTITY ctm, cbm : CAPACITANCE; --branch quantities QUANTITY pos ACROSS force THROUGH proof_mass TO ref; QUANTITY vtm ACROSS itm THROUGH top_el TO mid_el; QUANTITY vbm ACROSS ibm THROUGH bot_el TO mid_el; BEGIN --mechanical dynamics --compute displacement of comb drive

7 Write the mechanical dynamic equation of the following: vel=f(pos) force=f(pos,vel,acc) dtm=f(do, pos) dbm=f(do, pos) where: vel is the velocity of the middle plate acc is the acceleration of the middle plaate dtm is the displacement between the top and middle plate dbm is the displacement between the bottom and middle plate do is the initial displacement of the middle plate pos is the position of the middle plate --electrical dynamics --compute change in capacitance Write the formula of the capacitance between two parallel plates ctm =f(a, epso,dtm) cbm=f(a,epso,dbm) where: a is the area of the capacitor plate epso is the permittivity constant of vacuum energy_systems package ctm is the capacitance between the top and middle plate (C1) cbm is the capacitance between the bottom and middle plate (C) --compute generated current Write the equations of the charge and current of the capacitors qtm =f(ctm, vtm) itm=f(qtm) qbm=f(cbm, vbm) ibm=f(qbm) where: vtm is the applied voltage between the top and middle plate vbm is the applied voltage between the bottom and middle plate qtm is the charge of the top and middle capacitor itm is the current of the top and middle capacitor qbm is the charge of the bottom and middle capacitor ibm is the current of the bottom and middle capacitor END ARCHITECTURE bcr;

8 LIBRARY IEEE; USE IEEE.MATH_REAL.ALL; USE IEEE.MECHANICAL_SYSTEMS.ALL; ENTITY ENV_FORCE IS GENERIC(MAG_AC, MAG_DC : FORCE :=0.0; FREQ : REAL := 0.0); --GENERIC Parameters are CONSTANT, and NO QUANTITY PORT(TERMINAL PT1, PT : TRANSLATIONAL); END ENTITY ENV_FORCE; ARCHITECTURE SINE OF env_force IS QUANTITY FORCE THROUGH PT1 TO PT; BEGIN FORCE == MAG_AC*SIN(MATH PI*FREQ*NOW); END ARCHITECTURE SINE; LIBRARY IEEE; USE IEEE.MATH_REAL.ALL; USE IEEE.ELECTRICAL_SYSTEMS.ALL; ENTITY vsource IS GENERIC(MAG_AC, MAG_DC : VOLTAGE := 0.0; FREQ : REAL := 0.0); PORT (TERMINAL p, m : ELECTRICAL); END ENTITY vsource; ARCHITECTURE sine OF vsource IS QUANTITY v across i THROUGH p TO m; BEGIN v == mag_ac*sin(math PI*freq*NOW)+mag_dc; END ARCHITECTURE sine; Task : Show the output waveforms of env_force1, comb_deive1.dtm, and r1.v are shown in the following three graphs.

9 II. Signal Detection The modulated signal in r1.v can be demodulated by mixing the signal with a local oscillator with the same frequency as the carrier. [A(t)Sin x] Sin y = 0.5A(t)[cos(x-y) cos(x+y)] If x=y [A(t)Sin x] Sin x =0.5A(t)[1-cosx]=0.5A(t)-0.5A(t)cosx A(t) can be recovered by low pass filtering.

10 vsource3 electricalsfg VSOURCE ElectricalSfg vsource1 env_force1 ENV_FORCE mag_ac := 0.16e-9*5*9.8 freq := comb_drive1 comb_drive m := 0.16e-9 k :=.6455 d := 4.0e-6 a :=.0e-6*110.0e-6 do := 1.5e-6 VSOURCE mag_ac := 300.0e-3 freq := 1.0 Meg vsource VSOURCE r1 r := 3.0Meg mag_ac := e-3 freq := 1.0Meg electricalsfg1 ElectricalSfg mul1 Figure. MEM accelerometer with signal recovery schematic diagram. gs1 G(s) Task3: Update the schematic in Figure 1 to that shown in Figure, by adding the following: Vource3 is a voltage whose frequency is selected to demodulate the modulated signal r1.v to its base-band signal, use signal detection theory. Mul1 is multiplier device, which performs the demodulation operation. Gs1 is low pass filter whose transfer function is given G(s)=w/(s+w), where w= πf. NOTE select f to recover the desired signal of env_fource, whose frequency is 100Hz.

11 Task4: Show that the ouput of the low pass,gs1.val, is as shown below:

EE C245 / ME C218 INTRODUCTION TO MEMS DESIGN FALL 2011 C. Nguyen PROBLEM SET #7. Table 1: Gyroscope Modeling Parameters

EE C245 / ME C218 INTRODUCTION TO MEMS DESIGN FALL 2011 C. Nguyen PROBLEM SET #7. Table 1: Gyroscope Modeling Parameters Issued: Wednesday, Nov. 23, 2011. PROBLEM SET #7 Due (at 7 p.m.): Thursday, Dec. 8, 2011, in the EE C245 HW box in 240 Cory. 1. Gyroscopes are inertial sensors that measure rotation rate, which is an extremely

More information

Rapid SAW Sensor Development Tools

Rapid SAW Sensor Development Tools Rapid SAW Sensor Development Tools W. (Cy) Wilson NASA Langley Research Center G. M. Atkinson Virginia Commonwealth University Outline Motivation Introduction to Surface Acoustic Wave Devices Approach

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field

Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6- Transduction Based on Changes in the Energy Stored in an Electrical Field Actuator Examples Microgrippers Normal force driving In-plane force driving» Comb-drive device F = εav d 1 ε oε F rwv

More information

7.Piezoelectric, Accelerometer and Laser Sensors

7.Piezoelectric, Accelerometer and Laser Sensors 7.Piezoelectric, Accelerometer and Laser Sensors 7.1 Piezoelectric sensors: (Silva p.253) Piezoelectric materials such as lead-zirconate-titanate (PZT) can generate electrical charge and potential difference

More information

INF5490 RF MEMS. LN03: Modeling, design and analysis. Spring 2008, Oddvar Søråsen Department of Informatics, UoO

INF5490 RF MEMS. LN03: Modeling, design and analysis. Spring 2008, Oddvar Søråsen Department of Informatics, UoO INF5490 RF MEMS LN03: Modeling, design and analysis Spring 2008, Oddvar Søråsen Department of Informatics, UoO 1 Today s lecture MEMS functional operation Transducer principles Sensor principles Methods

More information

MEMS Tuning-Fork Gyroscope Mid-Term Report Amanda Bristow Travis Barton Stephen Nary

MEMS Tuning-Fork Gyroscope Mid-Term Report Amanda Bristow Travis Barton Stephen Nary MEMS Tuning-Fork Gyroscope Mid-Term Report Amanda Bristow Travis Barton Stephen Nary Abstract MEMS based gyroscopes have gained in popularity for use as rotation rate sensors in commercial products like

More information

EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1

EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1 EE 242 EXPERIMENT 8: CHARACTERISTIC OF PARALLEL RLC CIRCUIT BY USING PULSE EXCITATION 1 PURPOSE: To experimentally study the behavior of a parallel RLC circuit by using pulse excitation and to verify that

More information

(Refer Slide Time: 1: 19)

(Refer Slide Time: 1: 19) Mechanical Measurements and Metrology Prof. S. P. Venkateshan Department of Mechanical Engineering Indian Institute of Technology, Madras Module - 4 Lecture - 46 Force Measurement So this will be lecture

More information

Midterm 2 PROBLEM POINTS MAX

Midterm 2 PROBLEM POINTS MAX Midterm 2 PROBLEM POINTS MAX 1 30 2 24 3 15 4 45 5 36 1 Personally, I liked the University; they gave us money and facilities, we didn't have to produce anything. You've never been out of college. You

More information

Module I Module I: traditional test instrumentation and acquisition systems. Prof. Ramat, Stefano

Module I Module I: traditional test instrumentation and acquisition systems. Prof. Ramat, Stefano Preparatory Course (task NA 3.6) Basics of experimental testing and theoretical background Module I Module I: traditional test instrumentation and acquisition systems Prof. Ramat, Stefano Transducers A

More information

Design of a MEMS Capacitive Comb-drive Accelerometer

Design of a MEMS Capacitive Comb-drive Accelerometer Design of a MEMS Capacitive Comb-drive Accelerometer Tolga Kaya* 1, Behrouz Shiari 2, Kevin Petsch 1 and David Yates 2 1 Central Michigan University, 2 University of Michigan * kaya2t@cmich.edu Abstract:

More information

Lecture 19. Measurement of Solid-Mechanical Quantities (Chapter 8) Measuring Strain Measuring Displacement Measuring Linear Velocity

Lecture 19. Measurement of Solid-Mechanical Quantities (Chapter 8) Measuring Strain Measuring Displacement Measuring Linear Velocity MECH 373 Instrumentation and Measurements Lecture 19 Measurement of Solid-Mechanical Quantities (Chapter 8) Measuring Strain Measuring Displacement Measuring Linear Velocity Measuring Accepleration and

More information

Arrow Brasil. Rodrigo Rodrigues Field Application Engineer F: Date: 30/01/2014 TM 2

Arrow Brasil. Rodrigo Rodrigues Field Application Engineer F: Date: 30/01/2014 TM 2 TM Arrow Brasil Rodrigo Rodrigues Field Application Engineer Rodrigo.rodrigues@arrowbrasil.com.br F:+55 11 3613-9331 Date: 30/01/2014 TM 2 State-of-the-art review Introduction How a Gyro Works Performance

More information

EE C245 ME C218 Introduction to MEMS Design Fall 2007

EE C245 ME C218 Introduction to MEMS Design Fall 2007 EE C45 ME C8 Introduction to MEMS Design Fall 007 Prof. Clark T.C. Nguyen Dept. of Electrical Engineering & Computer Sciences University of California at Berkeley Berkeley, CA 9470 Lecture 3: Input Modeling

More information

The Harmonic Oscillator

The Harmonic Oscillator The Harmonic Oscillator Math 4: Ordinary Differential Equations Chris Meyer May 3, 008 Introduction The harmonic oscillator is a common model used in physics because of the wide range of problems it can

More information

Modeling and Design of MEMS Accelerometer to detect vibrations on chest wall

Modeling and Design of MEMS Accelerometer to detect vibrations on chest wall Modeling and Design of MEMS Accelerometer to detect vibrations on chest wall P. Georgia Chris Selwyna 1, J.Samson Isaac 2 1 M.Tech Biomedical Instrumentation, Department of EIE, Karunya University, Coimbatore

More information

CHAPTER 22 ELECTROMAGNETIC INDUCTION

CHAPTER 22 ELECTROMAGNETIC INDUCTION CHAPTER 22 ELECTROMAGNETIC INDUCTION PROBLEMS 47. REASONING AND Using Equation 22.7, we find emf 2 M I or M ( emf 2 ) t ( 0.2 V) ( 0.4 s) t I (.6 A) ( 3.4 A) 9.3 0 3 H 49. SSM REASONING AND From the results

More information

Chapter 8. Model of the Accelerometer. 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation

Chapter 8. Model of the Accelerometer. 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation Chapter 8. Model of the Accelerometer 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation 8.2.1 Basic equations 8.2.2 Resonant frequency 8.2.3 Squeeze-film damping 8.2 The dynamic model

More information

E05 Resonator Design

E05 Resonator Design POLITECNICO DI MILANO MSC COURSE - MEMS AND MICROSENSORS - 2018/2019 E05 Resonator Design Giorgio Mussi 16/10/2018 In this class we will learn how an in-plane MEMS resonator handles process variabilities,

More information

Chapter 8. Model of the Accelerometer. 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation

Chapter 8. Model of the Accelerometer. 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation Chapter 8. Model of the Accelerometer 8.1 The static model 8.2 The dynamic model 8.3 Sensor System simulation 8.3 Sensor System Simulation In order to predict the behavior of the mechanical sensor in combination

More information

Reduced Order Modeling Enables System Level Simulation of a MEMS Piezoelectric Energy Harvester with a Self-Supplied SSHI-Scheme

Reduced Order Modeling Enables System Level Simulation of a MEMS Piezoelectric Energy Harvester with a Self-Supplied SSHI-Scheme Reduced Order Modeling Enables System Level Simulation of a MEMS Piezoelectric Energy Harvester with a Self-Supplied SSHI-Scheme F. Sayed 1, D. Hohlfeld², T. Bechtold 1 1 Institute for Microsystems Engineering,

More information

EE 5344 Introduction to MEMS CHAPTER 6 Mechanical Sensors. 1. Position Displacement x, θ 2. Velocity, speed Kinematic

EE 5344 Introduction to MEMS CHAPTER 6 Mechanical Sensors. 1. Position Displacement x, θ 2. Velocity, speed Kinematic I. Mechanical Measurands: 1. Classification of main types: EE 5344 Introduction MEMS CHAPTER 6 Mechanical Sensors 1. Position Displacement x, θ. Velocity, speed Kinematic dx dθ v =, = ω 3. Acceleration

More information

EE C245 / ME C218 INTRODUCTION TO MEMS DESIGN FALL 2009 PROBLEM SET #7. Due (at 7 p.m.): Thursday, Dec. 10, 2009, in the EE C245 HW box in 240 Cory.

EE C245 / ME C218 INTRODUCTION TO MEMS DESIGN FALL 2009 PROBLEM SET #7. Due (at 7 p.m.): Thursday, Dec. 10, 2009, in the EE C245 HW box in 240 Cory. Issued: Thursday, Nov. 24, 2009 PROBLEM SET #7 Due (at 7 p.m.): Thursday, Dec. 10, 2009, in the EE C245 HW box in 240 Cory. 1. Gyroscopes are inertial sensors that measure rotation rate, which is an extremely

More information

E08 Gyroscope Drive Design

E08 Gyroscope Drive Design POLITECNICO DI MILANO MSC COURSE - MEMS AND MICROSENSORS - 207/208 E08 Gyroscope Drive Design Paolo Minotti 26/0/207 PROBLEM We have to design the electronic circuit needed to sustain the oscillation of

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

MAE106 Laboratory Exercises Lab # 6 - Vibrating systems

MAE106 Laboratory Exercises Lab # 6 - Vibrating systems MAE106 Laboratory Exercises Lab # 6 - Vibrating systems Goals Understand how the oscillations in a mechanical system affect its behavior. Parts & equipment Qty Part/Equipment 1 Seeeduino board 1 Motor

More information

School of Engineering Faculty of Built Environment, Engineering, Technology & Design

School of Engineering Faculty of Built Environment, Engineering, Technology & Design Module Name and Code : ENG60803 Real Time Instrumentation Semester and Year : Semester 5/6, Year 3 Lecture Number/ Week : Lecture 3, Week 3 Learning Outcome (s) : LO5 Module Co-ordinator/Tutor : Dr. Phang

More information

1 Phasors and Alternating Currents

1 Phasors and Alternating Currents Physics 4 Chapter : Alternating Current 0/5 Phasors and Alternating Currents alternating current: current that varies sinusoidally with time ac source: any device that supplies a sinusoidally varying potential

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2003 Experiment 17: RLC Circuit (modified 4/15/2003) OBJECTIVES

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2003 Experiment 17: RLC Circuit (modified 4/15/2003) OBJECTIVES MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8. Spring 3 Experiment 7: R Circuit (modified 4/5/3) OBJECTIVES. To observe electrical oscillations, measure their frequencies, and verify energy

More information

Chapter 31: RLC Circuits. PHY2049: Chapter 31 1

Chapter 31: RLC Circuits. PHY2049: Chapter 31 1 hapter 31: RL ircuits PHY049: hapter 31 1 L Oscillations onservation of energy Topics Damped oscillations in RL circuits Energy loss A current RMS quantities Forced oscillations Resistance, reactance,

More information

Experimental analysis of spring hardening and softening nonlinearities in. microelectromechanical oscillators. Sarah Johnson

Experimental analysis of spring hardening and softening nonlinearities in. microelectromechanical oscillators. Sarah Johnson Experimental analysis of spring hardening and softening nonlinearities in microelectromechanical oscillators. Sarah Johnson Department of Physics, University of Florida Mentored by Dr. Yoonseok Lee Abstract

More information

An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops

An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops BMAS 2007, San Jose, 20-21 September 2007 An efficient and accurate MEMS accelerometer model with sense finger dynamics for applications in mixed-technology control loops Chenxu Zhao, Leran Wang and Tom

More information

A parametric amplification measurement scheme for MEMS in highly damped media. Cadee Hall. Department of Physics, University of Florida

A parametric amplification measurement scheme for MEMS in highly damped media. Cadee Hall. Department of Physics, University of Florida A parametric amplification measurement scheme for MEMS in highly damped media Cadee Hall Department of Physics, University of Florida Lee Research Group 1 ABSTRACT Micro-electro-mechanical systems (MEMS)

More information

where C f = A ρ g fluid capacitor But when squeezed, h (and hence P) may vary with time even though V does not. Seems to imply C f = C f (t)

where C f = A ρ g fluid capacitor But when squeezed, h (and hence P) may vary with time even though V does not. Seems to imply C f = C f (t) ENERGY-STORING COUPLING BETWEEN DOMAINS MULTI-PORT ENERGY STORAGE ELEMENTS Context: examine limitations of some basic model elements. EXAMPLE: open fluid container with deformable walls P = ρ g h h = A

More information

Design and Analysis of dual Axis MEMS Capacitive Accelerometer

Design and Analysis of dual Axis MEMS Capacitive Accelerometer International Journal of Electronics Engineering Research. ISSN 0975-6450 Volume 9, Number 5 (2017) pp. 779-790 Research India Publications http://www.ripublication.com Design and Analysis of dual Axis

More information

Physics Based Approach to Multi-domain Multilevel System Simulation

Physics Based Approach to Multi-domain Multilevel System Simulation Physics Based Approach to Multi-domain Multilevel System Simulation 2011 REGIONAL CONFERENCES 1 ANSYS, Inc. Mark Christini ANSYS & Process Engineering System Sub-System ANSYS - Simplorer Mixed-Signal Multi-Domain

More information

Physics 4B Chapter 31: Electromagnetic Oscillations and Alternating Current

Physics 4B Chapter 31: Electromagnetic Oscillations and Alternating Current Physics 4B Chapter 31: Electromagnetic Oscillations and Alternating Current People of mediocre ability sometimes achieve outstanding success because they don't know when to quit. Most men succeed because

More information

4.2 Homogeneous Linear Equations

4.2 Homogeneous Linear Equations 4.2 Homogeneous Linear Equations Homogeneous Linear Equations with Constant Coefficients Consider the first-order linear differential equation with constant coefficients a 0 and b. If f(t) = 0 then this

More information

Microstructure cantilever beam for current measurement

Microstructure cantilever beam for current measurement 264 South African Journal of Science 105 July/August 2009 Research Articles Microstructure cantilever beam for current measurement HAB Mustafa and MTE Khan* Most microelectromechanical systems (MEMS) sensors

More information

Unit 3 Transducers. Lecture_3.1 Introduction to Transducers

Unit 3 Transducers. Lecture_3.1 Introduction to Transducers Unit 3 Transducers Lecture_3.1 Introduction to Transducers Introduction to transducers A transducer is a device that converts one form of energy to other form. It converts the measurand to a usable electrical

More information

Dynamic circuits: Frequency domain analysis

Dynamic circuits: Frequency domain analysis Electronic Circuits 1 Dynamic circuits: Contents Free oscillation and natural frequency Transfer functions Frequency response Bode plots 1 System behaviour: overview 2 System behaviour : review solution

More information

ECE421: Electronics for Instrumentation MEP382: Design of Applied Measurement Systems Lecture #2: Transduction Mechanisms

ECE421: Electronics for Instrumentation MEP382: Design of Applied Measurement Systems Lecture #2: Transduction Mechanisms ECE421: Electronics for Instrumentation MEP382: Design of Applied Measurement Systems Lecture #2: Transduction Mechanisms Mostafa Soliman, Ph.D. April 28 th 2014 Slides are borrowed from Dr. Moahmed Elshiekh

More information

AC Circuits Homework Set

AC Circuits Homework Set Problem 1. In an oscillating LC circuit in which C=4.0 μf, the maximum potential difference across the capacitor during the oscillations is 1.50 V and the maximum current through the inductor is 50.0 ma.

More information

b. The displacement of the mass due to a constant acceleration a is x=

b. The displacement of the mass due to a constant acceleration a is x= EE147/247A Final, Fall 2013 Page 1 /35 2 /55 NO CALCULATORS, CELL PHONES, or other electronics allowed. Show your work, and put final answers in the boxes provided. Use proper units in all answers. 1.

More information

10 Measurement of Acceleration, Vibration and Shock Transducers

10 Measurement of Acceleration, Vibration and Shock Transducers Chapter 10: Acceleration, Vibration and Shock Measurement Dr. Lufti Al-Sharif (Revision 1.0, 25/5/2008) 1. Introduction This chapter examines the measurement of acceleration, vibration and shock. It starts

More information

DAMPING CONTROL OF A PZT MULTILAYER VIBRATION USING NEGATIVE IMPEDANCE CIRCUIT

DAMPING CONTROL OF A PZT MULTILAYER VIBRATION USING NEGATIVE IMPEDANCE CIRCUIT International Workshop SMART MATERIALS, STRUCTURES & NDT in AEROSPACE Conference NDT in Canada 2011 2-4 November 2011, Montreal, Quebec, Canada DAMPING CONTROL OF A PZT MULTILAYER VIBRATION USING NEGATIVE

More information

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as

In the presence of viscous damping, a more generalized form of the Lagrange s equation of motion can be written as 2 MODELING Once the control target is identified, which includes the state variable to be controlled (ex. speed, position, temperature, flow rate, etc), and once the system drives are identified (ex. force,

More information

MODULE-4 RESONANCE CIRCUITS

MODULE-4 RESONANCE CIRCUITS Introduction: MODULE-4 RESONANCE CIRCUITS Resonance is a condition in an RLC circuit in which the capacitive and inductive Reactance s are equal in magnitude, there by resulting in purely resistive impedance.

More information

Chapter 21 Electric Charge

Chapter 21 Electric Charge Chapter 21 Electric Charge Historically people knew of electrostatic effects Hair attracted to amber rubbed on clothes People could generate sparks Recorded in ancient Greek history 600 BC Thales of Miletus

More information

WPI Physics Dept. Intermediate Lab 2651 Free and Damped Electrical Oscillations

WPI Physics Dept. Intermediate Lab 2651 Free and Damped Electrical Oscillations WPI Physics Dept. Intermediate Lab 2651 Free and Damped Electrical Oscillations Qi Wen March 11, 2017 Index: 1. Background Material, p. 2 2. Pre-lab Exercises, p. 4 3. Report Checklist, p. 6 4. Appendix,

More information

R10 JNTUWORLD B 1 M 1 K 2 M 2. f(t) Figure 1

R10 JNTUWORLD B 1 M 1 K 2 M 2. f(t) Figure 1 Code No: R06 R0 SET - II B. Tech II Semester Regular Examinations April/May 03 CONTROL SYSTEMS (Com. to EEE, ECE, EIE, ECC, AE) Time: 3 hours Max. Marks: 75 Answer any FIVE Questions All Questions carry

More information

MCE603: Interfacing and Control of Mechatronic Systems. Chapter 1: Impedance Analysis for Electromechanical Interfacing

MCE603: Interfacing and Control of Mechatronic Systems. Chapter 1: Impedance Analysis for Electromechanical Interfacing MCE63: Interfacing and Control of Mechatronic Systems Chapter 1: Impedance Analysis for Electromechanical Interfacing Part B: Input and Output Impedance Cleveland State University Mechanical Engineering

More information

Multi-domain Modeling and Simulation of a Linear Actuation System

Multi-domain Modeling and Simulation of a Linear Actuation System Multi-domain Modeling and Simulation of a Linear Actuation System Deepika Devarajan, Scott Stanton, Birgit Knorr Ansoft Corporation Pittsburgh, PA, USA Abstract In this paper, VHDL-AMS is used for the

More information

Accelerometer Theory & Design

Accelerometer Theory & Design 11 Chapter 2 Accelerometer Theory & Design 2.1 Introduction An accelerometer is a sensor that measures the physical acceleration experienced by an object due to inertial forces or due to mechanical excitation.

More information

EE C245 ME C218 Introduction to MEMS Design Fall 2012

EE C245 ME C218 Introduction to MEMS Design Fall 2012 EE C245 ME C218 Introduction to MEMS Design Fall 2012 Prof. Clark T.-C. Nguyen Dept. of Electrical Engineering & Computer Sciences University of California at Berkeley Berkeley, CA 94720 Lecture EE C245:

More information

A Guide to linear dynamic analysis with Damping

A Guide to linear dynamic analysis with Damping A Guide to linear dynamic analysis with Damping This guide starts from the applications of linear dynamic response and its role in FEA simulation. Fundamental concepts and principles will be introduced

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 2. Exam location: 145 Dwinelle, last SID# 2

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 2. Exam location: 145 Dwinelle, last SID# 2 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 2 Exam location: 145 Dwinelle, last SID# 2 PRINT your student ID: PRINT AND SIGN your name:,

More information

Module 25: Outline Resonance & Resonance Driven & LRC Circuits Circuits 2

Module 25: Outline Resonance & Resonance Driven & LRC Circuits Circuits 2 Module 25: Driven RLC Circuits 1 Module 25: Outline Resonance & Driven LRC Circuits 2 Driven Oscillations: Resonance 3 Mass on a Spring: Simple Harmonic Motion A Second Look 4 Mass on a Spring (1) (2)

More information

Page AC : INSTRUMENTATION FOR SHOCK AND IMPACT ANALYSIS

Page AC : INSTRUMENTATION FOR SHOCK AND IMPACT ANALYSIS AC 2010-2123: INSTRUMENTATION FOR SHOCK AND IMPACT ANALYSIS Randy Buchanan, University of Southern Mississippi Steven Bunkley, University of Southern Mississippi American Society for Engineering Education,

More information

ES 272 Assignment #2. in,3

ES 272 Assignment #2. in,3 ES 272 Assignment #2 Due: March 14th, 2014; 5pm sharp, in the dropbox outside MD 131 (Donhee Ham office) Instructor: Donhee Ham (copyright c 2014 by D. Ham) (Problem 1) The kt/c Noise (50pt) Imagine an

More information

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems

ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems ET3-7: Modelling II(V) Electrical, Mechanical and Thermal Systems Agenda of the Day 1. Resume of lesson I 2. Basic system models. 3. Models of basic electrical system elements 4. Application of Matlab/Simulink

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 04 ELECTRONICS AND COMMUNICATION ENGINEERING Name : Electronic Measurements and Instrumentation Code : A50422 Class : III -

More information

CHAPTER 4 DESIGN AND ANALYSIS OF CANTILEVER BEAM ELECTROSTATIC ACTUATORS

CHAPTER 4 DESIGN AND ANALYSIS OF CANTILEVER BEAM ELECTROSTATIC ACTUATORS 61 CHAPTER 4 DESIGN AND ANALYSIS OF CANTILEVER BEAM ELECTROSTATIC ACTUATORS 4.1 INTRODUCTION The analysis of cantilever beams of small dimensions taking into the effect of fringing fields is studied and

More information

Lecture 20. Measuring Pressure and Temperature (Chapter 9) Measuring Pressure Measuring Temperature MECH 373. Instrumentation and Measurements

Lecture 20. Measuring Pressure and Temperature (Chapter 9) Measuring Pressure Measuring Temperature MECH 373. Instrumentation and Measurements MECH 373 Instrumentation and Measurements Lecture 20 Measuring Pressure and Temperature (Chapter 9) Measuring Pressure Measuring Temperature 1 Measuring Acceleration and Vibration Accelerometers using

More information

Alternating Current. Symbol for A.C. source. A.C.

Alternating Current. Symbol for A.C. source. A.C. Alternating Current Kirchoff s rules for loops and junctions may be used to analyze complicated circuits such as the one below, powered by an alternating current (A.C.) source. But the analysis can quickly

More information

Module 24: Outline. Expt. 8: Part 2:Undriven RLC Circuits

Module 24: Outline. Expt. 8: Part 2:Undriven RLC Circuits Module 24: Undriven RLC Circuits 1 Module 24: Outline Undriven RLC Circuits Expt. 8: Part 2:Undriven RLC Circuits 2 Circuits that Oscillate (LRC) 3 Mass on a Spring: Simple Harmonic Motion (Demonstration)

More information

Conventional Paper-I-2011 PART-A

Conventional Paper-I-2011 PART-A Conventional Paper-I-0 PART-A.a Give five properties of static magnetic field intensity. What are the different methods by which it can be calculated? Write a Maxwell s equation relating this in integral

More information

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering

Transduction Based on Changes in the Energy Stored in an Electrical Field. Lecture 6-5. Department of Mechanical Engineering Transduction Based on Changes in the Energy Stored in an Electrical Field Lecture 6-5 Transducers with cylindrical Geometry For a cylinder of radius r centered inside a shell with with an inner radius

More information

Handout 11: AC circuit. AC generator

Handout 11: AC circuit. AC generator Handout : AC circuit AC generator Figure compares the voltage across the directcurrent (DC) generator and that across the alternatingcurrent (AC) generator For DC generator, the voltage is constant For

More information

Lab #4 Capacitors and Inductors. Capacitor Transient and Steady State Response

Lab #4 Capacitors and Inductors. Capacitor Transient and Steady State Response Capacitor Transient and Steady State Response Like resistors, capacitors are also basic circuit elements. Capacitors come in a seemingly endless variety of shapes and sizes, and they can all be represented

More information

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad DEPARTMENT OF ECE QUESTION BANK. : G.Lakshminarayana, Asst.

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad DEPARTMENT OF ECE QUESTION BANK. : G.Lakshminarayana, Asst. ` INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad - 500 04 DEPARTMENT OF ECE QUESTION BANK Name Code Class Branch P a g e : Electronic Measurements and Instrumentation : A504 : III - B. Tech

More information

RLC Circuit (3) We can then write the differential equation for charge on the capacitor. The solution of this differential equation is

RLC Circuit (3) We can then write the differential equation for charge on the capacitor. The solution of this differential equation is RLC Circuit (3) We can then write the differential equation for charge on the capacitor The solution of this differential equation is (damped harmonic oscillation!), where 25 RLC Circuit (4) If we charge

More information

Comb Resonator Design (1)

Comb Resonator Design (1) Lecture 5: Comb Resonator Design (1) Sh School of felectrical ti lengineering i and dcomputer Science, Si Seoul National University Nano/Micro Systems & Controls Laboratory Email: dicho@snu.ac.kr URL:

More information

12 Chapter Driven RLC Circuits

12 Chapter Driven RLC Circuits hapter Driven ircuits. A Sources... -. A ircuits with a Source and One ircuit Element... -3.. Purely esistive oad... -3.. Purely Inductive oad... -6..3 Purely apacitive oad... -8.3 The Series ircuit...

More information

1. Distinguish the important characteristics of instrument that are totally electrical and totally electronic in nature. [16]

1. Distinguish the important characteristics of instrument that are totally electrical and totally electronic in nature. [16] Code No: RR320204 Set No. 1 1. Distinguish the important characteristics of instrument that are totally electrical and totally electronic in nature. [16] 2. Distinguish between deterministic signals and

More information

Piezoelectric Resonators ME 2082

Piezoelectric Resonators ME 2082 Piezoelectric Resonators ME 2082 Introduction K T : relative dielectric constant of the material ε o : relative permittivity of free space (8.854*10-12 F/m) h: distance between electrodes (m - material

More information

Dynamic Modeling. For the mechanical translational system shown in Figure 1, determine a set of first order

Dynamic Modeling. For the mechanical translational system shown in Figure 1, determine a set of first order QUESTION 1 For the mechanical translational system shown in, determine a set of first order differential equations describing the system dynamics. Identify the state variables and inputs. y(t) x(t) k m

More information

Version 001 CIRCUITS holland (1290) 1

Version 001 CIRCUITS holland (1290) 1 Version CIRCUITS holland (9) This print-out should have questions Multiple-choice questions may continue on the next column or page find all choices before answering AP M 99 MC points The power dissipated

More information

Measurement Techniques for Engineers. Motion and Vibration Measurement

Measurement Techniques for Engineers. Motion and Vibration Measurement Measurement Techniques for Engineers Motion and Vibration Measurement Introduction Quantities that may need to be measured are velocity, acceleration and vibration amplitude Quantities useful in predicting

More information

Introduction to Geotechnical Earthquake Engineering

Introduction to Geotechnical Earthquake Engineering Module 1 Introduction to Geotechnical Earthquake Engineering by Dr. Deepankar Choudhury Professor Department of Civil Engineering IIT Bombay, Powai, Mumbai 400 076, India. Email: dc@civil.iitb.ac.in URL:

More information

Robotics Intelligent sensors (part 2)

Robotics Intelligent sensors (part 2) Robotics Intelligent sensors (part ) Tullio Facchinetti Tuesday 6 th December, 06 http://robot.unipv.it/toolleeo Pressure measurement static pressure is a force applied to

More information

Dynamics of Structures

Dynamics of Structures Dynamics of Structures Elements of structural dynamics Roberto Tomasi 11.05.2017 Roberto Tomasi Dynamics of Structures 11.05.2017 1 / 22 Overview 1 SDOF system SDOF system Equation of motion Response spectrum

More information

2.004 Dynamics and Control II Spring 2008

2.004 Dynamics and Control II Spring 2008 MT OpenCourseWare http://ocwmitedu 200 Dynamics and Control Spring 200 For information about citing these materials or our Terms of Use, visit: http://ocwmitedu/terms Massachusetts nstitute of Technology

More information

Frequency Response Prof. Ali M. Niknejad Prof. Rikky Muller

Frequency Response Prof. Ali M. Niknejad Prof. Rikky Muller EECS 105 Spring 2017, Module 4 Frequency Response Prof. Ali M. Niknejad Department of EECS Announcements l HW9 due on Friday 2 Review: CD with Current Mirror 3 Review: CD with Current Mirror 4 Review:

More information

ECE 524: Reducing Capacitor Switching Transients

ECE 524: Reducing Capacitor Switching Transients ECE 54: Session 6; Page / Spring 08 ECE 54: Reducing Capacitor Switching Transients Define units: MW 000kW MVA MW MVAr MVA Example : f 60Hz ω πf ω 76.99 rad s t 0 0.00000sec 60 sec Add inductive reactance

More information

HOMEWORK ANSWERS. Lesson 4.1: Simple Harmonic Motion

HOMEWORK ANSWERS. Lesson 4.1: Simple Harmonic Motion DEVIL PHYSICS HOMEWORK ANSWERS Tsokos, Chapter 3 Test Lesson 4.1: Simple Harmonic Motion 1. Objectives. By the end of this class you should be able to: a) Understand that in simple harmonic motion there

More information

ET-105(A) : PHYSICS. Show that only an infinitesimal rotation can be regarded as a vector.

ET-105(A) : PHYSICS. Show that only an infinitesimal rotation can be regarded as a vector. No. of Printed Pages : 7 ET-105(A) B.Tech. Civil (Construction Management) / B.Tech. Civil (Water Resources Engineering) / BTCLEVI / BTMEVI / BTELVI / BTECVI / BTCSVI Term-End Examination June, 2017 ET-105(A)

More information

Last Name Minotti Given Name Paolo ID Number

Last Name Minotti Given Name Paolo ID Number Last Name Minotti Given Name Paolo ID Number 20180131 Question n. 1 Draw and describe the simplest electrical equivalent model of a 3-port MEMS resonator, and its frequency behavior. Introduce possible

More information

ECE 524: Lecture 15 Reducing Capacitor Switching Transients. jx s C 2 C 1. Define units: MW 1000kW MVA MW MVAr MVA. rad s

ECE 524: Lecture 15 Reducing Capacitor Switching Transients. jx s C 2 C 1. Define units: MW 1000kW MVA MW MVAr MVA. rad s ECE 54: Session 5; Page / Spring 04 ECE 54: Lecture 5 Reducing Capacitor Switching Transients Define units: MW 000kW MVA MW MVAr MVA Example : f 60Hz ω πf ω 76.99 rad s t 0 0.00000sec 60 sec Add inductive

More information

Scanned by CamScanner

Scanned by CamScanner Scanned by CamScanner Scanned by CamScanner t W I w v 6.00-fall 017 Midterm 1 Name Problem 3 (15 pts). F the circuit below, assume that all equivalent parameters are to be found to the left of port

More information

1 The frequency response of the basic mechanical oscillator

1 The frequency response of the basic mechanical oscillator Seismograph systems The frequency response of the basic mechanical oscillator Most seismographic systems are based on a simple mechanical oscillator really just a mass suspended by a spring with some method

More information

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion Harmonic Oscillator Mass-Spring Oscillator Resonance The Pendulum Physics 109, Class Period 13 Experiment Number 11 in the Physics 121 Lab Manual (page 65) Outline Simple harmonic motion The vertical mass-spring

More information

MATHEMATICAL MODELING OF DYNAMIC SYSTEMS

MATHEMATICAL MODELING OF DYNAMIC SYSTEMS MTHEMTIL MODELIN OF DYNMI SYSTEMS Mechanical Translational System 1. Spring x(t) k F S (t) k x(t) x i (t) k x o (t) 2. Damper x(t) x i (t) x o (t) c c 3. Mass x(t) F(t) m EXMPLE I Produce the block diagram

More information

A m. Q m P. piston or diaphragm

A m. Q m P. piston or diaphragm Massachusetts Institute of echnology Department of Mechanical Engineering 2.141 Modeling and Simulation of Dynamic Systems 2.141 Assignment #3: GAS-CHARGED ACCUMULAOR he figure below (after Pourmovahed

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 ELECTRONICS AND COMMUNICATION ENGINEERING Course Name : Electronic Measurements and Instrumentation Course Code : A50422

More information

CBSE 12th Physics 2016 Unsolved Paper Delhi Board ARYAN INSTITUTE

CBSE 12th Physics 2016 Unsolved Paper Delhi Board ARYAN INSTITUTE CBSE 12th Physics 2016 Unsolved Paper Delhi Board CBSE 12th Physics 2016 Unsolved Paper Delhi Board TIME - 3HR. QUESTIONS - 26 THE MARKS ARE MENTIONED ON EACH QUESTION SECTION-A Q.1. A point charge +Q

More information

BE 3600 BIOMEDICAL INSTRUMENTATION (LAB) - WEEK 2

BE 3600 BIOMEDICAL INSTRUMENTATION (LAB) - WEEK 2 BE 3600 BIOMEDICAL INSTRUMENTATION (LAB) - WEEK 2 Principles of Biosensors OBJECTIVE: Learn the various modalities for construction of sensors utilizing electrical and optical measurement techniques. EXPERIMENT

More information

AP Physics C Mechanics Objectives

AP Physics C Mechanics Objectives AP Physics C Mechanics Objectives I. KINEMATICS A. Motion in One Dimension 1. The relationships among position, velocity and acceleration a. Given a graph of position vs. time, identify or sketch a graph

More information

A CAPACITIVE ACCELEROMETER MODEL

A CAPACITIVE ACCELEROMETER MODEL Électronique et transmission de l information A CAPACITIVE ACCELEROMETER MODEL FLORIN CONSTANTINESCU, ALEXANDRU GABRIEL GHEORGHE, MIRUNA NIŢESCU *1 Key words: MEMS models, Transient analysis, Capacitive

More information

Introduction to structural dynamics

Introduction to structural dynamics Introduction to structural dynamics p n m n u n p n-1 p 3... m n-1 m 3... u n-1 u 3 k 1 c 1 u 1 u 2 k 2 m p 1 1 c 2 m2 p 2 k n c n m n u n p n m 2 p 2 u 2 m 1 p 1 u 1 Static vs dynamic analysis Static

More information