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

Size: px
Start display at page:

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

Transcription

1 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, Institute of Mathematics, Universität Paderborn September 15, 2016 AD 2016

2 Outline 1 The One-Shot Approach with Additional Constraints 2 AD-Based Discrete Adjoint in SU2 3 Multi-Objective Optimization 4 Application and Results Application to Airfoil Design Multi-Objective Optimization with Single Constraint Multi-Objective Optimization with Multiple Constraints Second-Order Adjoints 5 Summary and Outlook Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 2/ 18

3 Problem Definition PDE-constrained optimization problem min u,y f (y, u) s.t. c(y, u) = 0, h(y, u) = 0 fixed point iteration G y ρ < 1 min u,y f (y, u) s.t. G(y, u) = y, h(y, u) = 0 objective function f R, state y Y R n, design u U R m state equation c : Y U Y, constraints h : Y U V R p (notation: Ĝ = (G(y, u) y, h(y, u)) T ) one-shot approach using the AD-based discrete adjoint [Hamdi, Griewank(2010)],[Walther, Gauger, Kusch, Richert(2016)] L(ȳ, y, u) = f (y, u) + (G(y, u) y) T ȳ + h T µ = N(y, ȳ, µ, u) y T ȳ Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 3/ 18

4 The One-Shot Approach with Additional Constraints KKT point (discrete) y = Nȳ (y, ȳ, µ, u ) T = G(y, u) ȳ = N y (y, ȳ, µ, u ) T = f y (y, u ) T + G y (y, u ) T ȳ 0 = N u (y, ȳ, µ, u ) T = f u (y, u ) T + G u (y, u ) T ȳ 0 = N µ (y, ȳ, µ, u ) T = h(y, u ) One-shot approach with equality constraints for k = 1,... y k+1 = G(y k, u k ) ȳ k+1 = N y (y k, ȳ k, µ k, u k ) u k+1 = u k B 1 k N u (y k, ȳ k, µ k, u k ) 1 µ k+1 = µ k ˇB k h(y k, u k ) Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 4/ 18

5 Convergence Properties doubly augmented Lagrangian L a (y, ȳ, µ, u) = α 2 Ĝ(y, u) 2 + β 2 N y (y, ȳ, µ, u) T ȳ 2 + N ȳ T y correspondence and descent condition αβ(1 ρ) > 1 + β 2 N yy (1) and α 2(Ĝ u ) 1...p (Ĝ y ) + (N yu ) 1...p (N uu ) 1...p 1...p / (Ĝu) 1...p 2 exact penalty function, descent for all large symmetric pos. def. B, ˇB choice of B B 2 uul a (y, ȳ, u) B = αĝ u T Ĝu + βnyun T yu + N uu Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 5/ 18

6 Implementation Details BFGS Update: B u u L a (y, ȳ, µ, u + u) u L a (y, ȳ, µ, u) =: r calculate u L a = α yk T G u + αhu T h + β ȳk T N yu + N u N u and yk T G u + hu T h can be obtained with reverse mode of AD from ū y = G(y, u) v = f (y, u) ū = f u (y, u) T v + G u (y, u) T ȳ + h u (y, u) T w w = h(y, u) finite difference over reverse / tangent over reverse ȳk T N yu 1 h (N u(y k + h ȳ k, ȳ k, µ k, u k ) N u (y k, ȳ k, µ k, u k )) (2) curvature condition: set B k = I if r T k u k 0 Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 6/ 18

7 Open-source multiphysics suite SU2 Under active development (Stanford University, TU Kaiserslautern, TU Delft,...) FV discretization of (U)RANS equations and turbulence models using highly modular C++ code-structure, additional PDE solvers Multi-grid and local time-stepping methods Several space and time discretizations, MPI, python scripts optimization environment based on continuous or discrete adjoint, integrated AD support [Albring, Sagebaum, Gauger(2015)] Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 7/ 18

8 Discrete-Adjoint Solver in SU2 operator overloading (frequent extensions/improvements) shape optimization mesh deformation as additional constraint in the optimization problem M(u) = x fixed-point form ȳ k+1 = N y (y k, ȳ k, µ k, u k ) T CoDiPack open-source ( use of expression templates different tape implementations Performance SU2 (NASA Common Research Model) Runtime Factor: 1.2 Memory Factor: 7.2 Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 8/ 18

9 Multi-Objective Optimization Problem min y,u F(y, u) s.t. c(y, u) = 0, (3) Pareto dominance: x dominates x if h(y, u) 0 (4) i {1,..., k} : j {1,..., k} : f i (x) f i (x) f j (x) < f j (x) Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 9/ 18

10 Methods for Multi-Objective Optimization common: weighted sum, evolutionary algorithms ε-constraint method [Marglin(1967)] min y,u f sj (y, u) s.t. c(y, u) = 0, (5) h(y, u) = 0, f i (x) f (j) i i {1,..., k} i s j connected: equality constraints Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 10/ 18

11 Application (Airfoil Design) aerodynamic shape optimization of NACA 0012 airfoil objectives: drag coefficient c d, lift coefficient c l bounded design variables: 38 Hicks-Henne bump functions (bounds: [-0.005,0.005]) constraints: moment, thickness steady Euler equations, transonic flow (Mach 0.8 and AOA 1.25) Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 11/ 18

12 Result: Lift Constraint preconditioner ˇB = 20, µ 0 = 0, target lift: 0.4 backtracking line search, trial step size: 1, α = 20, β = c d c l 10 N u 2 4 primal residual adjoint residual ,200 1,600 2,000 Iteration ,000 1,500 2,000 Iteration Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 12/ 18

13 Resulting Pareto-optimal Front drag coefficient lift coefficient Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 13/ 18

14 Result: Lift, Moment, Thickness Constraint target lift: 0.3, moment: 0.0, thickness: 0.12 preconditioner diag(20, 20, 100), µ i,0 = c d c l 10 N u c m thickn ,000 1,500 2,000 2,500 3,000 3,500 4,000 Iteration Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 14/ 18

15 Resulting Pareto-optimal Front drag coefficient lift coefficient Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 15/ 18

16 Using Second-Order Adjoints Tangent over Reverse: ȳ T k N yu ū T = (ȳ T G uy + v T f yu + w T h yu )ẏ + other terms (6) Set v = 1, w = µ, ȳ = ȳ, ẏ = ȳ, Read from ū (Runtime Factor: 1.6) DataType: ActiveReal<RealForward, ChunkTape<RealForward, int>> GetMixedDerivative: tape.getgradient(x[adjpos++]).getgradient() objective second order objective finite differences ,000 1,200 1,400 1,600 1,800 2,000 Iteration Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 16/ 18

17 Summary and Outlook Summary Semi-automatic transition from simulation to optimization involving AD-based discrete adjoint in SU2 constrained one-shot method and deterministic multi-objective optimization Outlook different application in SU2 (multi-disciplinary) investigations on preconditioner for constraints Thank you for your attention! Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 17/ 18

18 References Hamdi, A. and Griewank, A. Properties of an augmented lagrangian for design optimization. Optimization Methods and Software 25(4), (2010). Walther, A., Gauger, N., Kusch, L., and Richert, N. On an extension of one-shot methods to incorporate additional constraints. Optimization Methods and Software (2016). Albring, T., Sagebaum, M., and Gauger, N. Development of a consistent discrete adjoint solver in an evolving aerodynamic design framework. AIAA (2015). Marglin, S. A. Public investment criteria. Allen & Unwin London, (1967). Kusch,Albring,Walther,Gauger From simulation to one-shot optimization with constraints 18/ 18

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

Development of a Consistent Discrete Adjoint Solver for the SU 2 Framework 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

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

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

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

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

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

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

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

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

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

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

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

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

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

ADJOINT OPTIMIZATION OF 2D-AIRFOILS IN INCOMPRESSIBLE FLOWS

ADJOINT OPTIMIZATION OF 2D-AIRFOILS IN INCOMPRESSIBLE FLOWS 11th World Congress on Computational Mechanics (WCCM XI) 5th European Conference on Computational Mechanics (ECCM V) 6th European Conference on Computational Fluid Dynamics (ECFD VI) E. Oñate, J. Oliver

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

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

Improvements to a Newton-Krylov Adjoint Algorithm for Aerodynamic Optimization

Improvements to a Newton-Krylov Adjoint Algorithm for Aerodynamic Optimization Improvements to a Newton-Krylov Adjoint Algorithm for Aerodynamic Optimization David W. Zingg, Timothy M. Leung, Laslo Diosady, Anh H. Truong, and Samy Elias Institute for Aerospace Studies, University

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

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

김태희, 권형일 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

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

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

Introduction to Optimization

Introduction to Optimization Introduction to Optimization Second Order Optimization Methods Marc Toussaint U Stuttgart Planned Outline Gradient-based optimization (1st order methods) plain grad., steepest descent, conjugate grad.,

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

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

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

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

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

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

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

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

Performance Evaluation of an Interior Point Filter Line Search Method for Constrained Optimization

Performance Evaluation of an Interior Point Filter Line Search Method for Constrained Optimization 6th WSEAS International Conference on SYSTEM SCIENCE and SIMULATION in ENGINEERING, Venice, Italy, November 21-23, 2007 18 Performance Evaluation of an Interior Point Filter Line Search Method for Constrained

More information

Aerodynamic Shape Optimization Using Feature based CAD Systems and Adjoint Methods

Aerodynamic Shape Optimization Using Feature based CAD Systems and Adjoint Methods Aerodynamic Shape Optimization Using Feature based CAD Systems and Adjoint Methods Agarwal, D., Marques, S., Robinson, T., Armstrong, C., & Hewitt, P. (217). Aerodynamic Shape Optimization Using Feature

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

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

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

THE use of computer algorithms for aerodynamic shape

THE use of computer algorithms for aerodynamic shape AIAA JOURNAL Vol. 51, No. 6, June 2013 Multimodality and Global Optimization in Aerodynamic Design Oleg Chernukhin and David W. ingg University of Toronto, Toronto, Ontario M3H 5T6, Canada DOI: 10.2514/1.J051835

More information

UNSTEADY TAU AND ROM FOR FLUTTER COMPUTATIONS OF TRANSPORT AIRCRAFT. Reik Thormann, Ralph Voß. Folie 1

UNSTEADY TAU AND ROM FOR FLUTTER COMPUTATIONS OF TRANSPORT AIRCRAFT. Reik Thormann, Ralph Voß. Folie 1 UNSTEADY TAU AND ROM FOR FLUTTER COMPUTATIONS OF TRANSPORT AIRCRAFT Reik Thormann, Ralph Voß Folie 1 Standardfoliensatz >01.03.2007 Outline Motivation Synthetic Mode Correction (SMC) Linearized CFD Method

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

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

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Review of the Air Force Academy No.3 (35)/2017 NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Cvetelina VELKOVA Department of Technical Mechanics, Naval Academy Nikola Vaptsarov,Varna, Bulgaria (cvetelina.velkova1985@gmail.com)

More information

High-fidelity Multidisciplinary Design Optimization for Next-generation Aircraft

High-fidelity Multidisciplinary Design Optimization for Next-generation Aircraft High-fidelity Multidisciplinary Design Optimization for Next-generation Aircraft Joaquim R. R. A. Martins with contributions from John T. Hwang, Gaetan K. W. Kenway, Graeme J. Kennedy, Zhoujie Lyu CFD

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

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

AD in Mesh-Smoothing. - Global Mesh Optimization for Simplices

AD in Mesh-Smoothing. - Global Mesh Optimization for Simplices AD in Mesh-Smoothing - Global Mesh Optimization for Simplices Graz, 20.11.2013 Matthias Meuter What is the Basis? Mesh Optimization 2 General Mesh Optimization: Widely used in Simulations (from MBD to

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

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

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

SU 2 : Advanced Analysis Topics

SU 2 : Advanced Analysis Topics SU 2 : Advanced Analysis Topics OpenMDAO-SU 2 Joint Workshop Stanford University Tuesday, October 1, 2013 Thomas D. Economon Department of Aeronautics & Astronautics Stanford University 1 Three Main Topics

More information

A GPU Accelerated Adjoint Solver for Shape Optimization

A GPU Accelerated Adjoint Solver for Shape Optimization A GPU Accelerated Adjoint Solver for Shape Optimization Asitav Mishra 1 Asst. Research Scientist Dylan Jude 1 PhD Candidate James D. Baeder 1 Professor 1 Department of Aerospace Engineering, University

More information

Convex Optimization. Erick Delage, and Ashutosh Saxena. October 20, (a) (b) (c)

Convex Optimization. Erick Delage, and Ashutosh Saxena. October 20, (a) (b) (c) Convex Optimization (for CS229) Erick Delage, and Ashutosh Saxena October 20, 2006 1 Convex Sets Definition: A set G R n is convex if every pair of point (x, y) G, the segment beteen x and y is in A. More

More information

On the high order FV schemes for compressible flows

On the high order FV schemes for compressible flows Applied and Computational Mechanics 1 (2007) 453-460 On the high order FV schemes for compressible flows J. Fürst a, a Faculty of Mechanical Engineering, CTU in Prague, Karlovo nám. 13, 121 35 Praha, Czech

More information

Airfoil Shape Optimization Using Output-Based Adapted Meshes

Airfoil Shape Optimization Using Output-Based Adapted Meshes AIAA AVIATION Forum 5-9 June 2017, Denver, Colorado 23rd AIAA Computational Fluid Dynamics Conference AIAA 2017-3102 Airfoil Shape Optimization Using Output-Based Adapted Meshes Guodong Chen and Krzysztof

More information

Case C1.3: Flow Over the NACA 0012 Airfoil: Subsonic Inviscid, Transonic Inviscid, and Subsonic Laminar Flows

Case C1.3: Flow Over the NACA 0012 Airfoil: Subsonic Inviscid, Transonic Inviscid, and Subsonic Laminar Flows Case C1.3: Flow Over the NACA 0012 Airfoil: Subsonic Inviscid, Transonic Inviscid, and Subsonic Laminar Flows Masayuki Yano and David L. Darmofal Aerospace Computational Design Laboratory, Massachusetts

More information

AIRFOIL SHAPE OPTIMIZATION USING IMPROVED SIMPLE GENETIC ALGORITHM (ISGA)

AIRFOIL SHAPE OPTIMIZATION USING IMPROVED SIMPLE GENETIC ALGORITHM (ISGA) HEFAT007 5 th International onference on Heat Transfer, Fluid Mechanics and Thermodynamics Sun ity, South Africa MK1 AIRFOIL SHAPE OPTIMIZATION USING IMPROVED SIMPLE GENETI ALGORITHM (ISGA) Karim Mazaheri

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

Grid Dependence Study of Transonic/Supersonic Flow Past NACA Air-foil using CFD Hemanth Kotaru, B.Tech (Civil Engineering)

Grid Dependence Study of Transonic/Supersonic Flow Past NACA Air-foil using CFD Hemanth Kotaru, B.Tech (Civil Engineering) Grid Dependence Study of Transonic/Supersonic Flow Past NACA Air-foil using CFD Hemanth Kotaru, B.Tech (Civil Engineering) Abstract Computational fluid dynamics is a relatively young field in engineering.

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

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

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 Continuous Adjoint Method for the Computation of First- and Higher-Order Sensitivities

The Continuous Adjoint Method for the Computation of First- and Higher-Order Sensitivities NATIONAL TECHNICAL UNIVERSITY OF ATHENS Parallel CFD & Optimization Unit Laboratory of Thermal Turbomachines The Continuous Adjoint Method for the Computation of First- and Higher-Order Sensitivities (Activities,

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

Simulation of Turbulent Flow around an Airfoil

Simulation of Turbulent Flow around an Airfoil 1. Purpose Simulation of Turbulent Flow around an Airfoil ENGR:2510 Mechanics of Fluids and Transfer Processes CFD Lab 2 (ANSYS 17.1; Last Updated: Nov. 7, 2016) By Timur Dogan, Michael Conger, Andrew

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

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

Predicting Tumour Location by Modelling the Deformation of the Breast using Nonlinear Elasticity

Predicting Tumour Location by Modelling the Deformation of the Breast using Nonlinear Elasticity Predicting Tumour Location by Modelling the Deformation of the Breast using Nonlinear Elasticity November 8th, 2006 Outline Motivation Motivation Motivation for Modelling Breast Deformation Mesh Generation

More information

One-shot pseudo-time method for aerodynamic shape optimization using the Navier Stokes equations

One-shot pseudo-time method for aerodynamic shape optimization using the Navier Stokes equations INTERNATIONAL JOURNAL FOR NUMERICAL METHODS IN FLUIDS Int. J. Numer. Meth. Fluids 2012; 68:564 581 Published online 31 January 2011 in Wiley Online Library (wileyonlinelibrary.com)..2521 One-shot pseudo-time

More information

Application of Jetstream to a Suite of Aerodynamic Shape Optimization Problems. Karla Telidetzki

Application of Jetstream to a Suite of Aerodynamic Shape Optimization Problems. Karla Telidetzki Application of Jetstream to a Suite of Aerodynamic Shape Optimization Problems by Karla Telidetzki A thesis submitted in conformity with the requirements for the degree of Master of Applied Science Graduate

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

Automatic design procedures that use Computational Fluid Dynamics(CFD) combined with gradientbased

Automatic design procedures that use Computational Fluid Dynamics(CFD) combined with gradientbased 43rd AIAA Aerospace Sciences Meeting and Exhibit, January 10-13, 2005, Reno, NV Enhancement of Adjoint Design Methods via Optimization of Adjoint Parameters Sangho Kim Kaveh Hosseini Kasidit Leoviriyakit

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

Comparison of Interior Point Filter Line Search Strategies for Constrained Optimization by Performance Profiles

Comparison of Interior Point Filter Line Search Strategies for Constrained Optimization by Performance Profiles INTERNATIONAL JOURNAL OF MATHEMATICS MODELS AND METHODS IN APPLIED SCIENCES Comparison of Interior Point Filter Line Search Strategies for Constrained Optimization by Performance Profiles M. Fernanda P.

More information

Hybrid Simulation of Wake Vortices during Landing HPCN-Workshop 2014

Hybrid Simulation of Wake Vortices during Landing HPCN-Workshop 2014 Hybrid Simulation of Wake Vortices during Landing HPCN-Workshop 2014 A. Stephan 1, F. Holzäpfel 1, T. Heel 1 1 Institut für Physik der Atmosphäre, DLR, Oberpfaffenhofen, Germany Aircraft wake vortices

More information

INTERIOR POINT METHOD BASED CONTACT ALGORITHM FOR STRUCTURAL ANALYSIS OF ELECTRONIC DEVICE MODELS

INTERIOR POINT METHOD BASED CONTACT ALGORITHM FOR STRUCTURAL ANALYSIS OF ELECTRONIC DEVICE MODELS 11th World Congress on Computational Mechanics (WCCM XI) 5th European Conference on Computational Mechanics (ECCM V) 6th European Conference on Computational Fluid Dynamics (ECFD VI) E. Oñate, J. Oliver

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

How to Enter and Analyze a Wing

How to Enter and Analyze a Wing How to Enter and Analyze a Wing Entering the Wing The Stallion 3-D built-in geometry creation tool can be used to model wings and bodies of revolution. In this example, a simple rectangular wing is modeled

More information

SOLVING PARTIAL DIFFERENTIAL EQUATIONS ON POINT CLOUDS

SOLVING PARTIAL DIFFERENTIAL EQUATIONS ON POINT CLOUDS SOLVING PARTIAL DIFFERENTIAL EQUATIONS ON POINT CLOUDS JIAN LIANG AND HONGKAI ZHAO Abstract. In this paper we present a general framework for solving partial differential equations on manifolds represented

More information

Combining source transformation and operator overloading approaches for adjoint CFD solvers

Combining source transformation and operator overloading approaches for adjoint CFD solvers Combining source transformation and operator overloading approaches for adjoint CFD solvers Azar Dastouri Sinan Gezgin Prof. Uwe Naumann Software and Tools for Computational Engineering, RWTH Aachen University,

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

University of Bristol - Explore Bristol Research. Peer reviewed version. Link to published version (if available): /1.

University of Bristol - Explore Bristol Research. Peer reviewed version. Link to published version (if available): /1. Masters, D., Taylor, NJ., Rendall, T., Allen, C., & Poole, D. (2017). A geometric comparison of aerofoil shape parameterisation methods. AIAA Journal. https://doi.org/10.2514/1.j054943 Peer reviewed version

More information

Performance improvement of a wind turbine blade using a developed inverse design method

Performance improvement of a wind turbine blade using a developed inverse design method energyequipsys/ Vol 4/No1/June 2016/ 1-10 Energy Equipment and Systems http://energyequipsys.ut.ac.ir www.energyeuquipsys.com Performance improvement of a wind turbine blade using a developed inverse design

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

Constrained and Unconstrained Optimization

Constrained and Unconstrained Optimization Constrained and Unconstrained Optimization Carlos Hurtado Department of Economics University of Illinois at Urbana-Champaign hrtdmrt2@illinois.edu Oct 10th, 2017 C. Hurtado (UIUC - Economics) Numerical

More information

MATH 573 Advanced Scientific Computing

MATH 573 Advanced Scientific Computing MATH 573 Advanced Scientific Computing Analysis of an Airfoil using Cubic Splines Ashley Wood Brian Song Ravindra Asitha What is Airfoil? - The cross-section of the wing, blade, or sail. 1. Thrust 2. Weight

More information

I. Introduction. Optimization Algorithm Components. Abstract for the 5 th OpenFOAM User Conference 2017, Wiesbaden - Germany

I. Introduction. Optimization Algorithm Components. Abstract for the 5 th OpenFOAM User Conference 2017, Wiesbaden - Germany An Aerodynamic Optimization Framework for the Automotive Industry, based on Continuous Adjoint and OpenFOAM E. Papoutsis-Kiachagias 1, V. Asouti 1, K. Giannakoglou 1, K. Gkagkas 2 1) National Technical

More information

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4 UMEÅ UNIVERSITY Department of Physics Claude Dion Olexii Iukhymenko May 15, 2015 Strömningslära Fluid Dynamics (5FY144) Computer laboratories using COMSOL v4.4!! Report requirements Computer labs must

More information

Aerodynamic Data Reconstruction and Inverse Design Using Proper Orthogonal Decomposition

Aerodynamic Data Reconstruction and Inverse Design Using Proper Orthogonal Decomposition AIAA JOURNAL Vol. 42, No. 8, August 2004 Aerodynamic Data Reconstruction and Inverse Design Using Proper Orthogonal Decomposition T. Bui-Thanh and M. Damodaran Nanyang Technological University, Singapore

More information

AERODYNAMIC SHAPES DESIGN ON THE BASE OF DIRECT NEWTON TYPE OPTIMIZATION METHOD

AERODYNAMIC SHAPES DESIGN ON THE BASE OF DIRECT NEWTON TYPE OPTIMIZATION METHOD AERODYNAMIC SHAPES DESIGN ON THE BASE OF DIRECT NEWTON TYPE OPTIMIZATION METHOD A.V. Grachev*, A.N. Kraiko**, S.A. Takovitskii* *Central Aerohydrodynamic Institute (TsAGI), **Central Institute of Aviation

More information

CONFORMAL MAPPING POTENTIAL FLOW AROUND A WINGSECTION USED AS A TEST CASE FOR THE INVISCID PART OF RANS SOLVERS

CONFORMAL MAPPING POTENTIAL FLOW AROUND A WINGSECTION USED AS A TEST CASE FOR THE INVISCID PART OF RANS SOLVERS European Conference on Computational Fluid Dynamics ECCOMAS CFD 2006 P. Wesseling, E. Oñate and J. Périaux (Eds) c TU Delft, The Netherlands, 2006 CONFORMAL MAPPING POTENTIAL FLOW AROUND A WINGSECTION

More information

APPLICATION OF VARIABLE-FIDELITY MODELS TO AERODYNAMIC OPTIMIZATION

APPLICATION OF VARIABLE-FIDELITY MODELS TO AERODYNAMIC OPTIMIZATION Applied Mathematics and Mechanics (English Edition), 2006, 27(8):1089 1095 c Editorial Committee of Appl. Math. Mech., ISSN 0253-4827 APPLICATION OF VARIABLE-FIDELITY MODELS TO AERODYNAMIC OPTIMIZATION

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

Status of Gradient-based Airframe MDO at DLR The VicToria Project

Status of Gradient-based Airframe MDO at DLR The VicToria Project DLR.de Chart 1 Status of Gradient-based Airframe MDO at DLR The VicToria Project M. Abu-Zurayk, C. Ilic, A. Merle, A. Stück, S. Keye, A. Rempke (Institute of Aerodynamics and Flow Technology) T. Klimmek,

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

GAs for aerodynamic shape design II: multiobjective optimization and multi-criteria design

GAs for aerodynamic shape design II: multiobjective optimization and multi-criteria design GAs for aerodynamic shape design II: multiobjective optimization and multi-criteria design D. Quagliarella, A. Vicini C.I.R.A., Centro Italiano Ricerche Aerospaziali Via Maiorise 8143 Capua (Italy) Abstract

More information

Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (2), Quach Thi Son (2)

Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (2), Quach Thi Son (2) GSJ: VOLUME 6, ISSUE 6, JUNE 018 116 Research and Design working characteristics of orthogonal turbine Nguyen Quoc Tuan (1), Chu Dinh Do (), Quach Thi Son () (1) Institute for hydro power and renewable

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

Programming, numerics and optimization

Programming, numerics and optimization Programming, numerics and optimization Lecture C-4: Constrained optimization Łukasz Jankowski ljank@ippt.pan.pl Institute of Fundamental Technological Research Room 4.32, Phone +22.8261281 ext. 428 June

More information

Aerospace Applications of Optimization under Uncertainty

Aerospace Applications of Optimization under Uncertainty Aerospace Applications of Optimization under Uncertainty Sharon Padula, Clyde Gumbert, and Wu Li NASA Langley Research Center Abstract The Multidisciplinary Optimization (MDO) Branch at NASA Langley Research

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