Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using Openfoam

Total Page:16

File Type:pdf, Size:1020Kb

Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using Openfoam University of Tennessee, Knoxville TRACE: Tennessee Research and Creative Exchange Masters Theses Graduate School 5-2012 Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using OpenFOAM Austin Barrett Kimbrell University of Tennessee, [email protected] Follow this and additional works at: https://trace.tennessee.edu/utk_gradthes Part of the Aerodynamics and Fluid Mechanics Commons, Computational Engineering Commons, and the Computer-Aided Engineering and Design Commons Recommended Citation Kimbrell, Austin Barrett, "Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using OpenFOAM. " Master's Thesis, University of Tennessee, 2012. https://trace.tennessee.edu/utk_gradthes/1173 This Thesis is brought to you for free and open access by the Graduate School at TRACE: Tennessee Research and Creative Exchange. It has been accepted for inclusion in Masters Theses by an authorized administrator of TRACE: Tennessee Research and Creative Exchange. For more information, please contact [email protected]. To the Graduate Council: I am submitting herewith a thesis written by Austin Barrett Kimbrell entitled "Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using OpenFOAM." I have examined the final electronic copy of this thesis for form and content and recommend that it be accepted in partial fulfillment of the equirr ements for the degree of Master of Science, with a major in Mechanical Engineering. John S. Steinhoff, Major Professor We have read this thesis and recommend its acceptance: K. C. Reddy, Joseph C. Yen Accepted for the Council: Carolyn R. Hodges Vice Provost and Dean of the Graduate School (Original signatures are on file with official studentecor r ds.) Development and Verification of a Navier-Stokes Solver with Vorticity Confinement Using OpenFOAM A Thesis Presented for the Master of Science Degree The University of Tennessee, Knoxville Austin Barrett Kimbrell May 2012 Copyright © 2012 by Austin B. Kimbrell All rights reserved. ii ACKNOWLEDGEMENTS I would like to express sincere appreciation to my advisor Dr. John Steinhoff for his guidance in developing this work and providing a challenging, yet enjoyable experience. I would also like to thank my other advising committee members, Dr. K.C. Reddy and Dr. Joseph Yen, for their time and helpful comments. I would like to especially acknowledge Dr. Yen for all of the discussion, insight, and advice he has provided over the past few years on topics both work and school-related, which has helped grow my technical knowledge and expertise in computational methods and aerodynamics. He is not only a friend but a true mentor and I am very grateful to work with him. I offer special thanks and acknowledgement to Chris Connor and Dr. Ed Duell at Jacobs Technology for all of the support and opportunities for technical advancement given to me. Jacobs Technology has been an invaluable resource the past few years by providing funding for my continued education as well as the available computational resources to complete this work. The working environment at Jacobs is truly unique and I am thankful to be a part of it. Lastly, I owe the greatest thanks to my wife, Oxana, and my daughter, Sophia, for all of their support and understanding during this whole endeavor. It wasn’t always easy, but they were always there for me to provide encouragement and keep me on the path to success. iii ABSTRACT Vorticity Confinement (VC) is a numerical technique which enhances computation of fluid flows by acting as negative diffusion within the limit of vortical regions, preventing the inherent numerical dissipation present with conventional methods. VC shares similarities with large eddy simulation (LES), but its behavior is based on a stable negative dissipation of vortical structures controlled by the automatic balance between two parameters, μ [mu] and ε [epsilon]. In this thesis, three-dimensional, parallel-computing Navier-Stokes solvers with VC are developed using the OpenFOAM computational framework. OpenFOAM is an open-source collection of C++ libraries developed for computational fluid dynamics. Object-oriented programming concepts are used to develop the finite volume solvers, which introduce the VC source term into the governing equations as a body force. An immersed boundary method is implemented with the VC module to mitigate limitations of body-fitted grids. The developed solvers are examined using two-dimensional boundary layer simulations, which demonstrate that for a given range of confinement parameters the boundary layer can be relaxed to a desired height to approximate a turbulent boundary layer thickness. Unlike wall function models, however, the VC boundary layer can still separate in an adverse pressure gradient. The application of VC to a two-dimensional advecting compact vortex results in the propagation of the vortex without dissipation. Solutions for a three-dimensional backward-facing step are validated against experimental data. The VC simulations show excellent agreement with experimental data for a fixed value of μ [mu] and a given range of ε [epsilon]. Coarsening the mesh increases inherent numerical dissipation and requires using a smaller value of μ [mu] to show good agreement with experimental data. Turbulence kinetic energy spectra exhibit a -5/3 slope inertial wavenumber range indicating proper turbulence cascading using the VC model. Simulation of a Formula One racecar represented by an iv immersed surface demonstrates the suitability of VC for fast prototyping. A time- accurate VC analysis on a 3,400,000 cell coarse mesh appears more realistic in the wake region than a steady RANS simulation on a 30,000,000 cell mesh. The VC solution appears visually comparable to an LES solution but represents a fraction of the computational cost. v TABLE OF CONTENTS Chapter 1 Introduction .......................................................................................... 1 1.1 Objectives ................................................................................................... 3 1.2 General Approach ....................................................................................... 4 Chapter 2 Vorticity Confinement ........................................................................... 6 2.1 VC1 Formulation ......................................................................................... 7 2.1.1 Surface Confinement ............................................................................ 9 2.2 VC2 Formulation ....................................................................................... 10 2.3 Compressible Vorticity Confinement ......................................................... 11 2.4 Dimensional Analysis of ε .......................................................................... 13 2.4.1 Dynamic Vorticity Confinement ........................................................... 15 Chapter 3 Introduction to OpenFOAM ................................................................ 16 3.1 Introduction to Object-Oriented Programming ........................................... 17 3.2 Programming in OpenFOAM ..................................................................... 19 3.3 OpenFOAM Data Structure ....................................................................... 20 3.4 Standard Case Structure ........................................................................... 21 3.4.1 system Directory ................................................................................. 24 3.4.2 constant Directory ............................................................................... 24 3.4.3 Time Directories .................................................................................. 26 3.5 OpenFOAM Utilities ................................................................................... 26 3.5.1 Pre-processing .................................................................................... 27 3.5.2 Meshing .............................................................................................. 27 3.5.3 Domain Decomposition ....................................................................... 28 3.5.4 Post-processing .................................................................................. 29 3.5.5 Run-time Processing........................................................................... 30 3.5.6 Solution Monitoring ............................................................................. 30 3.5.7 Additional Community-developed Tools.............................................. 31 Chapter 4 Solution Methodology ......................................................................... 32 4.1 Finite Volume Approach ............................................................................ 33 vi 4.1.1 Conservation Equations in Integral Form ............................................ 34 4.2 Pressure-Correction Methods ................................................................... 37 4.2.1 PISO Algorithm for Time-Accurate Simulation .................................... 41 4.2.2 SIMPLE Algorithm for Steady-State Simulation .................................. 43 4.2.3 Rhie-Chow Treatment in OpenFOAM ................................................. 44 4.3 Vorticity Confinement Implementation ....................................................... 45 4.3.1 Parallelization ..................................................................................... 47 4.3.2 VC as an Immersed
Recommended publications
  • The Art of Fluid Animation
    The Art of Fluid Animation The Art of Fluid Animation Jos Stam CRC Press Taylor & Francis Group 6000 Broken Sound Parkway NW, Suite 300 Boca Raton, FL 33487-2742 © 2016 by Taylor & Francis Group, LLC CRC Press is an imprint of Taylor & Francis Group, an Informa business No claim to original U.S. Government works Version Date: 20150921 International Standard Book Number-13: 978-1-4987-0021-4 (eBook - PDF) This book contains information obtained from authentic and highly regarded sources. Reasonable efforts have been made to publish reliable data and information, but the author and publisher cannot assume responsibility for the validity of all materials or the consequences of their use. The authors and publishers have attempted to trace the copyright holders of all material reproduced in this publication and apologize to copyright holders if permission to publish in this form has not been obtained. If any copyright material has not been acknowledged please write and let us know so we may rectify in any future reprint. Except as permitted under U.S. Copyright Law, no part of this book may be reprinted, reproduced, transmitted, or utilized in any form by any electronic, mechanical, or other means, now known or hereafter invented, including photocopying, microfilming, and recording, or in any information stor- age or retrieval system, without written permission from the publishers. For permission to photocopy or use material electronically from this work, please access www.copy- right.com (http://www.copyright.com/) or contact the Copyright Clearance Center, Inc. (CCC), 222 Rosewood Drive, Danvers, MA 01923, 978-750-8400.
    [Show full text]
  • 12/14/2015 Stam on Maya's Ncloth | Cgsociety
    12/14/2015 Stam on Maya’s nCloth | CGSociety {digg} Jos Stam talks about Maya 8.5, nCloth, Nucleus, and waiting for planes in airports. Jos Stam, Autodesk’s resident Principal Scientist, had three hours spare in a Paris airport after a plane home was delayed. With this time, he decided to nut out a problem that had been plaguing him for some time. He sat down with his laptop, a notepad and some brain cells, and invented yet another one of Maya’s new technologies, nCloth. I asked Jos to explain what led him to this epiphany in generating a new unified simulation framework. “The construction and motion of cloth is a very difficult problem to solve,” begins Jos Stam. “I was thinking this over before that Paris trip. What bothered me was that at the time, most existing cloth models relied on springs. Springs are great for stretchy, bouncy kinds of materials, but not for cloth, as cloth doesn't stretch much at all.” « At SIGGRAPH 2005, Stam was presented with the 2005 Computer Graphics Achievement Award by the Academy of Motion Picture Arts and Sciences. There were two standard mathematical ways to deal with the problem facing Stam. The first one uses something called ‘explicit integration’. The time step of the simulation could simply be reduced to handle the high frequency oscillations of the springs. The result is slow simulations and small vibrations of the cloth. Another alternative is to aggressively dampen the springs. This is the equivalent to an ‘implicit integration’ scheme. “However, that usually results in simulations that lack liveliness,” Stam explains.
    [Show full text]
  • 30 Years in Computer Graphics: from Painting and Coding to the Oscars and Beyond Jos Stam
    静园 号院 前沿讲座 2 0 1 9 年 第 05号 30 years in Computer Graphics: From painting and coding to the Oscars and Beyond Jos Stam Host: 陈宝权 教授 2019年5月10日 星期五 15:00 北京大学静园五院204 Abstract Computer graphics is at the intersection of Art, Programming and Mathematics. In this talk Jos will give an overview of my career in computer graphics. From his early days as an artist to becoming a coder in computer graphics and receiving three technical Oscars for his research. In his lifetime computer graphics has undergone tremendous changes. From pixelated game characters to movies which are almost undistinguishable from reality. He will give an overview of these changes and present the research that gave him the Oscars. Has computer graphics reached maturity? Far from it. The coming 30 years might be even more exciting than the last 30 ones. He claims that we have to reconsider how computer graphics operates. The goal is not to create realistic images but to create a direct interface to the brain. This is the ultimate simulation. Perhaps we already live in such a simulation without knowing it. Biography Jos Stam is a Graphics Researcher. He is fascinated by Art, Mathematics and Computers. Stam was born in the Netherlands and grew up in Geneva where he created surrealistic paintings with the airbrush and studied Mathematics and Computer Science at the University of Geneva. In 1989 he decided to try his luck in the new world and pursued doctoral studies in Computer Science at the University of Toronto which he completed in 1995.
    [Show full text]
  • LD5655.V856 1996.P483.Pdf (6.211Mb)
    NEW EFFICIENT CONTACT DISCONTINUITY CAPTURING TECHNIQUES IN SUPERSONIC FLOW SIMULATIONS By Sergei V. Pevchin A DISSERTATION SUBMITTED TO THE FACULTY OF VIRGINIA POLYTECHNIC INSTITUTE AND STATE UNIVERSITY IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY IN AEROSPACE ENGINEERING Rr ernard Grossman, Chairman fel CL Ah Le John SteiAVoff Robert W. Walters Seek hy SHED é Joseph A. Schetz jes FIM. Lfff September 1996 Blacksburg, Virginia Keywords: CFD, supersonic flow, discontinuities, confinement, capturing Abstract NEW EFFICIENT CONTACT DISCONTINUITY CAPTURING TECHNIQUES IN SUPERSONIC FLOW SIMULATIONS by Sergei V. Pevchin Committee Chairman: Bernard Grossman Aerospace Engineering (ABSTRACT) Accurate numerical algorithms for solving systems of nonlinear hyperbolic equations are considered. The issues of the capturing and the non-diffusive resolution of contact discontinuities were investigated using two different approaches: a kinetic fluctuation splitting scheme and a discontinuity confinement scheme based on an antidiffusion approach. In both approaches cell-vertex fluctuation-splitting methods are used in order to generate a multi-dimensional procedure. The kinetic fluctuation-splitting scheme presented here is a Boltzmann type scheme based on an LDA-scheme discretization on a triangulated Cartesian mesh that uses di- agonal adaptive strategy. The LDA scheme developed by Struijs, Deconinck and Roe has the property of being second-order accurate and linear for a scalar advection equa- tion. It is implemented for the Boltzmann equation following the work of Eppard and Grossman and completes the series of multi-dimensional Euler solvers with upwinding applied at the kinetic level. The MKFS-LDA scheme is a cell-vertex scheme. It was obtained by taking the moments of the fluctuation in the distribution function that are calculated according to the LDA fluctuation splitting procedure on a kinetic level.
    [Show full text]
  • Tools and Experiments in Multimodal Interaction Tommi Ilmonen
    Helsinki University of Technology Publications in Telecommunications Software and Multimedia Teknillisen korkeakoulun tietoliikenneohjelmistojen ja multimedian julkaisuja Espoo 2006 TLM-A15 Tools and Experiments in Multimodal Interaction Tommi Ilmonen AB TEKNILLINEN KORKEAKOULU TEKNISKA HÖGSKOLAN HELSINKI UNIVERSITY OF TECHNOLOGY TECHNISCHE UNIVERSITÄT HELSINKI UNIVERSITE DE TECHNOLOGIE D’HELSINKI FOO Helsinki University of Technology Publications in Telecommunications Software and Multimedia Teknillisen korkeakoulun tietoliikenneohjelmistojen ja multimedian julkaisuja Espoo 2006 TLM-A15 Tools and Experiments in Multimodal Interaction Tommi Ilmonen Dissertation for the degree of Doctor of Science in Technology to be pre- sented with due permission of the Department of Computer Science and En- gineering, for public examination and debate in Auditorium T2 at Helsinki University of Technology (Espoo, Finland) on the 14th of December, 2006, at 12 noon. Helsinki University of Technology Department of Computer Science and Engineering Telecommunications Software and Multimedia Laboratory Teknillinen korkeakoulu Tietotekniikan osasto Tietoliikenneohjelmistojen ja multimedian laboratorio Distribution: Helsinki University of Technology Telecommunications Software and Multimedia Laboratory P.O.Box 5400 FIN-02015 HUT Tel. +358-9-451 2870 Fax. +358-9-451 5014 http://www.tml.hut.fi/ Available in electronic format at http://lib.tkk.fi/Diss/2006/isbn9512285517 c Tommi Ilmonen printed version: ISBN-13 978-951-22-8550-1 ISBN-10 951-22-8550-9 ISSN 1456-7911 electronic version: ISBN-13 978-951-22-8551-8 ISBN-10 951-22-8551-7 ISSN 1455-9722 Otamedia Espoo 2006 ABSTRACT Author Tommi Ilmonen Title Tools and Experiments in Multimodal Interaction The goal of this study is to explore different strategies for multimodal human-computer interaction. Where traditional human-computer interac- tion uses a few common user interface metaphors and devices, multimodal interaction seeks new application areas with novel interaction devices and metaphors.
    [Show full text]
  • Multi Scalar Modelling Seminar
    MULTI SCALAR MODELLING SEMINAR CENTRE FOR INFORMATION TECHNOLOGY AND ARCHITECTURE 31. MAY 2013 2 AIM Advancements in architecture - particularly the emergence of engineered materials and the associated challenge of specifying material locally to meet global performance re- quirements - are posing new multi-scalar questions for the design and simulation process. Traditionally, architecture’s tools for modeling and representation have considered only single scales: we now need to better understand how simulations can link generative computational models, structural analysis and material specifications to geometric and performative design goals, at the scales of structure, element and material. Our aim for this seminar is gain a deeper understanding of the practices and considerations that underlie multiscale modeling. Recognising that knowledge about multiscale methods is distributed across multiple fields, and also developed around distinct practices, the seminar seeks to share approaches and perspectives, to discover areas of overlap, and to gain useful insights from the disciplines around us. By bringing together perspectives from archi- tecture, economics, ergonomics, physics, materials science and coastal engineering, the seminar provides a space for knowledge transfer between disciplines, and to foster in- terdisciplinary thinking about the application of multi scale methods within design practice. VENUE KADK Philip de Langes Alle 10 Skolerådssalen 3 AGENDA 9.30 Introduction to seminar and participants The perspective from CITA’s design
    [Show full text]
  • Arxiv:1612.09558V1 [Math.NA] 30 Dec 2016
    Semi-implicit discontinuous Galerkin methods for the incompressible Navier-Stokes equations on staggered adaptive Cartesian grids a, a Francesco Fambri ∗, Michael Dumbser aLaboratory of Applied Mathematics, Department of Civil, Environmental and Mechanical Engineering, University of Trento, Via Mesiano 77, I-38123 Trento, Italy Abstract In this paper a new high order semi-implicit discontinuous Galerkin method (SI-DG) is presented for the solution of the incompressible Navier-Stokes equations on staggered space-time adaptive Cartesian grids (AMR) in two and three space-dimensions. The pressure is written in the form of piecewise polynomials on the main grid, which is dynamically adapted within a cell-by-cell AMR framework. According to the time dependent main grid, different face-based spatially staggered dual grids are defined for the piece-wise polynomials of the respective velocity components. Although the resulting adaptive staggered grids are more complex than classical uniform Cartesian meshes, the numerical scheme can still be written in a rather compact form. Thanks to the use of a tensor-product formulation for the definition of the nodal basis in the d-dimensional space (d = 2; 3), all the discrete operators can be efficiently written as a combination of linear one-dimensional operators acting in the d space directions separately. Arbitrary high order of accuracy is achieved in space, while a very simple semi-implicit time discretiza- tion is obtained via an explicit discretization of the nonlinear convective terms, and an implicit discretization of the pressure gradient in the momentum equation and of the divergence of the velocity field in the con- tinuity equation.
    [Show full text]
  • Vorticity Confinement Applied to Induced Drag Prediction And
    VORTICITY CONFINEMENT APPLIED TO INDUCED DRAG PREDICTION AND THE SIMULATION OF TURBULENT WINGTIP VORTICES FROM FIXED AND ROTATING WINGS A Thesis Presented to The Graduate Faculty of The University of Akron In Partial Fulfillment of the Requirements for the Degree Master of Science Kristopher C Pierson May, 2014 VORTICITY CONFINEMENT APPLIED TO INDUCED DRAG PREDICTION AND THE SIMULATION OF TURBULENT WINGTIP VORTICES FROM FIXED AND ROTATING WINGS Kristopher Pierson Thesis Approved: Accepted: _______________________________ _______________________________ Advisor Dean of the College Dr. Alex Povitsky Dr. George K. Haritos _______________________________ _______________________________ Faculty Reader Dean of the Graduate School Dr. Scott Sawyer Dr. George R. Newkome _______________________________ _______________________________ Faculty Reader Date Dr. Minel Braun _______________________________ Department Chair Dr. Sergio Felicelli ii ABSTRACT To improve accuracy of CFD simulations by combating numerical viscosity, the vorticity confinement (VC) approach was applied to tip vortices shed by stationary wings for the prediction of induced drag by far-field integration in Trefftz plane as well as the simulation of tip vortex evolution. Vorticity confinement schemes are first evaluated and compared using 2D Euler simulation of a Taylor vortex. The effect of numerical dissipation is shown to cause the vortex to spread and decay without the presence of physical dissipative terms; VC counteracts this effect and maintains the vortex strength. For 3D simulations, the coefficient of confinement was determined for various flight parameters. Dependence of vorticity confinement parameter on the flight Mach number and the angle of attack was evaluated. The aerodynamic drag results with VC are much closer to analytic lifting line theory compared to integration over surface of wing.
    [Show full text]
  • The Art of Animation December 12, 2016 Monday 2:30 Pm
    Date: The Art of Animation December 12, 2016 Monday 2:30 pm Venue: Jos Stam Room 308 Autodesk Research Chow Yei Ching Building The University of Hong Kong Abstract: In this talk I present my work on fluid dynamics for the entertainment industry. The talk will introduce basic concepts of fluids and a brief history of computational fluid dynamics. Subsequently I will talk about my contributions of applying computational fluid dynamics to the entertainment industry like games and movies. I will also discuss our implementation of this technology into our MAYA animation software. In 2008 I received a Technical Achievement Award from the Academy of Motion Picture Arts and Sciences ("tech Oscar") for this work. I will also mention my work on bringing fluid dynamics to mobile devices like the Pocket PC in 2001 and the iPhone in 2008. In 2010 we released FluidFX and MotionFX for iOS and MacOS. The talk will feature many live demonstrations and animations. The talk is basically a condensed version of my book "The Art of Fluid Animation". About the Speaker: Jos Stam was born in the Netherlands and educated in Geneva, Switzerland, where he received dual Bachelor degrees in computer science and pure mathematics. In 1989, Stam moved to Toronto where he completed his Masters and Ph.D. degrees in computer science. After that he pursued postdoctoral studies as a ERCIM fellow at INRIA in France and at VTT in Finland. In 1997 Stam joined the Alias Seattle office as a researcher and stayed there until 2003 to relocate to Alias' main office in Toronto.
    [Show full text]
  • Computer Graphics & Animation
    Jos Stam, J Comput Eng Inf Technol 2018, Volume: 7 DOI: 10.4172/2324-9307-C3-025 5th International Conference and Expo on Computer Graphics & Animation September 26-27, 2018 | Montreal, Canada Jos Stam University of Toronto, Canada Art of fluid animation n this talk, I present my work on fluid dynamics for the entertainment industry. The talk will introduce basic concepts Iof fluids and a brief history of computational fluid dynamics. Subsequently I will talk about my contributions of applying computational fluid dynamics to the entertainment industry like games and movies. I will also discuss our implementation of this technology into our MAYA animation software. In 2008, I received a Technical Achievement Award from the Academy of Motion Picture Arts and Sciences ("tech Oscar") for this work. I will also mention my work on bringing fluid dynamics to mobile devices like the Pocket PC in 2001 and the iPhone in 2008. In 2010, we released FluidFX and MotionFX for iOS and MacOS. The talk will feature many live demonstrations and animations. The talk is basically a condensed version of my book "The Art of Fluid Animation". Biography Jos Stam born in the Netherlands and educated in Geneva, where he received dual bachelor’s degrees in computer science and pure mathematics. In 1989, he completed his Master’s and PhD degrees in computer science. After that he pursued postdoctoral studies as an ERCIM fellow at INRIA in France and at VTT in Finland. In 1997, he joined the Alias Seattle office as a researcher and stayed there until 2003 to relocate to Alias' main office in Toronto.
    [Show full text]
  • Real Time Physics Y
    Real Time Physics www.matthiasmueller.info/realtimephysics Matthias Müller Doug James Jos Stam Nils Thuerey Cornell University Schedule • 8:30 Introduction, Matthias Müller • 8:45 Deformable Objects, Matthias Müller • 9:30 Multimodal Physics and User Interaction Doug James • 10:15 Break • 10:30 Fluids, Nils Thuerey • 11:15 Unified Solver, Jos Stam • 12:00 Q & A Real Time Demos Before Real Time Physics • My Ph.d. thesis: – Find 3d shape of dense polymer systems !BIOSYM molecular_data 4 !BIOSYM archive @molecule POLYCARB_B0 PBC=OFF CARB_1:C C cp C1/1.5 C5/1.5 HC C 3.313660622 -2.504962206 -11.698267937 CARB_1:HC H hc C HC 2.429594755 -2.005253792 -12.065854073 CARB_1:C1 C cp C/1.5 C2/1.5 H1 C1 4.420852184 -1.754677892 -11.284504890 CARB_1:H1 H hc C1 H1 4.390906811 -0.676178515 -11.332902908 CARB_1:C2 C cp C1/1.5 C3/1.5 C7 C2 5.566863537 -2.402448654 -10.808005333 CARB_1:C3 C cp C2/1.5 C4/1.5 H3 C3 5.605681896 -3.800502777 -10.745265961 CARB_1:H3 H hc C3 H3 6.489747524 -4.300211430 -10.377680779 CARB_1:C4 C cp C3/1.5 C5/1.5 H4 C4 4.498489857 -4.550786972 -11.159029007 CARB_1:H4 H hc C4 H4 4.528435707 -5.629286766 -11.110631943 ... ... ... ... Meetinggy Real Time Physics • Post doc at MIT (1999-2001) – Plan: Parallelization of packing algorithms – Prof had left MIT before I arrived! • Change of research focus – Computer graphics lab on same floor – Real-time physics needed for a virtual sculptor B.
    [Show full text]
  • Nbutsunt-Thesis.Pdf
    TIME SPECTRAL METHOD FOR ROTORCRAFT FLOW WITH VORTICITY CONFINEMENT A DISSERTATION SUBMITTED TO THE DEPARTMENT OF MECHANICAL ENGINEERING AND THE COMMITTEE ON GRADUATE STUDIES OF STANFORD UNIVERSITY IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY Nawee Butsuntorn June 2008 c Copyright by Nawee Butsuntorn 2008 All Rights Reserved ii I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (G. Antony Jameson) Principal Advisor I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (Sanjiva K. Lele) I certify that I have read this dissertation and that, in my opinion, it is fully adequate in scope and quality as a dissertation for the degree of Doctor of Philosophy. (Robert W. MacCormack) Approved for the University Committee on Graduate Studies. iii Preface This thesis shows that simulation of helicopter flows can adhere to engineering accu- racy without the need of massive computing resources or long turnaround time by choosing an alternative framework for rotorcraft simulation. The method works in both hovering and forward flight regimes. The new method has shown to be more computationally efficient and sufficiently accurate. By utilizing the periodic nature of the rotorcraft flow field, the Fourier based Time Spectral method lends itself to the problem and significantly increases the rate of convergence compared to tradi- tional implicit time integration schemes such as the second order backward difference formula (BDF).
    [Show full text]