Development of a Consistent Discrete Adjoint Solver for the SU 2 Framework

Size: px
Start display at page:

Download "Development of a Consistent Discrete Adjoint Solver for the SU 2 Framework"

Transcription

1 Development of a Consistent Discrete Adjoint Solver for the SU 2 Framework Tim Albring, Max Sagebaum, Nicolas Gauger Chair for Scientific Computing TU Kaiserslautern 16th Euro-AD Workshop, Jena December 8, 2014

2 Open-source multiphysics suite SU 2 Some key facts Developed at Stanford University (with global collaboration). Comprises complete self-contained optimization environment. Finite-Volume Discretization of (U)RANS equations and turbulence models using a highly modular C++ code-structure. Convergence Acceleration using Multigrid and local time-stepping methods. Albring Development of a Consistent Discrete Adjoint Solver 2/ 24

3 Demands for a (discrete) Adjoint Solver Automatic advancement with the flow solver: Number of commits per week to the SU 2 repository. Smooth integration into the optimization framework (reuse of existing routines). Robustness: Inheritance of convergence properties of the flow solver. Consistency: Resulting gradients should constitute as the exact derivatives based on the particular numerical methods used in the flow solver. Albring Development of a Consistent Discrete Adjoint Solver 3/ 24

4 Generic problem formulation Given the state vector y Y R N, the discrete design vector χ, the computational mesh u and the state equation c(y, u) = 0, the optimization problem can be formulated by the following generic problem description: min χ J(y(u(χ)), u(χ)) subject to R(y(u(χ)), u(χ)) = 0. Gradient computation of J is based on an implicitly defined state y. f can be e.g. C D, C L or C Mz. Usually, there are additional constraints. Albring Development of a Consistent Discrete Adjoint Solver 4/ 24

5 Aerodynamic Design Chain Components χ Mesh u J, y Flow Solver Deformation Mesh Deformation Surface Deformation using Hicks-Henne functions u surf (x) = n i=1 ) χ i sin (πx log 5 log t i Mesh Movement based on the Linear Elasticity Method Flow Solver JST-based centered spatial discretization Implicit Euler temporal discretization SA or SST turbulence model Albring Development of a Consistent Discrete Adjoint Solver 5/ 24

6 The Discrete Adjoint Solver Prerequisites For Newton-type methods, R(y, u) can be transformed into fixed-point equation y = G(y, u) by using G(y, u) := I P(y, u)r(y, u) with some suitable preconditioner P. Feasible solutions y = y(u) are then computed from the iteration y n+1 = G(y n, u). It is natural to assume that G is stationary only at feasible points, i.e. R(y, u) = 0 iff. y = G(y, u). But: For a complex flow solver, the explicit structure of P (and G) is unknown! Albring Development of a Consistent Discrete Adjoint Solver 6/ 24

7 The Discrete Adjoint Solver Lagrange viewpoint Mesh Deformation is included by adding a constraint M(χ) = u to the optimization problem. Lagrangian function: L(χ, y, u, ȳ, ū) = J(y, u) + ȳ T (G(y, u) y) + ū T (M(χ) u) }{{} =:N, Shifted Lagrangian KKT conditions give equations for ȳ, ū and dl/dχ: ȳ = J(y, u) + G T (y, u)ȳ = NT (y, ȳ, u) ū = J(y, u) + u u G T (y, u)ȳ = u NT (y, ȳ, u) dl dχ = d dχ MT (χ)ū E.J. Nielsen and M.A. Park. Using An Adjoint Approach to Eliminate Mesh Sensitivities in Computational Design., AIAA Journal, Vol. 40, No. 5, Albring Development of a Consistent Discrete Adjoint Solver 7/ 24

8 Comparison of Standard Form and Fixed-Point Form System of equations is solved using the iteration D n + R n y n = R n, y n+1 = y n + y n Vamshi M. Korivi. An Incremental Strategy for Calculating Consistent Discrete CFD Sensitivity Derivatives. Hampton, Langley Research Center, Albring Development of a Consistent Discrete Adjoint Solver 8/ 24

9 Comparison of Standard Form and Fixed-Point Form System of equations is solved using the iteration D n + R n y n = R n, y n+1 = y n + y n Approximation to Rn due to first order spatial discretizations only, inconsistent boundary conditions, approximate solutions of the linear system. Vamshi M. Korivi. An Incremental Strategy for Calculating Consistent Discrete CFD Sensitivity Derivatives. Hampton, Langley Research Center, Albring Development of a Consistent Discrete Adjoint Solver 8/ 24

10 Comparison of Standard Form and Fixed-Point Form System of equations is solved using the iteration D n + R n y n = R n, y n+1 = y n + y n Approximation to Rn due to first order spatial discretizations only, inconsistent boundary conditions, approximate solutions of the linear system. ( R ) T λ = J Vamshi M. Korivi. An Incremental Strategy for Calculating Consistent Discrete CFD Sensitivity Derivatives. Hampton, Langley Research Center, Albring Development of a Consistent Discrete Adjoint Solver 8/ 24

11 Comparison of Standard Form and Fixed-Point Form System of equations is solved using the iteration D n + R n y n = R n, y n+1 = y n + y n Approximation to Rn due to first order spatial discretizations only, inconsistent boundary conditions, approximate solutions of the linear system. ( R ) T λ = J No approximations allowed in this formulation to get correct (consistent) gradient. Vamshi M. Korivi. An Incremental Strategy for Calculating Consistent Discrete CFD Sensitivity Derivatives. Hampton, Langley Research Center, Albring Development of a Consistent Discrete Adjoint Solver 8/ 24

12 Comparison of Standard Form and Fixed-Point Form System of equations is solved using the iteration D n + R n y n = R n, y n+1 = y n + y n ( G := y D + R ) 1 R Approximation to Rn due to first order spatial discretizations only, inconsistent boundary conditions, approximate solutions of the linear system. ( ) G ȳ n+1 T = ȳ n + J Uses same approximative Jacobian, thus features convergence to consistent gradient with the same rate as state iteration. Vamshi M. Korivi. An Incremental Strategy for Calculating Consistent Discrete CFD Sensitivity Derivatives. Hampton, Langley Research Center, Albring Development of a Consistent Discrete Adjoint Solver 8/ 24

13 The Discrete Adjoint Solver Notes on the Implementation Based on Algorithmic Differentiation for the gradient computation: Uses a modified version of the Adept C++ software library (also prepared for dco and ADOL-C). Requires almost no modifications in the flow solver. Highly efficient in runtime: Time for adjoint solution Time for flow solution Actual value depends on the numerical methods used. Parallelized using AdjointMPI. Robin J. Hogan, Fast reverse-mode automatic differentiation using expression templates in C++, ACM Trans. Math. Softw., 40, 26:1-26:16, Albring Development of a Consistent Discrete Adjoint Solver 9/ 24

14 Performance Tuning In the AD-context 1 Solve linear system in Reverse Sweep using analytic formulation: u = W 1 v ū = 0 2 Assume a passive preconditioner P in the non-linear fixed-point solver: G(y, u) Reverse Mode R(y, u) = I P(y, u) Both methods can efficiently be combined. s = W T ū W = s u T v += s + P(y, u) R(y, u) Reasonable to drop this term since R(y k, u) goes to zero. Albring Development of a Consistent Discrete Adjoint Solver 10/ 24

15 Setting and Performance GMRES + LU-SGS Preconditioner (BCGSTAB also possible). Matrix stored using Block Compressed Row Storage. Linear System in Reverse Sweep solved using same solver with differentiated Matrix-Vector product. Multi-grid disabled. Flow Solver performance: 0.21s per Iteration (5 Iter. of Linear Solver), 85 MB peak memory Full Taping Active Prec. Passive Prec. Linear Iter Runtime Memory Relative performance of Adjoint Solver. Albring Development of a Consistent Discrete Adjoint Solver 11/ 24

16 Convergence - Adjoint Solver ρ rms = 10 4 Passive Preconditioner leads to small difference in gradient (error 0.05%). Much faster with reduced number of linear iterations (despite slightly higher number of outer iterations). (a) Convergence ȳ ρ (b) Convergence ū Albring Development of a Consistent Discrete Adjoint Solver 12/ 24

17 Convergence - Adjoint Solver ρ rms = 10 7 (c) Convergence ȳ ρ (d) Convergence ū Albring Development of a Consistent Discrete Adjoint Solver 13/ 24

18 Inviscid Flow Test case definition Baseline design: NACA0012 Flow Conditions Ma = 0.8 α = 1.25 Numerical Settings Mesh: Elements Multigrid: 3 Level W-Cycle, CFL = Hicks-Henne functions Problem statement: min χ C D (χ) subject to: C L (χ) C Mz (χ) Albring Development of a Consistent Discrete Adjoint Solver 14/ 24

19 Inviscid Flow Results Validation of gradient with Finite Differences resulted in l 2 -Norm distance of 0.068%. (e) Optimization History (f) Pressure Distribution C p Albring Development of a Consistent Discrete Adjoint Solver 15/ 24

20 Viscous Flow - SA Test case definition Baseline design: RAE2822 Flow conditions Ma = α = 2.31 Re = 6.5 Mio Numerical Settings Mesh: Elements 3 Level W-Cycle, CFL = Hicks-Henne functions Problem statement min χ C D (χ) subject to: C L (χ) = C Mz (χ) Area = Area initial. Albring Development of a Consistent Discrete Adjoint Solver 16/ 24

21 Viscous Flow - SA Validation (g) Drag Gradient (h) Lift Gradient Albring Development of a Consistent Discrete Adjoint Solver 17/ 24

22 Viscous Flow - SA Results - Optimization History (i) Discrete Adjoint (j) Continuous Adjoint Albring Development of a Consistent Discrete Adjoint Solver 18/ 24

23 Viscous Flow - SA Results - C p (k) Pressure Distribution Albring Development of a Consistent Discrete Adjoint Solver 19/ 24

24 Viscous Flow - SST Results (l) Optimization History (m) Pressure Distribution Albring Development of a Consistent Discrete Adjoint Solver 20/ 24

25 Viscous Flow Pressure Contours (n) Baseline (o) Optimized - Discrete Adjoint Albring Development of a Consistent Discrete Adjoint Solver 21/ 24

26 3D - Turbulent Flow Figure: Magnitude of ū surf model. for the Onera-M6 test case using the SST turbulence Albring Development of a Consistent Discrete Adjoint Solver 22/ 24

27 Summary & Outlook Summary Outlook Differentiation of the entire design chain of SU 2. Consistent gradients of complex flow models. Efficient and easy maintainable/extensible adjoint solver. Further performance optimizations. Application to 3D and unsteady flows. Release of the software suite to the public (early 2015). Extension to multi-disciplinary optimization (aeroacoustics, aero-structure coupling). Albring Development of a Consistent Discrete Adjoint Solver 23/ 24

28 Thank you for your attention! Albring Development of a Consistent Discrete Adjoint Solver 24/ 24

Semi-automatic transition from simulation to one-shot optimization with equality constraints

Semi-automatic transition from simulation to one-shot optimization with equality constraints Semi-automatic transition from simulation to one-shot optimization with equality constraints Lisa Kusch, Tim Albring, Andrea Walther, Nicolas Gauger Chair for Scientific Computing, TU Kaiserslautern, www.scicomp.uni-kl.de

More information

Studies of the Continuous and Discrete Adjoint Approaches to Viscous Automatic Aerodynamic Shape Optimization

Studies of the Continuous and Discrete Adjoint Approaches to Viscous Automatic Aerodynamic Shape Optimization Studies of the Continuous and Discrete Adjoint Approaches to Viscous Automatic Aerodynamic Shape Optimization Siva Nadarajah Antony Jameson Stanford University 15th AIAA Computational Fluid Dynamics Conference

More information

Aerodynamic optimization using Adjoint methods and parametric CAD models

Aerodynamic optimization using Adjoint methods and parametric CAD models Aerodynamic optimization using Adjoint methods and parametric CAD models ECCOMAS Congress 2016 P. Hewitt S. Marques T. Robinson D. Agarwal @qub.ac.uk School of Mechanical and Aerospace Engineering Queen

More information

Adjoint-Based Sensitivity Analysis for Computational Fluid Dynamics

Adjoint-Based Sensitivity Analysis for Computational Fluid Dynamics Adjoint-Based Sensitivity Analysis for Computational Fluid Dynamics Dimitri J. Mavriplis Max Castagne Professor Department of Mechanical Engineering University of Wyoming Laramie, WY USA Motivation Computational

More information

Airfoil shape optimization using adjoint method and automatic differentiation. Praveen. C

Airfoil shape optimization using adjoint method and automatic differentiation. Praveen. C 'th Annual AeSI CFD Symposium, -2 August 2009, Bangalore Airfoil shape optimization using adjoint method and automatic differentiation Praveen. C TIFR Center for Applicable Mathematics Post Bag No. 6503,

More information

김태희, 권형일 1, 최성임 2* T.H. Kim, H.I. Kwon, and S.I. Choi

김태희, 권형일 1, 최성임 2* T.H. Kim, H.I. Kwon, and S.I. Choi 김태희, 권형일 1, 최성임 2* A STUDY ON INVERSE DESIGN OF AIRFOIL USING e-science BASED AERODYNAMICS DESIGN OPTIMIZATION FRAMEWORK T.H. Kim, H.I. Kwon, and S.I. Choi Recently, with advanced computational performance,

More information

Verification of Moving Mesh Discretizations

Verification of Moving Mesh Discretizations Verification of Moving Mesh Discretizations Krzysztof J. Fidkowski High Order CFD Workshop Kissimmee, Florida January 6, 2018 How can we verify moving mesh results? Goal: Demonstrate accuracy of flow solutions

More information

Optimization with Gradient and Hessian Information Calculated Using Hyper-Dual Numbers

Optimization with Gradient and Hessian Information Calculated Using Hyper-Dual Numbers Optimization with Gradient and Hessian Information Calculated Using Hyper-Dual Numbers Jeffrey A. Fike and Juan J. Alonso Department of Aeronautics and Astronautics, Stanford University, Stanford, CA 94305,

More information

A Discrete Adjoint Framework for Unsteady Aerodynamic and Aeroacoustic Optimization

A Discrete Adjoint Framework for Unsteady Aerodynamic and Aeroacoustic Optimization AIAA Aviation 22-26 June 215, Dallas, TX 16th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference AIAA 215-3355 The 16th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference,

More information

Recent developments for the multigrid scheme of the DLR TAU-Code

Recent developments for the multigrid scheme of the DLR TAU-Code www.dlr.de Chart 1 > 21st NIA CFD Seminar > Axel Schwöppe Recent development s for the multigrid scheme of the DLR TAU-Code > Apr 11, 2013 Recent developments for the multigrid scheme of the DLR TAU-Code

More information

State of the art at DLR in solving aerodynamic shape optimization problems using the discrete viscous adjoint method

State of the art at DLR in solving aerodynamic shape optimization problems using the discrete viscous adjoint method DLR - German Aerospace Center State of the art at DLR in solving aerodynamic shape optimization problems using the discrete viscous adjoint method J. Brezillon, C. Ilic, M. Abu-Zurayk, F. Ma, M. Widhalm

More information

Numerical Investigation of Transonic Shock Oscillations on Stationary Aerofoils

Numerical Investigation of Transonic Shock Oscillations on Stationary Aerofoils Numerical Investigation of Transonic Shock Oscillations on Stationary Aerofoils A. Soda, T. Knopp, K. Weinman German Aerospace Center DLR, Göttingen/Germany Symposium on Hybrid RANS-LES Methods Stockholm/Sweden,

More information

An Optimization Method Based On B-spline Shape Functions & the Knot Insertion Algorithm

An Optimization Method Based On B-spline Shape Functions & the Knot Insertion Algorithm An Optimization Method Based On B-spline Shape Functions & the Knot Insertion Algorithm P.A. Sherar, C.P. Thompson, B. Xu, B. Zhong Abstract A new method is presented to deal with shape optimization problems.

More information

Analysis of the Adjoint Euler Equations as used for Gradient-based Aerodynamic Shape Optimization

Analysis of the Adjoint Euler Equations as used for Gradient-based Aerodynamic Shape Optimization Analysis of the Adjoint Euler Equations as used for Gradient-based Aerodynamic Shape Optimization Final Presentation Dylan Jude Graduate Research Assistant University of Maryland AMSC 663/664 May 4, 2017

More information

Constrained Aero-elastic Multi-Point Optimization Using the Coupled Adjoint Approach

Constrained Aero-elastic Multi-Point Optimization Using the Coupled Adjoint Approach www.dlr.de Chart 1 Aero-elastic Multi-point Optimization, M.Abu-Zurayk, MUSAF II, 20.09.2013 Constrained Aero-elastic Multi-Point Optimization Using the Coupled Adjoint Approach M. Abu-Zurayk MUSAF II

More information

A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation

A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation Amir Nejat * and Carl Ollivier-Gooch Department of Mechanical Engineering, The University of British Columbia, BC V6T 1Z4, Canada

More information

Higher Order Multigrid Algorithms for a 2D and 3D RANS-kω DG-Solver

Higher Order Multigrid Algorithms for a 2D and 3D RANS-kω DG-Solver www.dlr.de Folie 1 > HONOM 2013 > Marcel Wallraff, Tobias Leicht 21. 03. 2013 Higher Order Multigrid Algorithms for a 2D and 3D RANS-kω DG-Solver Marcel Wallraff, Tobias Leicht DLR Braunschweig (AS - C

More information

The Development of a Navier-Stokes Flow Solver with Preconditioning Method on Unstructured Grids

The Development of a Navier-Stokes Flow Solver with Preconditioning Method on Unstructured Grids Proceedings of the International MultiConference of Engineers and Computer Scientists 213 Vol II, IMECS 213, March 13-15, 213, Hong Kong The Development of a Navier-Stokes Flow Solver with Preconditioning

More information

Case 3.1: Turbulent Flow over a 2D Multi-Element Airfoil. Summary of Results. Marco Ceze

Case 3.1: Turbulent Flow over a 2D Multi-Element Airfoil. Summary of Results. Marco Ceze Case 3.1: Turbulent Flow over a 2D Multi-Element Airfoil Summary of Results Marco Ceze (mceze@umich.edu) 2 nd International Workshop on High-Order CFD Methods, May 27-28, Cologne, Germany C3.1 1/14 Case

More information

Adjoint Solver Workshop

Adjoint Solver Workshop Adjoint Solver Workshop Why is an Adjoint Solver useful? Design and manufacture for better performance: e.g. airfoil, combustor, rotor blade, ducts, body shape, etc. by optimising a certain characteristic

More information

EFFICIENT SOLUTION ALGORITHMS FOR HIGH-ACCURACY CENTRAL DIFFERENCE CFD SCHEMES

EFFICIENT SOLUTION ALGORITHMS FOR HIGH-ACCURACY CENTRAL DIFFERENCE CFD SCHEMES EFFICIENT SOLUTION ALGORITHMS FOR HIGH-ACCURACY CENTRAL DIFFERENCE CFD SCHEMES B. Treidler, J.A. Ekaterineris and R.E. Childs Nielsen Engineering & Research, Inc. Mountain View, CA, 94043 Abstract Preliminary

More information

Implicit/Multigrid Algorithms for Incompressible Turbulent Flows on Unstructured Grids

Implicit/Multigrid Algorithms for Incompressible Turbulent Flows on Unstructured Grids AIAA 95-1740 Implicit/Multigrid Algorithms for Incompressible Turbulent Flows on Unstructured Grids W. Kyle Anderson,* Russ D. Rausch, Daryl L. Bonhaus NASA Langley Research Center, Hampton, Virginia 23681

More information

Introduction to ANSYS CFX

Introduction to ANSYS CFX Workshop 03 Fluid flow around the NACA0012 Airfoil 16.0 Release Introduction to ANSYS CFX 2015 ANSYS, Inc. March 13, 2015 1 Release 16.0 Workshop Description: The flow simulated is an external aerodynamics

More information

Digital-X. Towards Virtual Aircraft Design and Testing based on High-Fidelity Methods - Recent Developments at DLR -

Digital-X. Towards Virtual Aircraft Design and Testing based on High-Fidelity Methods - Recent Developments at DLR - Digital-X Towards Virtual Aircraft Design and Testing based on High-Fidelity Methods - Recent Developments at DLR - O. Brodersen, C.-C. Rossow, N. Kroll DLR Institute of Aerodynamics and Flow Technology

More information

Constrained Single-Step One-Shot Method with Applications in Aerodynamics

Constrained Single-Step One-Shot Method with Applications in Aerodynamics Constrained Single-Step One-Shot Method with Applications in Aerodnamics icolas R. ager 2 erman Aerospace Center DLR Branschweig Institte of Aerodnamics and Flow echnolog merical Methods Branch C 2 A 2

More information

Chart 1 Application of AD in Turbomachinery Design 19 th European Workshop on Automatic Differentiation Jan Backhaus DLR Cologne

Chart 1 Application of AD in Turbomachinery Design 19 th European Workshop on Automatic Differentiation Jan Backhaus DLR Cologne www.dlr.de Chart 1 Application of AD in Turbomachinery Design 19 th European Workshop on Automatic Differentiation Jan Backhaus DLR Cologne www.dlr.de Chart 2 CFD based Optimization CRISP 1 rig Gradient-free

More information

STCE. An (more) effective Discrete Adjoint Model for OpenFOAM

STCE. An (more) effective Discrete Adjoint Model for OpenFOAM An (more) effective Discrete Adjoint Model for OpenFOAM Markus Towara, Uwe Naumann Software and Tools for Computational Engineering Science RWTH Aachen University EuroAD 2013, Oxford, 10. December 2013

More information

NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011

NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011 NIA CFD Seminar, October 4, 2011 Hyperbolic Seminar, NASA Langley, October 17, 2011 First-Order Hyperbolic System Method If you have a CFD book for hyperbolic problems, you have a CFD book for all problems.

More information

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering

Debojyoti Ghosh. Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering Debojyoti Ghosh Adviser: Dr. James Baeder Alfred Gessow Rotorcraft Center Department of Aerospace Engineering To study the Dynamic Stalling of rotor blade cross-sections Unsteady Aerodynamics: Time varying

More information

cient Aerodynamic Design using the Discrete Adjoint Method in SU2

cient Aerodynamic Design using the Discrete Adjoint Method in SU2 AIAA Aviation 13-17 June 216, Washington, D.C. 17th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference AIAA 216-3518 17th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference,

More information

Comparison of parallel preconditioners for a Newton-Krylov flow solver

Comparison of parallel preconditioners for a Newton-Krylov flow solver Comparison of parallel preconditioners for a Newton-Krylov flow solver Jason E. Hicken, Michal Osusky, and David W. Zingg 1Introduction Analysis of the results from the AIAA Drag Prediction workshops (Mavriplis

More information

An Unsteady Discrete Adjoint Formulation for Two-Dimensional Flow Problems with Deforming Meshes

An Unsteady Discrete Adjoint Formulation for Two-Dimensional Flow Problems with Deforming Meshes 45th AIAA Aerospace Sciences Meeting and Exhibit, January 8, 27, Reno, NV An Unsteady Discrete Adjo Formulation for wo-dimensional Flow Problems with Deforming Meshes Karthik Mani Department of Mechanical

More information

Case C3.1: Turbulent Flow over a Multi-Element MDA Airfoil

Case C3.1: Turbulent Flow over a Multi-Element MDA Airfoil Case C3.1: Turbulent Flow over a Multi-Element MDA Airfoil Masayuki Yano and David L. Darmofal Aerospace Computational Design Laboratory, Massachusetts Institute of Technology I. Code Description ProjectX

More information

Accelerating Double Precision FEM Simulations with GPUs

Accelerating Double Precision FEM Simulations with GPUs Accelerating Double Precision FEM Simulations with GPUs Dominik Göddeke 1 3 Robert Strzodka 2 Stefan Turek 1 dominik.goeddeke@math.uni-dortmund.de 1 Mathematics III: Applied Mathematics and Numerics, University

More information

Airfoil Design Optimization Using Reduced Order Models Based on Proper Orthogonal Decomposition

Airfoil Design Optimization Using Reduced Order Models Based on Proper Orthogonal Decomposition Airfoil Design Optimization Using Reduced Order Models Based on Proper Orthogonal Decomposition.5.5.5.5.5.5.5..5.95.9.85.8.75.7 Patrick A. LeGresley and Juan J. Alonso Dept. of Aeronautics & Astronautics

More information

Single and multi-point aerodynamic optimizations of a supersonic transport aircraft using strategies involving adjoint equations and genetic algorithm

Single and multi-point aerodynamic optimizations of a supersonic transport aircraft using strategies involving adjoint equations and genetic algorithm Single and multi-point aerodynamic optimizations of a supersonic transport aircraft using strategies involving adjoint equations and genetic algorithm Prepared by : G. Carrier (ONERA, Applied Aerodynamics/Civil

More information

Missile External Aerodynamics Using Star-CCM+ Star European Conference 03/22-23/2011

Missile External Aerodynamics Using Star-CCM+ Star European Conference 03/22-23/2011 Missile External Aerodynamics Using Star-CCM+ Star European Conference 03/22-23/2011 StarCCM_StarEurope_2011 4/6/11 1 Overview 2 Role of CFD in Aerodynamic Analyses Classical aerodynamics / Semi-Empirical

More information

Algorithmic Developments in TAU

Algorithmic Developments in TAU Algorithmic Developments in TAU Ralf Heinrich, Richard Dwight, Markus Widhalm, and Axel Raichle DLR Institute of Aerodynamics and Flow Technology, Lilienthalplatz 7, 38108, Germany ralf.heinrich@dlr.de,

More information

EVALUATION OF DIFFERENT METHODS IN COMPUTATIONAL AEROACOUSTICS FOR NOISE PREDICTION AND MINIMIZA- TION OF A ROD-AIRFOIL CONFIGURATION

EVALUATION OF DIFFERENT METHODS IN COMPUTATIONAL AEROACOUSTICS FOR NOISE PREDICTION AND MINIMIZA- TION OF A ROD-AIRFOIL CONFIGURATION EVALUATION OF DIFFERENT METHODS IN COMPUTATIONAL AEROACOUSTICS FOR NOISE PREDICTION AND MINIMIZA- TION OF A ROD-AIRFOIL CONFIGURATION Beckett Y. Zhou, Tim Albring and Nicolas R. Gauger Chair for Scientific

More information

Ail implicit finite volume nodal point scheme for the solution of two-dimensional compressible Navier-Stokes equations

Ail implicit finite volume nodal point scheme for the solution of two-dimensional compressible Navier-Stokes equations Ail implicit finite volume nodal point scheme for the solution of two-dimensional compressible Navier-Stokes equations Vimala Dutta Computational and Theoretical Fluid Dynamics Division National Aerospace

More information

39th AIAA Aerospace Sciences Meeting and Exhibit January 8 11, 2001/Reno, NV

39th AIAA Aerospace Sciences Meeting and Exhibit January 8 11, 2001/Reno, NV AIAA 1 717 Static Aero-elastic Computation with a Coupled CFD and CSD Method J. Cai, F. Liu Department of Mechanical and Aerospace Engineering University of California, Irvine, CA 92697-3975 H.M. Tsai,

More information

cuibm A GPU Accelerated Immersed Boundary Method

cuibm A GPU Accelerated Immersed Boundary Method cuibm A GPU Accelerated Immersed Boundary Method S. K. Layton, A. Krishnan and L. A. Barba Corresponding author: labarba@bu.edu Department of Mechanical Engineering, Boston University, Boston, MA, 225,

More information

Sensitivity Analysis for the Compressible Navier-Stokes Equations Using a Discontinuous Galerkin Method

Sensitivity Analysis for the Compressible Navier-Stokes Equations Using a Discontinuous Galerkin Method 2th AIAA Computational Fluid Dynamics Conference 27-3 June 2, Honolulu, Hawaii AIAA 2-348 Sensitivity Analysis for the Compressible Navier-Stokes Equations Using a Discontinuous Galerkin Method Li Wang

More information

Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics

Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics I. Pantle Fachgebiet Strömungsmaschinen Karlsruher Institut für Technologie KIT Motivation

More information

Multi-Element High-Lift Configuration Design Optimization Using Viscous Continuous Adjoint Method

Multi-Element High-Lift Configuration Design Optimization Using Viscous Continuous Adjoint Method JOURNAL OF AIRCRAFT Vol. 41, No. 5, September October 2004 Multi-Element High-Lift Configuration Design Optimization Using Viscous Continuous Adjoint Method Sangho Kim, Juan J. Alonso, and Antony Jameson

More information

Numerical methods for volume preserving image registration

Numerical methods for volume preserving image registration Numerical methods for volume preserving image registration SIAM meeting on imaging science 2004 Eldad Haber with J. Modersitzki haber@mathcs.emory.edu Emory University Volume preserving IR p.1/?? Outline

More information

Case C2.2: Turbulent, Transonic Flow over an RAE 2822 Airfoil

Case C2.2: Turbulent, Transonic Flow over an RAE 2822 Airfoil Case C2.2: Turbulent, Transonic Flow over an RAE 2822 Airfoil Masayuki Yano and David L. Darmofal Aerospace Computational Design Laboratory, Massachusetts Institute of Technology I. Code Description ProjectX

More information

DNV GL s 16th Technology Week

DNV GL s 16th Technology Week OIL & GAS DNV GL s 16th Technology Week Advanced Simulation for Offshore Application: Application of CFD for Computing VIM of Floating Structures 1 SAFER, SMARTER, GREENER OUTLINE Introduction Elements

More information

Unstructured Mesh Solution Techniques using the NSU3D Solver

Unstructured Mesh Solution Techniques using the NSU3D Solver Unstructured Mesh Solution echniques using the NSU3D Solver Dimitri J. Mavriplis Karthik Mani Department of Mechanical Engineering, University of Wyoming, Laramie, WY 82071 NSU3D is an unstructured mesh

More information

Aerofoil Optimisation Using CST Parameterisation in SU2

Aerofoil Optimisation Using CST Parameterisation in SU2 Aerofoil Optimisation Using CST Parameterisation in SU2 Marques, S., & Hewitt, P. (2014). Aerofoil Optimisation Using CST Parameterisation in SU2. Paper presented at Royal Aeronautical Society Applied

More information

Tutorial 17. Using the Mixture and Eulerian Multiphase Models

Tutorial 17. Using the Mixture and Eulerian Multiphase Models Tutorial 17. Using the Mixture and Eulerian Multiphase Models Introduction: This tutorial examines the flow of water and air in a tee junction. First you will solve the problem using the less computationally-intensive

More information

Aerodynamic Inverse Design Framework using Discrete Adjoint Method

Aerodynamic Inverse Design Framework using Discrete Adjoint Method Aerodynamic Inverse Design Framework using Discrete Adjoint Method Joël Brezillon, Mohammad Abu-Zurayk DLR, Institute of Aerodynamics and Flow Technology Lilienthalplatz 7, D-38108 Braunschweig Joel.Brezillon@dlr.de,

More information

Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil

Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil Express Introductory Training in ANSYS Fluent Workshop 04 Fluid Flow Around the NACA0012 Airfoil Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School 2013 -

More information

Modeling External Compressible Flow

Modeling External Compressible Flow Tutorial 3. Modeling External Compressible Flow Introduction The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a nonzero angle of attack. You will use the Spalart-Allmaras

More information

Shape optimisation using breakthrough technologies

Shape optimisation using breakthrough technologies Shape optimisation using breakthrough technologies Compiled by Mike Slack Ansys Technical Services 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Introduction Shape optimisation technologies

More information

ITU/FAA Faculty of Aeronautics and Astronautics

ITU/FAA Faculty of Aeronautics and Astronautics S. Banu YILMAZ, Mehmet SAHIN, M. Fevzi UNAL, Istanbul Technical University, 34469, Maslak/Istanbul, TURKEY 65th Annual Meeting of the APS Division of Fluid Dynamics November 18-20, 2012, San Diego, CA

More information

Mesh Movement for a Discrete-Adjoint Newton-Krylov Algorithm for Aerodynamic Optimization

Mesh Movement for a Discrete-Adjoint Newton-Krylov Algorithm for Aerodynamic Optimization Mesh Movement for a Discrete-Adjoint Newton-Krylov Algorithm for Aerodynamic Optimization Anh H. Truong, Chad A. Oldfield and David W. Zingg Institute for Aerospace Studies, University of Toronto 4925

More information

A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS

A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS A COUPLED FINITE VOLUME SOLVER FOR THE SOLUTION OF LAMINAR TURBULENT INCOMPRESSIBLE AND COMPRESSIBLE FLOWS L. Mangani Maschinentechnik CC Fluidmechanik und Hydromaschinen Hochschule Luzern Technik& Architektur

More information

Keisuke Sawada. Department of Aerospace Engineering Tohoku University

Keisuke Sawada. Department of Aerospace Engineering Tohoku University March 29th, 213 : Next Generation Aircraft Workshop at Washington University Numerical Study of Wing Deformation Effect in Wind-Tunnel Testing Keisuke Sawada Department of Aerospace Engineering Tohoku

More information

Solution of 2D Euler Equations and Application to Airfoil Design

Solution of 2D Euler Equations and Application to Airfoil Design WDS'6 Proceedings of Contributed Papers, Part I, 47 52, 26. ISBN 8-86732-84-3 MATFYZPRESS Solution of 2D Euler Equations and Application to Airfoil Design J. Šimák Charles University, Faculty of Mathematics

More information

TAU mesh deformation. Thomas Gerhold

TAU mesh deformation. Thomas Gerhold TAU mesh deformation Thomas Gerhold The parallel mesh deformation of the DLR TAU-Code Introduction Mesh deformation method & Parallelization Results & Applications Conclusion & Outlook Introduction CFD

More information

The 3D DSC in Fluid Simulation

The 3D DSC in Fluid Simulation The 3D DSC in Fluid Simulation Marek K. Misztal Informatics and Mathematical Modelling, Technical University of Denmark mkm@imm.dtu.dk DSC 2011 Workshop Kgs. Lyngby, 26th August 2011 Governing Equations

More information

Computational Fluid Dynamics for Engineers

Computational Fluid Dynamics for Engineers Tuncer Cebeci Jian P. Shao Fassi Kafyeke Eric Laurendeau Computational Fluid Dynamics for Engineers From Panel to Navier-Stokes Methods with Computer Programs With 152 Figures, 19 Tables, 84 Problems and

More information

Validation of an Unstructured Overset Mesh Method for CFD Analysis of Store Separation D. Snyder presented by R. Fitzsimmons

Validation of an Unstructured Overset Mesh Method for CFD Analysis of Store Separation D. Snyder presented by R. Fitzsimmons Validation of an Unstructured Overset Mesh Method for CFD Analysis of Store Separation D. Snyder presented by R. Fitzsimmons Stores Separation Introduction Flight Test Expensive, high-risk, sometimes catastrophic

More information

A Multigrid Block LU-SGS Algorithm for Euler Equations on Unstructured Grids

A Multigrid Block LU-SGS Algorithm for Euler Equations on Unstructured Grids A Multigrid Block LU-SGS Algorithm for Euler Equations on Unstructured Grids Ruo Li, Xin Wang and Weibo Zhao January 26, 27 Abstract We proposed an efficient and robust algorithm to solve the steady Euler

More information

HPC Usage for Aerodynamic Flow Computation with Different Levels of Detail

HPC Usage for Aerodynamic Flow Computation with Different Levels of Detail DLR.de Folie 1 HPCN-Workshop 14./15. Mai 2018 HPC Usage for Aerodynamic Flow Computation with Different Levels of Detail Cornelia Grabe, Marco Burnazzi, Axel Probst, Silvia Probst DLR, Institute of Aerodynamics

More information

Direct Numerical Simulation of a Low Pressure Turbine Cascade. Christoph Müller

Direct Numerical Simulation of a Low Pressure Turbine Cascade. Christoph Müller Low Pressure NOFUN 2015, Braunschweig, Overview PostProcessing Experimental test facility Grid generation Inflow turbulence Conclusion and slide 2 / 16 Project Scale resolving Simulations give insight

More information

SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND

SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND Student Submission for the 5 th OpenFOAM User Conference 2017, Wiesbaden - Germany: SELECTIVE ALGEBRAIC MULTIGRID IN FOAM-EXTEND TESSA UROIĆ Faculty of Mechanical Engineering and Naval Architecture, Ivana

More information

Usage of CFX for Aeronautical Simulations

Usage of CFX for Aeronautical Simulations Usage of CFX for Aeronautical Simulations Florian Menter Development Manager Scientific Coordination ANSYS Germany GmbH Overview Elements of CFD Technology for aeronautical simulations: Grid generation

More information

High-order solutions of transitional flow over the SD7003 airfoil using compact finite-differencing and filtering

High-order solutions of transitional flow over the SD7003 airfoil using compact finite-differencing and filtering High-order solutions of transitional flow over the SD7003 airfoil using compact finite-differencing and filtering Daniel J. Garmann and Miguel R. Visbal Air Force Research Laboratory, Wright-Patterson

More information

Summary of the C2.3 test case results

Summary of the C2.3 test case results 1st International Workshop on High-Order CFD Methods, Nashville, January 7-8, 2012 Institute of Aerodynamics and Flow Technology German Aerospace Center 8. Jan. 2012 1 / 19 Test case C2.3 Compressible

More information

Fluent User Services Center

Fluent User Services Center Solver Settings 5-1 Using the Solver Setting Solver Parameters Convergence Definition Monitoring Stability Accelerating Convergence Accuracy Grid Independence Adaption Appendix: Background Finite Volume

More information

Real-Time Shape Editing using Radial Basis Functions

Real-Time Shape Editing using Radial Basis Functions Real-Time Shape Editing using Radial Basis Functions, Leif Kobbelt RWTH Aachen Boundary Constraint Modeling Prescribe irregular constraints Vertex positions Constrained energy minimization Optimal fairness

More information

High-Order Navier-Stokes Simulations using a Sparse Line-Based Discontinuous Galerkin Method

High-Order Navier-Stokes Simulations using a Sparse Line-Based Discontinuous Galerkin Method High-Order Navier-Stokes Simulations using a Sparse Line-Based Discontinuous Galerkin Method Per-Olof Persson University of California, Berkeley, Berkeley, CA 9472-384, U.S.A. We study some of the properties

More information

Isogeometric Analysis of Fluid-Structure Interaction

Isogeometric Analysis of Fluid-Structure Interaction Isogeometric Analysis of Fluid-Structure Interaction Y. Bazilevs, V.M. Calo, T.J.R. Hughes Institute for Computational Engineering and Sciences, The University of Texas at Austin, USA e-mail: {bazily,victor,hughes}@ices.utexas.edu

More information

Aerodynamic Shape Optimization in Three-Dimensional Turbulent Flows Using a Newton-Krylov Approach

Aerodynamic Shape Optimization in Three-Dimensional Turbulent Flows Using a Newton-Krylov Approach Aerodynamic Shape Optimization in Three-Dimensional Turbulent Flows Using a Newton-Krylov Approach Lana M. Osusky and David W. Zingg University of Toronto Institute for Aerospace Studies, 4925 Dufferin

More information

Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems

Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems Trent Lukaczyk December 1, 2012 1 Introduction 1.1 Application The NASA N+2 Supersonic Aircraft Project

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

Computation of Sensitivity Derivatives of Navier-Stokes Equations using Complex Variables

Computation of Sensitivity Derivatives of Navier-Stokes Equations using Complex Variables Computation of Sensitivity Derivatives of Navier-Stokes Equations using Complex Variables By Veer N. Vatsa NASA Langley Research Center, Hampton, VA 23681 Mail Stop 128, email: v.n.vatsa@larc.nasa.gov

More information

Numerical Simulations of Fluid-Structure Interaction Problems using MpCCI

Numerical Simulations of Fluid-Structure Interaction Problems using MpCCI Numerical Simulations of Fluid-Structure Interaction Problems using MpCCI François Thirifay and Philippe Geuzaine CENAERO, Avenue Jean Mermoz 30, B-6041 Gosselies, Belgium Abstract. This paper reports

More information

(c)2002 American Institute of Aeronautics & Astronautics or Published with Permission of Author(s) and/or Author(s)' Sponsoring Organization.

(c)2002 American Institute of Aeronautics & Astronautics or Published with Permission of Author(s) and/or Author(s)' Sponsoring Organization. VIIA Adaptive Aerodynamic Optimization of Regional Introduction The starting point of any detailed aircraft design is (c)2002 American Institute For example, some variations of the wing planform may become

More information

Application of Wray-Agarwal Turbulence Model for Accurate Numerical Simulation of Flow Past a Three-Dimensional Wing-body

Application of Wray-Agarwal Turbulence Model for Accurate Numerical Simulation of Flow Past a Three-Dimensional Wing-body Washington University in St. Louis Washington University Open Scholarship Mechanical Engineering and Materials Science Independent Study Mechanical Engineering & Materials Science 4-28-2016 Application

More information

Introduction to CFX. Workshop 2. Transonic Flow Over a NACA 0012 Airfoil. WS2-1. ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved.

Introduction to CFX. Workshop 2. Transonic Flow Over a NACA 0012 Airfoil. WS2-1. ANSYS, Inc. Proprietary 2009 ANSYS, Inc. All rights reserved. Workshop 2 Transonic Flow Over a NACA 0012 Airfoil. Introduction to CFX WS2-1 Goals The purpose of this tutorial is to introduce the user to modelling flow in high speed external aerodynamic applications.

More information

High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA )

High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA ) High-Order Numerical Algorithms for Steady and Unsteady Simulation of Viscous Compressible Flow with Shocks (Grant FA9550-07-0195) Sachin Premasuthan, Kui Ou, Patrice Castonguay, Lala Li, Yves Allaneau,

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

Grid. Apr 09, 1998 FLUENT 5.0 (2d, segregated, lam) Grid. Jul 31, 1998 FLUENT 5.0 (2d, segregated, lam)

Grid. Apr 09, 1998 FLUENT 5.0 (2d, segregated, lam) Grid. Jul 31, 1998 FLUENT 5.0 (2d, segregated, lam) Tutorial 2. Around an Airfoil Transonic Turbulent Flow Introduction: The purpose of this tutorial is to compute the turbulent flow past a transonic airfoil at a non-zero angle of attack. You will use the

More information

Numerical Simulation of Coupled Fluid-Solid Systems by Fictitious Boundary and Grid Deformation Methods

Numerical Simulation of Coupled Fluid-Solid Systems by Fictitious Boundary and Grid Deformation Methods Numerical Simulation of Coupled Fluid-Solid Systems by Fictitious Boundary and Grid Deformation Methods Decheng Wan 1 and Stefan Turek 2 Institute of Applied Mathematics LS III, University of Dortmund,

More information

High-Fidelity Simulation of Unsteady Flow Problems using a 3rd Order Hybrid MUSCL/CD scheme. A. West & D. Caraeni

High-Fidelity Simulation of Unsteady Flow Problems using a 3rd Order Hybrid MUSCL/CD scheme. A. West & D. Caraeni High-Fidelity Simulation of Unsteady Flow Problems using a 3rd Order Hybrid MUSCL/CD scheme ECCOMAS, June 6 th -11 th 2016, Crete Island, Greece A. West & D. Caraeni Outline Industrial Motivation Numerical

More information

Simulating Sinkage & Trim for Planing Boat Hulls. A Fluent Dynamic Mesh 6DOF Tutorial

Simulating Sinkage & Trim for Planing Boat Hulls. A Fluent Dynamic Mesh 6DOF Tutorial Simulating Sinkage & Trim for Planing Boat Hulls A Fluent Dynamic Mesh 6DOF Tutorial 1 Introduction Workshop Description This workshop describes how to perform a transient 2DOF simulation of a planing

More information

An introduction to mesh generation Part IV : elliptic meshing

An introduction to mesh generation Part IV : elliptic meshing Elliptic An introduction to mesh generation Part IV : elliptic meshing Department of Civil Engineering, Université catholique de Louvain, Belgium Elliptic Curvilinear Meshes Basic concept A curvilinear

More information

The purpose of this tutorial is to illustrate how to set up and solve a problem using the. Moving Deforming Mesh (MDM) using the layering algorithm.

The purpose of this tutorial is to illustrate how to set up and solve a problem using the. Moving Deforming Mesh (MDM) using the layering algorithm. Tutorial: Introduction The purpose of this tutorial is to illustrate how to set up and solve a problem using the following two features in FLUENT. Moving Deforming Mesh (MDM) using the layering algorithm.

More information

Mesh Morphing and the Adjoint Solver in ANSYS R14.0. Simon Pereira Laz Foley

Mesh Morphing and the Adjoint Solver in ANSYS R14.0. Simon Pereira Laz Foley Mesh Morphing and the Adjoint Solver in ANSYS R14.0 Simon Pereira Laz Foley 1 Agenda Fluent Morphing-Optimization Feature RBF Morph with ANSYS DesignXplorer Adjoint Solver What does an adjoint solver do,

More information

A higher-order finite volume method with collocated grid arrangement for incompressible flows

A higher-order finite volume method with collocated grid arrangement for incompressible flows Computational Methods and Experimental Measurements XVII 109 A higher-order finite volume method with collocated grid arrangement for incompressible flows L. Ramirez 1, X. Nogueira 1, S. Khelladi 2, J.

More information

Helicopter Rotor Design Using a Time-Spectral and Adjoint-Based Method

Helicopter Rotor Design Using a Time-Spectral and Adjoint-Based Method 12th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference 1-12 September 28, Victoria, British Columbia Canada AIAA 28-581 12th AIAA/ISSMO Multidisciplinary Analysis and Optimization Conference

More information

Multi-Mesh CFD. Chris Roy Chip Jackson (1 st year PhD student) Aerospace and Ocean Engineering Department Virginia Tech

Multi-Mesh CFD. Chris Roy Chip Jackson (1 st year PhD student) Aerospace and Ocean Engineering Department Virginia Tech Multi-Mesh CFD Chris Roy Chip Jackson (1 st year PhD student) Aerospace and Ocean Engineering Department Virginia Tech cjroy@vt.edu May 21, 2014 CCAS Program Review, Columbus, OH 1 Motivation Automated

More information

High-Lift Aerodynamics: STAR-CCM+ Applied to AIAA HiLiftWS1 D. Snyder

High-Lift Aerodynamics: STAR-CCM+ Applied to AIAA HiLiftWS1 D. Snyder High-Lift Aerodynamics: STAR-CCM+ Applied to AIAA HiLiftWS1 D. Snyder Aerospace Application Areas Aerodynamics Subsonic through Hypersonic Aeroacoustics Store release & weapons bay analysis High lift devices

More information

NUMERICAL SIMULATION OF 3D FLAPPING WING BASED ON CHIMERA METHOD

NUMERICAL SIMULATION OF 3D FLAPPING WING BASED ON CHIMERA METHOD 26 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES NUMERICAL SIMULATION OF 3D FLAPPING WING Wenqing Yang, Bifeng Song, Wenping Song School of Aeronautics, Northwestern Polytechnical University,

More information

Geometry Parameterization Using Control Grids

Geometry Parameterization Using Control Grids Geometry Parameterization Using Control Grids A Technical Report by Kyle Anderson Chad Burdyshaw and Steve Karman UTC-CECS-SimCenter-2008-02 May 2008 GRADUATE SCHOOL OF COMPUTATIONAL ENGINEERING 7 0 1

More information

This is a repository copy of Nonconsistent mesh movement and sensitivity calculation on adjoint aerodynamic optimization.

This is a repository copy of Nonconsistent mesh movement and sensitivity calculation on adjoint aerodynamic optimization. This is a repository copy of Nonconsistent mesh movement and sensitivity calculation on adjoint aerodynamic optimization. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/130140/

More information

Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations

Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations Limiters for Unstructured Higher-Order Accurate Solutions of the Euler Equations Krzysztof Michalak and Carl Ollivier-Gooch Advanced Numerical Simulation Laboratory University of British Columbia Higher-order

More information