SUGAR: Simulating MEMS

Size: px
Start display at page:

Download "SUGAR: Simulating MEMS"

Transcription

1 SUGAR: Simulating MEMS David Bindel UC Berkeley, CS Division SUGAR: Simulating MEMS p.1/30

2 Outline SUGAR group and research goals Microsystems overview Simulation methodology Software architecture Research directions Concluding thoughts SUGAR: Simulating MEMS p.2/30

3 SUGAR: System simulation Goal: Be SPICE to the MEMS world Fast enough for early design stages Simple enough to attract users Capable of simulating interesting coupled physics SUGAR: Simulating MEMS p.3/30

4 SUGAR group Faculty Grad students A. Agogino D. Bindel Z. Bai J.V. Clark J. Demmel D. Garmire S. Govindjee R. Kamalian K.S.J. Pister S. Lakshmin J. Nie SUGAR: Simulating MEMS p.4/30

5 Microsystem applications Multi-domain micromachines made with IC fab technology. Inertial sensors: accelerometers, gyros Fluidics: ink jet printers, biolab chips Optics: optical switches, projectors Pressure sensors: industrial, medical, auto RF devices: cell phone, radar components Other: microrelays, sensors, disk heads (List from Microsystem Design by S. Senturia) SUGAR: Simulating MEMS p.5/30

6 Microscale physics Surface area / volume ratio is large (compared to most macroscopic structures) Gravitational forces negligible Electrostatic forces substantial Frictional forces (particularly stiction ) important Air behaves like a very viscous fluid (Re << 1) Still classical (vs. nanosystems) SUGAR: Simulating MEMS p.6/30

7 Simulation approaches What? Systems vs devices vs TCAD. Why? Brainstorming, tuning, design verification,... How? Solve continuum equations (finite elements, finite differences, boundary elements) Solve simplified equations of beam and plate theory Solve network equations These approaches are not mutually exclusive! SUGAR: Simulating MEMS p.7/30

8 Modeling approach Similar to circuit and structure simulators; systems modelers Add multiphysics: electro-thermo-mechanical coupling, damping interactions Use balance laws + element models: LRC elements, sources Beams, rigid connectors, plates, point masses, forces Gaps and combs SUGAR: Simulating MEMS p.8/30

9 What can we model? SUGAR: Simulating MEMS p.9/30

10 Of PDEs and ODEs Get ODEs from spatial discretization of PDEs. Simple example is a Hookean rod: ρau tt + EAu xx = F (x, t) and u(0, t) = 0, u(x, 0) = 0 Rewrite PDE in weak form : for any weight w, L 0 w(x, t) EAu xx (x, t) dx = L 0 w F (x, t) dx Assume u(x, t) = û(t) x/l and w(x, t) = αx/l to get Mû tt (t) + Kû(t) = ˆF (t) SUGAR: Simulating MEMS p.10/30

11 Balance laws Local element relations are assembled based on global balance principles: Circuits: KCL and KVL Mechanics: force balance and continuity Similar principles in other domains Software structure above the element level is very generic. SUGAR: Simulating MEMS p.11/30

12 SUGAR architecture Netlist Solvers System assembly Models Results Transient analysis Steady state analysis Static analysis Sensitivity analysis Matlab Web Library Interfaces SUGAR: Simulating MEMS p.12/30

13 Device description language Based on the Lua scripting language Basic ingredients: nodes, materials, elements Node positions can be explicit or implicitly determined User-defined components (subnets) with named parameters for heirarchical design Accept externally defined parameters SUGAR: Simulating MEMS p.13/30

14 Hello world: a cantilever use mumps.net use stdlib.net anchor {node substrate, p1; l=10u, w=10u} beam3d {node substrate, node tip, p1; l=100u, w=2u} f3d {node tip ; F=2u, oz = 90} SUGAR: Simulating MEMS p.14/30

15 Hello world: a cantilever x Y vertical [m] X horizontal [m] x 10 5 SUGAR: Simulating MEMS p.15/30

16 Element routines Standard element interfaces for both Matlab and C/C++ Unused element cases have reasonable defaults Basic tasks: Initialize element data Output element data Display element Declare node and branch variables of interest Compute element forces/currents and tangents Declare boundary conditions SUGAR: Simulating MEMS p.16/30

17 Global analyses Standard analyses on assembled system: Transient response Static equilibrium (DC analysis) Steady-state small-signal response Mode shape determination Treat assembled systems with standard solver technology (e.g. SuperLU, LAPACK, and ARPACK). Can also assemble system in Matlab and use Matlab analysis routines. SUGAR: Simulating MEMS p.17/30

18 Using the Matlab interface 0 x x Y vertical [m] dq = []; for k=1:12 end param.v = k; X horizontal [m] x 10 4 net = cho_load( beamgap2b.net, param); dq = cho_dc(net, dq); tip(k) = cho_dq_view(dq, net, c, y ); SUGAR: Simulating MEMS p.18/30

19 M&MEMS: SUGAR on the Web SUGAR: Simulating MEMS p.19/30

20 Notes on overall architecture Lesser artists borrow; great artists steal. Stravinsky Trying to integrate state of the art from several fields Integration a challenge, even with modular design Continues to evolve: 3.5 is C++ based with automatically generated interfaces for mixed language management SUGAR: Simulating MEMS p.20/30

21 Research directions Software design, integration, and test Model development Measurement feedback Design synthesis, optimization, and sensitivity Model reduction Parameter-dependent eigencomputations + bifurcation analysis What designers need! SUGAR: Simulating MEMS p.21/30

22 Model development Incorporation of anisotropic effects Improved damping models Continued development of multiphysics approximations Microfluidic modeling Extraction from more detailed simulation SUGAR: Simulating MEMS p.22/30

23 Measurement feedback Integrate measurements from probe stations, interferometric systems, Doppler vibrometers Compare to simulation in real time to guide experiments Use results to extract material properties or tune models SUGAR: Simulating MEMS p.23/30

24 Measurement feedback Movie of interferometric recording SUGAR: Simulating MEMS p.24/30

25 Design optimization and synthesis Genetic algorithms and simulated annealing to optimize topology of designs Uses SUGAR as a black box to evaluate objective General issues: Design rule checking and model feasibility Identifying model limits Optimization of continuous parameters Design sensitivity SUGAR: Simulating MEMS p.25/30

26 Model reduction Used to create macromodels from detailed device simulations Also used to reduce large system models Need to handle nonlinear effects SUGAR: Simulating MEMS p.26/30

27 Model reduction 140 Bode plot 120 Gain (db) Frequency (Hz) 200 phase(degree) Frequency (Hz) SUGAR: Simulating MEMS p.27/30

28 Model reduction SUGAR: Simulating MEMS p.28/30

29 Parametric eigencomputations 0.9 hw = e Value = 5.08E+07 Hz Can track resonant modes as geometry changes Track eigenvalues of linearized system to analyze stability of equilibria and bifurcation behavior Close relation to model reduction SUGAR: Simulating MEMS p.29/30

30 Concluding notes Lots of pieces we don t yet touch (control laws, contact models, fluids,...) Trying to remain relevant to current BSAC research Expect some intersection in aims (and SW engineering challenges!) with programs like Ptolemy SUGAR: Simulating MEMS p.30/30

Simulating Microsystems

Simulating Microsystems Simulating Microsystems David Bindel UC Berkeley, EECS Simulating Microsystems p.1/21 Overview Microsystems overview Simulation software Case study: gap-closing actuator Simulating Microsystems p.2/21

More information

Simulating MicroElectroMechanical Systems

Simulating MicroElectroMechanical Systems Simulating MicroElectroMechanical Systems David Bindel UC Berkeley, CS Division Simulating MicroElectroMechanical Systems p.1/30 Overview Simulation: motivations and approaches Introducing SUGAR Using

More information

SUGAR: A MEMS Simulation Program

SUGAR: A MEMS Simulation Program SUGAR: A MEMS Simulation Program David Bindel dbindel@eecs.berkeley.edu UC Berkeley, CS Division MSM 2002 SUGAR Tutorial p.1/47 SUGAR contributors Faculty Grad students Undergrads A. Agogino (ME) D. Bindel

More information

Overview. Some background ideas Installation and a first example Device descriptions and basic analysis Some ongoing work Break

Overview. Some background ideas Installation and a first example Device descriptions and basic analysis Some ongoing work Break Overview Some background ideas Installation and a first example Device descriptions and basic analysis Some ongoing work Break Simulating MicroElectroMechanical Systems p.1/29 What should you get out?

More information

New paradigm for MEMS+IC Co-development

New paradigm for MEMS+IC Co-development New paradigm for MEMS+IC Co-development MEMS 진보된스마트세상을만듭니다. Worldwide First MEMS+IC Co-development Solution New paradigm for MEMS+IC Co-development A New Paradigm for MEMS+IC Development MEMS design

More information

Integrating Multiphysics and Multiscale Modeling Environments Together

Integrating Multiphysics and Multiscale Modeling Environments Together Integrating Multiphysics and Multiscale Modeling Environments Together Is An Open Environment Possible? D. Bindel Department of Computer Science Cornell University 24 May 2011 Outline The CSE Picture My

More information

SUGAR 3.0: A MEMS Simulation Program (User s Guide)

SUGAR 3.0: A MEMS Simulation Program (User s Guide) SUGAR 3.0: A MEMS Simulation Program (User s Guide) Document Authors - David Bindel, Jason Clark, Ningning Zhou Revisions for Version 3.0 - David Garmire Principal Investigators Alice M. Agogino................aagogino@me.berkeley.edu

More information

CHAPTER 4 DESIGN AND MODELING OF CANTILEVER BASED ELECTROSTATICALLY ACTUATED MICROGRIPPER WITH IMPROVED PERFORMANCE

CHAPTER 4 DESIGN AND MODELING OF CANTILEVER BASED ELECTROSTATICALLY ACTUATED MICROGRIPPER WITH IMPROVED PERFORMANCE 92 CHAPTER 4 DESIGN AND MODELING OF CANTILEVER BASED ELECTROSTATICALLY ACTUATED MICROGRIPPER WITH IMPROVED PERFORMANCE 4.1 INTRODUCTION Bio-manipulation techniques and tools including optical tweezers,

More information

Hierarchical MEMS Synthesis and Optimization

Hierarchical MEMS Synthesis and Optimization Hierarchical MEMS Synthesis and Optimization Ying Zhang 1, Raffi Kamalian 2, Alice M. Agogino 3, and Carlo H. Séquin 4 1 Systems Engineering Program, University of California, Berkeley 2, 3 Department

More information

AUTOMATED DESIGN SYNTHESIS FOR MICRO-ELECTRO-MECHANICAL SYSTEMS (MEMS)

AUTOMATED DESIGN SYNTHESIS FOR MICRO-ELECTRO-MECHANICAL SYSTEMS (MEMS) Proceedings of DETC 2002: Design Automation Sep. 29-Oct. 2, 2002, Montreal, Canada AUTOMATED DESIGN SYNTHESIS FOR MICRO-ELECTRO-MECHANICAL SYSTEMS (MEMS) Ningning Zhou Department of Mechanical Engineering

More information

ADDRESSING THE NEEDS OF COMPLEX MEMS DESIGN

ADDRESSING THE NEEDS OF COMPLEX MEMS DESIGN ADDRESSING THE NEEDS OF COMPLEX MEMS DESIGN J.V. Clark', D. Binde12, W. Kao2, E. Zhu2, A. Kuo6, N. Zhou4, J. Nie2, J. Demme12, Z. Bai', S. Govindjee3, K.S.J. Pister2, M. Gu2, A. Agogino4 'Applied Science

More information

Speed, Accuracy and Automation in MEMS Simulation and Development C. J. Welham, Coventor, Paris

Speed, Accuracy and Automation in MEMS Simulation and Development C. J. Welham, Coventor, Paris Speed, Accuracy and Automation in MEMS Simulation and Development C. J. Welham, Coventor, Paris MEMS Design & Simulation Challenges Overview Simulation Challenges and Approaches Validation Case Studies

More information

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis

Module 1: Introduction to Finite Element Analysis. Lecture 4: Steps in Finite Element Analysis 25 Module 1: Introduction to Finite Element Analysis Lecture 4: Steps in Finite Element Analysis 1.4.1 Loading Conditions There are multiple loading conditions which may be applied to a system. The load

More information

Part 2: Principles for a System-Level Design Methodology

Part 2: Principles for a System-Level Design Methodology Part 2: Principles for a System-Level Design Methodology Separation of Concerns: Function versus Architecture Platform-based Design 1 Design Effort vs. System Design Value Function Level of Abstraction

More information

Driven Cavity Example

Driven Cavity Example BMAppendixI.qxd 11/14/12 6:55 PM Page I-1 I CFD Driven Cavity Example I.1 Problem One of the classic benchmarks in CFD is the driven cavity problem. Consider steady, incompressible, viscous flow in a square

More information

Extraction and LVS for Mixed-domain Integrated MEMS Layouts

Extraction and LVS for Mixed-domain Integrated MEMS Layouts Extraction and LVS for Mixed-domain Integrated MEMS Layouts Bikram Baidya (bbaidya@ece.cmu.edu) and Tamal Mukherjee (tamal@ece.cmu.edu) Electrical and Computer Engineering, Carnegie Mellon University,

More information

An Improved Meshing Technique and its Application in the Analysis of Large and Complex MEMS Systems

An Improved Meshing Technique and its Application in the Analysis of Large and Complex MEMS Systems An Improved Meshing Technique and its Application in the Analysis of Large and Complex MEMS Systems Yie He, James Marchetti, Fariborz Maseeh IntelliSense Corporation 16 Upton Drive, Wilmington, MA 01887

More information

Introduction to Abaqus. About this Course

Introduction to Abaqus. About this Course Introduction to Abaqus R 6.12 About this Course Course objectives Upon completion of this course you will be able to: Use Abaqus/CAE to create complete finite element models. Use Abaqus/CAE to submit and

More information

Introduction to Physical Modelling Rory Adams Senior Application Engineer

Introduction to Physical Modelling Rory Adams Senior Application Engineer Introduction to Physical Modelling Rory Adams Senior Application Engineer 2014 The MathWorks, Inc. 1 Creating Reusable Physical Models What you should walk away with Increased knowledge of: What is meant

More information

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation

Module 1 Lecture Notes 2. Optimization Problem and Model Formulation Optimization Methods: Introduction and Basic concepts 1 Module 1 Lecture Notes 2 Optimization Problem and Model Formulation Introduction In the previous lecture we studied the evolution of optimization

More information

Modeling lattice structured materials with micropolar elasticity. Accuracy of the micropolar model. Marcus Yoder. CEDAR presentation Spring 2017

Modeling lattice structured materials with micropolar elasticity. Accuracy of the micropolar model. Marcus Yoder. CEDAR presentation Spring 2017 Modeling lattice structured materials with micropolar elasticity Accuracy of the micropolar model CEDAR presentation Spring 2017 Advisors: Lonny Thompson and Joshua D. Summers Outline 2/25 1. Background

More information

course outline basic principles of numerical analysis, intro FEM

course outline basic principles of numerical analysis, intro FEM idealization, equilibrium, solutions, interpretation of results types of numerical engineering problems continuous vs discrete systems direct stiffness approach differential & variational formulation introduction

More information

CoventorWare Tutorial. Presented by Brian Pepin 11/07/2011

CoventorWare Tutorial. Presented by Brian Pepin 11/07/2011 CoventorWare Tutorial Presented by Brian Pepin 11/07/2011 Downloading Software CoventorWare 2010 Full Release available at http://www.coventor.com/mems/download.html Click on link to download CoventorWare

More information

Dynamic Selection of Auto-tuned Kernels to the Numerical Libraries in the DOE ACTS Collection

Dynamic Selection of Auto-tuned Kernels to the Numerical Libraries in the DOE ACTS Collection Numerical Libraries in the DOE ACTS Collection The DOE ACTS Collection SIAM Parallel Processing for Scientific Computing, Savannah, Georgia Feb 15, 2012 Tony Drummond Computational Research Division Lawrence

More information

Engineering Analysis

Engineering Analysis Engineering Analysis with SOLIDWORKS Simulation 2018 Paul M. Kurowski SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following websites

More information

TECHNOLOGY SYSTEM-LEVEL SIMULATION. S.P. Levitan and D.M. Chiarulli University of Pittsburgh, Pittsburgh, PA USA

TECHNOLOGY SYSTEM-LEVEL SIMULATION. S.P. Levitan and D.M. Chiarulli University of Pittsburgh, Pittsburgh, PA USA MULTI-LEVEL LEVEL MIXED- TECHNOLOGY SYSTEM-LEVEL SIMULATION S.P. Levitan and D.M. Chiarulli University of Pittsburgh, Pittsburgh, PA 15260 USA Collaborators and Support Jose A. Martinez, Mark Kahrs, Jason

More information

Introduction to Finite Element Analysis using ANSYS

Introduction to Finite Element Analysis using ANSYS Introduction to Finite Element Analysis using ANSYS Sasi Kumar Tippabhotla PhD Candidate Xtreme Photovoltaics (XPV) Lab EPD, SUTD Disclaimer: The material and simulations (using Ansys student version)

More information

About the Author. Acknowledgements

About the Author. Acknowledgements About the Author Dr. Paul Kurowski obtained his M.Sc. and Ph.D. in Applied Mechanics from Warsaw Technical University. He completed postdoctoral work at Kyoto University. Dr. Kurowski is an Assistant Professor

More information

DEVELOPMENT OF SUBSTRUCTURED SHAKING TABLE TEST METHOD

DEVELOPMENT OF SUBSTRUCTURED SHAKING TABLE TEST METHOD DEVELOPMENT OF SUBSTRUCTURED SHAKING TABLE TEST METHOD Akira IGARASHI 1, Hirokazu IEMURA 2 And Takanori SUWA 3 SUMMARY Since various kinds of issues arise in the practical application of structural response

More information

Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications

Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications Unstructured Mesh Generation for Implicit Moving Geometries and Level Set Applications Per-Olof Persson (persson@mit.edu) Department of Mathematics Massachusetts Institute of Technology http://www.mit.edu/

More information

Introduction to FEM calculations

Introduction to FEM calculations Introduction to FEM calculations How to start informations Michał Rad (rad@agh.edu.pl) 20.04.2018 Outline Field calculations what is it? Model Program How to: Make a model Set up the parameters Perform

More information

Computational Prototyping Tools and Techniques

Computational Prototyping Tools and Techniques Computational Prototyping Tools and Techniques Academic and Research Staff Professor Jacob K. White, Dr. Bjarne Buchmann, Dr. F. Thomas Korsmeyer, Jinfang Huang Graduate Students Luca Daniel, Suvranu De,

More information

FEMLAB Exercise 1 for ChE366

FEMLAB Exercise 1 for ChE366 FEMLAB Exercise 1 for ChE366 Problem statement Consider a spherical particle of radius r s moving with constant velocity U in an infinitely long cylinder of radius R that contains a Newtonian fluid. Let

More information

Lecture 1.1 Introduction to Fluid Dynamics

Lecture 1.1 Introduction to Fluid Dynamics Lecture 1.1 Introduction to Fluid Dynamics 1 Introduction A thorough study of the laws of fluid mechanics is necessary to understand the fluid motion within the turbomachinery components. In this introductory

More information

Using RecurDyn. Contents

Using RecurDyn. Contents Using RecurDyn Contents 1.0 Multibody Dynamics Overview... 2 2.0 Multibody Dynamics Applications... 3 3.0 What is RecurDyn and how is it different?... 4 4.0 Types of RecurDyn Analysis... 5 5.0 MBD Simulation

More information

Il pensiero parallelo: Una storia di innovazione aziendale

Il pensiero parallelo: Una storia di innovazione aziendale Il pensiero parallelo: Una storia di innovazione aziendale Maria Teresa Gatti Scienzazienda Trento, 8 Maggio 2006 Overview ST is one of the largest Worldwide Semiconductors provider, with products ranging

More information

Mixed-Technology System-Level Simulation

Mixed-Technology System-Level Simulation Mixed-Technology System-Level Simulation Steven P. Levitan 1, Jose A. Martinez, Timothy P. Kurzweg, Philippe J. Marchand* Donald M. Chiarulli University of Pittsburgh, Pittsburgh, PA, USA 15260 *Optical

More information

Sensor and Actuator Technology

Sensor and Actuator Technology Agenda: Sensor and Actuator Technology Classification Transduction Mechanisms MEMS System MEMS Design Methodology MEMS Design Specifications Reading: Senturia, Ch. 2 pp. 15-28. Next time: Reading: Senturia,

More information

Isotropic Porous Media Tutorial

Isotropic Porous Media Tutorial STAR-CCM+ User Guide 3927 Isotropic Porous Media Tutorial This tutorial models flow through the catalyst geometry described in the introductory section. In the porous region, the theoretical pressure drop

More information

TQPED MMIC Design Training

TQPED MMIC Design Training TQPED MMIC Design Training Outline Installation and Use of the Library AWR AWR Design Kit (PDK Process Design Kit) ICED Layout Kit Create a new document using the Library Environment Setup Hotkeys Background

More information

Fluid structure interaction analysis: vortex shedding induced vibrations

Fluid structure interaction analysis: vortex shedding induced vibrations Fluid structure interaction analysis: vortex shedding induced vibrations N. Di Domenico, M. E. * University of Rome «Tor Vergata», Department of Enterprise Engineering «Mario Lucertini» A. Wade, T. Berg,

More information

Mechanical and Automation Engineering Programme (3-year Curriculum)

Mechanical and Automation Engineering Programme (3-year Curriculum) Course List Mechanical and Automation Engineering Programme (3-year Curriculum) ENGG2014 Advanced Engineering Mathematics (Syllabus D) LINEAR ALGEBRA: vector spaces and subspaces; linear transformations

More information

101-1 Under-Graduate Project Digital IC Design Flow

101-1 Under-Graduate Project Digital IC Design Flow 101-1 Under-Graduate Project Digital IC Design Flow Speaker: Ming-Chun Hsiao Adviser: Prof. An-Yeu Wu Date: 2012/9/25 ACCESS IC LAB Outline Introduction to Integrated Circuit IC Design Flow Verilog HDL

More information

Aero-Vibro Acoustics For Wind Noise Application. David Roche and Ashok Khondge ANSYS, Inc.

Aero-Vibro Acoustics For Wind Noise Application. David Roche and Ashok Khondge ANSYS, Inc. Aero-Vibro Acoustics For Wind Noise Application David Roche and Ashok Khondge ANSYS, Inc. Outline 1. Wind Noise 2. Problem Description 3. Simulation Methodology 4. Results 5. Summary Thursday, October

More information

Optimization of Microstructures Used in CMOS-MEMS Sensors Based on Topological Design Process

Optimization of Microstructures Used in CMOS-MEMS Sensors Based on Topological Design Process Optimization of Microstructures Used in CMOS-MEMS Sensors Based on Topological Design Process J. Mares-Carreño *1, G.S. Abarca-Jiménez 2, and M.A. Reyes-Barranca 2 1 ESIME-IPN, 2 CINVESTAV-IPN, *cmaresj@live.com

More information

Contents. 1 CoreTech System Co., Ltd.

Contents. 1 CoreTech System Co., Ltd. Contents Advanced Support for Intelligent Workflow Improved User Interface 2 Expanded Gate Types.. 2 Enhanced Runner Wizard. 2 Customized Cooling Channel Templates. 3 Parameterized Mesh Generator... 3

More information

LECTURE NOTES Non-Linear Programming

LECTURE NOTES Non-Linear Programming CEE 6110 David Rosenberg p. 1 Learning Objectives LECTURE NOTES Non-Linear Programming 1. Write out the non-linear model formulation 2. Describe the difficulties of solving a non-linear programming model

More information

Accelerating Finite Element Analysis in MATLAB with Parallel Computing

Accelerating Finite Element Analysis in MATLAB with Parallel Computing MATLAB Digest Accelerating Finite Element Analysis in MATLAB with Parallel Computing By Vaishali Hosagrahara, Krishna Tamminana, and Gaurav Sharma The Finite Element Method is a powerful numerical technique

More information

Sizing Optimization for Industrial Applications

Sizing Optimization for Industrial Applications 11 th World Congress on Structural and Multidisciplinary Optimisation 07 th -12 th, June 2015, Sydney Australia Sizing Optimization for Industrial Applications Miguel A.A.S: Matos 1, Peter M. Clausen 2,

More information

Particle Tracing Module

Particle Tracing Module Particle Tracing Module Particle Tracing Module Released with version 4.2a in October 2011 Add-on to COMSOL Multiphysics Combines with any COMSOL Multiphysics Module Particle Tracing Particle tracing

More information

MAT-Test A New Method of Thin Film Materials Characterisation. LPCVD silicon nitride film bent through 90º

MAT-Test A New Method of Thin Film Materials Characterisation. LPCVD silicon nitride film bent through 90º MAT-Test A New Method of Thin Film Materials Characterisation LPCVD silicon nitride film bent through 90º Introduction Measurements of Thin-Film Materials Properties There is a present and growing need

More information

Multimaterial Geometric Design Theories and their Applications

Multimaterial Geometric Design Theories and their Applications Multimaterial Geometric Design Theories and their Applications Hong Zhou, Ph.D. Associate Professor Department of Mechanical Engineering Texas A&M University-Kingsville October 19, 2011 Contents Introduction

More information

MATLAB. Advanced Mathematics and Mechanics Applications Using. Third Edition. David Halpern University of Alabama CHAPMAN & HALL/CRC

MATLAB. Advanced Mathematics and Mechanics Applications Using. Third Edition. David Halpern University of Alabama CHAPMAN & HALL/CRC Advanced Mathematics and Mechanics Applications Using MATLAB Third Edition Howard B. Wilson University of Alabama Louis H. Turcotte Rose-Hulman Institute of Technology David Halpern University of Alabama

More information

Workbench-Mechanical Structural Nonlinearities

Workbench-Mechanical Structural Nonlinearities Workshop 2B Assembly Contact Workbench-Mechanical Structural Nonlinearities WS2B-1 Workshop 2B Assembly Contact Goal: In this workshop our goal is to investigate the behavior of the pipe clamp assembly

More information

Outline. COMSOL Multyphysics: Overview of software package and capabilities

Outline. COMSOL Multyphysics: Overview of software package and capabilities COMSOL Multyphysics: Overview of software package and capabilities Lecture 5 Special Topics: Device Modeling Outline Basic concepts and modeling paradigm Overview of capabilities Steps in setting-up a

More information

2.7 Cloth Animation. Jacobs University Visualization and Computer Graphics Lab : Advanced Graphics - Chapter 2 123

2.7 Cloth Animation. Jacobs University Visualization and Computer Graphics Lab : Advanced Graphics - Chapter 2 123 2.7 Cloth Animation 320491: Advanced Graphics - Chapter 2 123 Example: Cloth draping Image Michael Kass 320491: Advanced Graphics - Chapter 2 124 Cloth using mass-spring model Network of masses and springs

More information

Simulation of a Dual Axis MEMS Seismometer for Building Monitoring System

Simulation of a Dual Axis MEMS Seismometer for Building Monitoring System Simulation of a Dual Axis MEMS Seismometer for Building Monitoring System Muhammad Ali Shah *, Faisal Iqbal, and Byeung-Leul Lee Korea University of Technology and Education, South Korea * Postal Address:

More information

COMSOL Multiphysics: MEMS Gyroscope Design

COMSOL Multiphysics: MEMS Gyroscope Design MEMS AND MICROSENSORS 2017/2018 COMSOL Multiphysics: MEMS Gyroscope Design Cristiano Rocco Marra 28/11/2017 In this lab, you will learn how to analyze the resonance frequency of a capacitive MEMS gyroscope

More information

CS 231. Deformation simulation (and faces)

CS 231. Deformation simulation (and faces) CS 231 Deformation simulation (and faces) 1 Cloth Simulation deformable surface model Represent cloth model as a triangular or rectangular grid Points of finite mass as vertices Forces or energies of points

More information

Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing

Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing Kasetsart J. (Nat. Sci.) 42 : 165-176 (2008) Analysis of Fluid-Structure Interaction Effects of Liquid-Filled Container under Drop Testing Chakrit Suvanjumrat*, Tumrong Puttapitukporn and Satjarthip Thusneyapan

More information

Chapter 4 Determining Cell Size

Chapter 4 Determining Cell Size Chapter 4 Determining Cell Size Chapter 4 Determining Cell Size The third tutorial is designed to give you a demonstration in using the Cell Size Calculator to obtain the optimal cell size for your circuit

More information

VHDL-AMS in MEMS Design Flow

VHDL-AMS in MEMS Design Flow Forum on Specification & Design Languages FDL 02, Marseille, September 24-27, 2002 VHDL-AMS in MEMS Design Flow Joachim Haase, Jens Bastian, and Sven Reitz Fraunhofer Institute Integrated Circuits Erlangen

More information

Design Verification Procedure (DVP) Load Case Analysis of Car Bonnet

Design Verification Procedure (DVP) Load Case Analysis of Car Bonnet Design Verification Procedure (DVP) Load Case Analysis of Car Bonnet Mahesha J 1, Prashanth A S 2 M.Tech Student, Machine Design, Dr. A.I.T, Bangalore, India 1 Asst. Professor, Department of Mechanical

More information

Homogenization and numerical Upscaling. Unsaturated flow and two-phase flow

Homogenization and numerical Upscaling. Unsaturated flow and two-phase flow Homogenization and numerical Upscaling Unsaturated flow and two-phase flow Insa Neuweiler Institute of Hydromechanics, University of Stuttgart Outline Block 1: Introduction and Repetition Homogenization

More information

Proceedings of the ASME th Biennial Conference On Engineering Systems Design And Analysis ESDA2012 July 2-4, 2012, Nantes, France

Proceedings of the ASME th Biennial Conference On Engineering Systems Design And Analysis ESDA2012 July 2-4, 2012, Nantes, France Proceedings of the ASME 2012 11th Biennial Conference On Engineering Systems Design And Analysis ESDA2012 July 2-4 2012 Nantes France ESDA2012-82316 A MULTIBODY SYSTEM APPROACH TO DRILL STRING DYNAMICS

More information

by Mahender Reddy Concept To Reality / Summer 2006

by Mahender Reddy Concept To Reality / Summer 2006 by Mahender Reddy Demand for higher extrusion rates, increased product quality and lower energy consumption have prompted plants to use various methods to determine optimum process conditions and die designs.

More information

A Toolbox of Level Set Methods

A Toolbox of Level Set Methods A Toolbox of Level Set Methods Ian Mitchell Department of Computer Science University of British Columbia http://www.cs.ubc.ca/~mitchell mitchell@cs.ubc.ca research supported by the Natural Science and

More information

CHAPTER 1. Introduction

CHAPTER 1. Introduction ME 475: Computer-Aided Design of Structures 1-1 CHAPTER 1 Introduction 1.1 Analysis versus Design 1.2 Basic Steps in Analysis 1.3 What is the Finite Element Method? 1.4 Geometrical Representation, Discretization

More information

The Nagumo Equation with Comsol Multiphysics

The Nagumo Equation with Comsol Multiphysics The Nagumo Equation with Comsol Multiphysics Denny Otten 1 Christian Döding 2 Department of Mathematics Bielefeld University 33501 Bielefeld Germany Date: 25. April 2016 1. Traveling Front in the Nagumo

More information

Inertial Navigation Systems

Inertial Navigation Systems Inertial Navigation Systems Kiril Alexiev University of Pavia March 2017 1 /89 Navigation Estimate the position and orientation. Inertial navigation one of possible instruments. Newton law is used: F =

More information

Multigrid Solvers in CFD. David Emerson. Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK

Multigrid Solvers in CFD. David Emerson. Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK Multigrid Solvers in CFD David Emerson Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK david.emerson@stfc.ac.uk 1 Outline Multigrid: general comments Incompressible

More information

GITAM. Skill Development Centre. Computer Aided Engineering UNIVERSITY H Y D E R A B A D. (Estd.u/s 3 of the UGC, 1956)

GITAM. Skill Development Centre. Computer Aided Engineering UNIVERSITY H Y D E R A B A D. (Estd.u/s 3 of the UGC, 1956) GITAM Skill Development Centre Computer Aided Engineering A University Committed to Excellence Modeling and Analysis Software tools Creo (Pro/ENGINEER) : Creo is a powerful 3D CAD solutions package optimized

More information

NEi FEA. IRONCAD Advanced FEA. IRONCAD Advanced FEA. NEi FEA

NEi FEA. IRONCAD Advanced FEA. IRONCAD Advanced FEA. NEi FEA 2011 Overview has been designed as a universal, adaptive and user-friendly graphical user interface for geometrical modeling, data input and visualization of results for all types of numerical simulation

More information

Solidus Technologies, Inc. STI White Paper: AN092309R1

Solidus Technologies, Inc. STI White Paper: AN092309R1 STI White Paper: AN092309R1 Reduce your MEMS Package Level Final Test Times and Save MEMS Manufacturing Costs using STI3000 Wafer Level Test Technology Introduction A survey of MEMS manufacturing literature

More information

Methodology for Prediction of Sliding and Rocking of Rigid Bodies Using Fast Non-Linear Analysis (FNA) Formulation

Methodology for Prediction of Sliding and Rocking of Rigid Bodies Using Fast Non-Linear Analysis (FNA) Formulation Methodology for Prediction of Sliding and Rocking of Rigid Bodies Using Fast Non-Linear Analysis (FNA) Formulation Sohrab Esfandiari - ENOVA Engineering Services Robert P. Kennedy- RPK Structural Consulting

More information

LACOSTE & ROMBERG AIR-SEA GRAVITY METER VIBRATION TESTS

LACOSTE & ROMBERG AIR-SEA GRAVITY METER VIBRATION TESTS LACOSTE & ROMBERG AIR-SEA GRAVITY METER VIBRATION TESTS Introduction. Our motivation is to compare the vibration sensitivity of our new AirSea II system to the ZLS D-003 (fluid damped) and S-3 (air damped)

More information

Using MSC.Nastran for Explicit FEM Simulations

Using MSC.Nastran for Explicit FEM Simulations 3. LS-DYNA Anwenderforum, Bamberg 2004 CAE / IT III Using MSC.Nastran for Explicit FEM Simulations Patrick Doelfs, Dr. Ingo Neubauer MSC.Software GmbH, D-81829 München, Patrick.Doelfs@mscsoftware.com Abstract:

More information

A Methodology and Associated CAD Tools for Support of Concurrent Design of MEMS

A Methodology and Associated CAD Tools for Support of Concurrent Design of MEMS A Methodology and Associated CAD Tools for Support of Concurrent Design of MEMS B. F. Romanowicz 1,M.H.Zaman 1,S.F.Bart 1, V. L. Rabinovich 1, I. Tchertkov 1,S.Zhang 1 M. G. da Silva 1, M. Deshpande 1,K.Greiner

More information

MRI Induced Heating of a Pacemaker. Peter Krenz, Application Engineer

MRI Induced Heating of a Pacemaker. Peter Krenz, Application Engineer MRI Induced Heating of a Pacemaker Peter Krenz, Application Engineer 1 Problem Statement Electric fields generated during MRI exposure are dissipated in tissue of the human body resulting in a temperature

More information

ECE421: Electronics for Instrumentation

ECE421: Electronics for Instrumentation ECE421: Electronics for Instrumentation Lecture #8: Introduction to FEA & ANSYS Mostafa Soliman, Ph.D. March 23 rd 2015 Mostafa Soliman, Ph.D. 1 Outline Introduction to Finite Element Analysis Introduction

More information

Combination of Simulation and Optimization in the Design of Electromechanical Systems

Combination of Simulation and Optimization in the Design of Electromechanical Systems Combination of Simulation and Optimization in the Design of Electromechanical Systems Hermann Landes 1, Frank Vogel 2, Wigand Rathmann 2 1 WisSoft, Buckenhof, Germany 2 inutech GmbH, Nuremberg, Germany

More information

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial Auto Injector Syringe A Fluent Dynamic Mesh 1DOF Tutorial 1 2015 ANSYS, Inc. June 26, 2015 Prerequisites This tutorial is written with the assumption that You have attended the Introduction to ANSYS Fluent

More information

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Objective: The objective of this laboratory is to introduce how to use FLUENT to solve both transient and natural convection problems.

More information

Simulation of a Micro-Scale Out-of-plane Compliant Mechanism

Simulation of a Micro-Scale Out-of-plane Compliant Mechanism Simulation of a Micro-Scale Out-of-plane Compliant Mechanism David Castro 1, Arpys Arevalo *1, Ehab Rawashdeh 1, Nikolai Dechev 2 and Ian G. Foulds 1,3 1 King Abdullah University of Science and Technology,

More information

Experiment 2: Control of Nonlinear Compensated SISO Systems

Experiment 2: Control of Nonlinear Compensated SISO Systems DEPARTMENT OF ELECTRICAL ENGINEERING UNIVERSITY OF MINNESOTA EE 4237 State Space Control Laboratory Experiment 2: Control of Nonlinear Compensated SISO Systems Prelab: 1. Study Section 6.3 of manual (attached)

More information

Partial Differential Equations

Partial Differential Equations Simulation in Computer Graphics Partial Differential Equations Matthias Teschner Computer Science Department University of Freiburg Motivation various dynamic effects and physical processes are described

More information

New Technologies in CST STUDIO SUITE CST COMPUTER SIMULATION TECHNOLOGY

New Technologies in CST STUDIO SUITE CST COMPUTER SIMULATION TECHNOLOGY New Technologies in CST STUDIO SUITE 2016 Outline Design Tools & Modeling Antenna Magus Filter Designer 2D/3D Modeling 3D EM Solver Technology Cable / Circuit / PCB Systems Multiphysics CST Design Tools

More information

AMS Behavioral Modeling

AMS Behavioral Modeling CHAPTER 3 AMS Behavioral Modeling Ronald S. Vogelsong, Ph.D. Overview Analog designers have for many decades developed their design using a Bottom-Up design flow. First, they would gain the necessary understanding

More information

Digital Sound Ming C. Lin & Zhimin Ren

Digital Sound Ming C. Lin & Zhimin Ren Digital Sound Ming C. Lin & Zhimin Ren Department of Computer Science University of North Carolina http://gamma.cs.unc.edu/sound How can it be done? Foley artists manually make and record the sound from

More information

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Vol. 12, Issue 1/2016, 63-68 DOI: 10.1515/cee-2016-0009 MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Juraj MUŽÍK 1,* 1 Department of Geotechnics, Faculty of Civil Engineering, University

More information

AMS527: Numerical Analysis II

AMS527: Numerical Analysis II AMS527: Numerical Analysis II A Brief Overview of Finite Element Methods Xiangmin Jiao SUNY Stony Brook Xiangmin Jiao SUNY Stony Brook AMS527: Numerical Analysis II 1 / 25 Overview Basic concepts Mathematical

More information

OOFEM.ORG - PROJECT STATUS, CHALLENGES AND NEEDS

OOFEM.ORG - PROJECT STATUS, CHALLENGES AND NEEDS 6th European Conference on Computational Mechanics (ECCM 6) 7th European Conference on Computational Fluid Dynamics (ECFD 7) 1115 June 2018, Glasgow, UK OOFEM.ORG - PROJECT STATUS, CHALLENGES AND NEEDS

More information

Development of the Compliant Mooring Line Model for FLOW-3D

Development of the Compliant Mooring Line Model for FLOW-3D Flow Science Report 08-15 Development of the Compliant Mooring Line Model for FLOW-3D Gengsheng Wei Flow Science, Inc. October 2015 1. Introduction Mooring systems are common in offshore structures, ship

More information

Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD)

Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD) Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD) Fernando Prevedello Regis Ataídes Nícolas Spogis Wagner Ortega Guedes Fabiano Armellini

More information

Dynamic Load Distributions for Adaptive Computations on MIMD Machines using Hybrid Genetic Algorithms (a subset)

Dynamic Load Distributions for Adaptive Computations on MIMD Machines using Hybrid Genetic Algorithms (a subset) Dynamic Load Distributions for Adaptive Computations on MIMD Machines using Hybrid Genetic Algorithms (a subset) TIMOTHY H. KAISER PhD, Computer Science - UNM MS, Electrical Engineering - (Applied Physics)

More information

Simulation Advances for RF, Microwave and Antenna Applications

Simulation Advances for RF, Microwave and Antenna Applications Simulation Advances for RF, Microwave and Antenna Applications Bill McGinn Application Engineer 1 Overview Advanced Integrated Solver Technologies Finite Arrays with Domain Decomposition Hybrid solving:

More information

MODELLING-Representing space and time in a numerical model

MODELLING-Representing space and time in a numerical model MODELLING-Representing space and time in a numerical model Simulation parameters When setting up any simulation, whether computer-based or to be computed manually, it is important to identify the parameters

More information

Modeling, Simulation and Analysis of Integrated Building Energy and Control Systems. Michael Wetter. October 8, 2009

Modeling, Simulation and Analysis of Integrated Building Energy and Control Systems. Michael Wetter. October 8, 2009 Modeling, Simulation and Analysis of Integrated Building Energy and Control Systems Michael Wetter Simulation Research Group Building Technologies Department Energy and Environmental Technologies Division

More information

Root Locus Controller Design

Root Locus Controller Design Islamic University of Gaza Faculty of Engineering Electrical Engineering department Control Systems Design Lab Eng. Mohammed S. Jouda Eng. Ola M. Skeik Experiment 4 Root Locus Controller Design Overview

More information

Application of Finite Volume Method for Structural Analysis

Application of Finite Volume Method for Structural Analysis Application of Finite Volume Method for Structural Analysis Saeed-Reza Sabbagh-Yazdi and Milad Bayatlou Associate Professor, Civil Engineering Department of KNToosi University of Technology, PostGraduate

More information