OpenVSP Workshop. Rob McDonald. San Luis Obispo August 20, 2014

Size: px
Start display at page:

Download "OpenVSP Workshop. Rob McDonald. San Luis Obispo August 20, 2014"

Transcription

1 OpenVSP Workshop Rob McDonald San Luis Obispo August 20, 2014

2 Geometry as Origin of Analysis (Design) Shape is fundamental starting point for physics-based analysis Aerodynamics Structures Aeroelasticity Aerothermal / Heating Mass Properties Acoustics RCS / Signatures Packaging / Layout Manufacturing etc. Across disciplines and fidelity, shape is the common denominator. Unfortunately, there is little to no commonality in practice. 2

3 What is Geometry? What is a circle (sphere)? 3

4 What is Geometry? What is a circle (sphere)? The locus of points equidistant from a given point (x0, y0, r). A circle is an idea. Many approximate representations exist. 4

5 What is Geometry? What is a circle? What is a parameter? A labeled quantity that is familiar to deal with: Aspect Ratio Taper Ratio Thickness to Chord Ratio Some parameters are dimensions with special names. Sweep Angle Wing Span Familiar parameters correspond to canonical shapes. Circle Airfoil Wing 5

6 What is Geometry? What is a circle? What is a parameter? Is geometry a dimensioned drawing? Dimensions are parameters for arbitrary shapes. 6

7 What is Geometry? What is a circle? What is a parameter? Is geometry a dimensioned drawing? Is geometry a CAD model? CAD models arbitrary shapes. 7

8 Geometry Modeling Gap Three approaches have evolved to geometry modeling for physics-based analysis. Analysis Integrated Each code generates geometry based on its own inputs. Parametric Geometry CAD Based General-purpose CAD is used to model geometry. Prepared for analysis through grid generation and pre-processing tools. 8

9 Geometry (Mis)Representation True geometry does not correspond to analysis representation. CAD models can be built with varying (single) intent Manufacturing Represent manufacturing process, target CAM Integration & Maintenance Packaging, accessibility, etc. Structures Represent loads & load paths, target FEA Many elements do not correspond to CAD model Beam, rod, shell, plate, etc. Aerodynamics Represent OML, propulsion, control surfaces 9

10 Analysis Fidelity Holes Single model-to-analysis work flow typically developed. Fidelity selected (at least limited) by geometry model. Very little choice in analysis fidelity. Sparsely populated fidelity / discipline matrix. 10

11 Many Models Possible Representation of Geometry Shape Concept and Parameters are Geometry AR, S, Λ, λ, t/c 11

12 Representation Relates to Fidelity Vortex Lattice Panel Code CFD 12

13 Often Mistaken for Design Stage Vortex Lattice Panel Code CFD Conceptual Preliminary Detail 13

14 Phases of Aircraft Design Design phase is about what decisions are being made, not how they are made.* Phase I Conceptual Design Phase II Preliminary Design Phase III Detail Design Vs. Vs. Vs. 3 O 5 O Basic Mission Requirements Aeroelastic Requirements Local Strength Requirements Known Range, Altitude, Speed Basic Material Properties σ/ρ Ε/ρ $.lb Fatigue Requirements Flutter Requirements Overall Strength Requirements Producibility Functional Requirements Results Geometry Air Foil Type R t/c λ Δ Design Objectives Drag Level Weight Goals Cost Goals Basic Internal Arrangement Complete External Configuration Camber, Twist Distributions Local Flow Problems Solved Major Loads, Stresses, Deflections Detail Design Mechanisms Joints, Fittings & Attachments Design Refinements as Results of Test Output Feasible Design Mature Design Shop Drawings TRL Leland Nicolai, Fundamentals of Aircraft and Airship Design, AIAA, *Except where certain decisions require more advanced techniques. 14

15 Parameters Evolve Through Design Shape Concept and Parameters are Geometry True through entire design process. Conceptual Preliminary Detail AR, S, Λ, λ, t/c General Concept twist = f(η), t/c = f(η), Complex Planform, High-lift geometry, Control surfaces High-Level Finesse Detailed part designs Every Aspect Determined Design phase is about what decisions are being made, not how they are made. 15

16 Vehicle Sketch Pad (VSP) Rapid parametric geometry for design NASA developed & trusted tool JR Gloudemans Primary developer 2010 NASA Software of the Year Honorable Mention Released as Open Source Software (NOSA 1.3) January 2012 Guidelines for improvement Enable improved physics-based analysis Support design and optimization Maintain simplicity & The VSP Way 16

17 The VSP Way Intuitive, Quick, Easy First time users instantly productive Parametric geometry for design Familiar to Aerospace & Designers Wings, Fuselage, Nacelle AR, Sweep, b, t/c, etc. Real-time interactive response Sliders vary parameters Geometry updates interactively Geometry represented by cartoon Not actual wetted surface Actual wetted surface generated on command 17

18 v3 Features / Changes User Invisible Total refactor/redesign Separate Geometry, GUI, Graphics Will enable true headless versions More code re-use Less code when introducing components Entire classes of bugs eliminated Better build system New curve/surface library Single representation throughout Incompatible Changes Old scripting gone Vorview gone Rhino *.3dm gone File format change Coming Assisted parameterization VSPAero (Dave Kinney, NASA Ames) 18

19 v3 Features / Changes Done in v2 Ported to v3 Degenerate Geometry Improved CFD Mesh Design Files Many others Done Component Sets Better Symmetry Better Attachment Working Parameter UnDo Sub-surface tagging STEP Files More flexible and consistent components Advanced Users User-defined Components C++ API Python (and other script) API New scripting 19

20 Redesign & Refactor ~1992 to OpenVSP 2.X OpenVSP 3.X Geometry Geometry Subscribe to Message Passing Complex Requests & Data GUI 3D Graphics GUI 3D Graphics Headless batch/script mode Headless API access HPC Installation 20

21 AngelScript C/C++ Like Syntax Designed for integration with C++ Only has access to registered entities Built-in Scripting Custom Components User defined parameterization User defined GUI User defined geometry Batch/Script mode Access to complete API Write programs using API without dependencies Allows batch mode without complex command line Easier to maintain Advanced Parameter Linking Under development for USAF 21

22 API / Scripting //==== Test Comp Geom ====//! gid1 = AddGeom( "POD", "" );! string p0 = GetParm( gid1, "Length", "Design" );! string p1 = GetParm( gid1, "X_Location", "XForm" );! SetParmVal( p0, 12.0 );! SetParmVal( p1, 4.0 );!! //==== Test Plane Slice ====//! string slice_mesh_id = ComputePlaneSlice( 0, 6, vec3d(0.0, 0.0, 1.0), true );! Access to geometry/parameters Access to analysis/results Access to data string pslice_results = FindLatestResultsID( "Slice" );! double_arr = GetDoubleResults( pslice_results, "Slice_Area" );! if ( double_arr.size()!= 6 )! Print( "---> Error: API ComputePlaneSlice" );!! string slice_geom_results = CreateGeomResults( slice_mesh_id, "Slice_Mesh" );! int_arr = GetIntResults( slice_geom_results, "Num_Slices" );! if ( int_arr[0]!= 6 )! Print( "---> Error: API CreateGeomResults (Slice)" );!! //===== Write File With Slice Triangles ====//! if( f.open("slice_tris.stl", "w") >= 0 )! {! int num_slices = int_arr[0];! f.writestring( "solid " + "\r\n" );! for ( int s = 0 ; s < num_slices ; s++ )! {! = GetVec3dResults( slice_geom_results, "Slice_Tris_Pnt_0", s );! = GetVec3dResults( slice_geom_results, "Slice_Tris_Pnt_1", s );! = GetVec3dResults( slice_geom_results, "Slice_Tris_Pnt_2", s );!! for ( int p = 0 ; p < int(p0_vec.size()) ; p++ )! {! f.writestring( "facet normal \r\n" );! f.writestring( " outer loop \r\n" );! f.writestring( " vertex " + p0_vec[p].x() + " " + p0_vec[p].y() + " " + p0_vec[p].z() + "\r\n");! f.writestring( " vertex " + p1_vec[p].x() + " " + p1_vec[p].y() + " " + p1_vec[p].z() + "\r\n");! f.writestring( " vertex " + p2_vec[p].x() + " " + p2_vec[p].y() + " " + p2_vec[p].z() + "\r\n");! f.writestring( " endloop \r\n" );! f.writestring( "endfacet \r\n" );! }! }! f.writestring( "endsolid \r\n" );! f.close();! }! All memory maintained by VSP 22

23 User Defined Components 23

24 User Defined Components //==== Init Is Called Once During Each Custom Geom Construction =============================//! //==== Avoid Global Variables Unless You Want Shared With All Custom Geoms of This Type =====//! void Init() {!!//==== Add Parm Types =====//!!string height = AddParm( PARM_DOUBLE_TYPE, "Height", "Design" );!!SetParmValLimits( height, 4.0, 0.001, 1.0e12 );!!string diameter = AddParm( PARM_DOUBLE_TYPE, "Diameter", "Design" );!!SetParmValLimits( diameter, 8.0, 0.001, 1.0e12 );!!//==== Add Cross Sections =====//!!string xsec_surf = AddXSecSurf();!!AppendXSec( xsec_surf, XS_POINT);!!AppendXSec( xsec_surf, XS_CIRCLE);!!AppendXSec( xsec_surf, XS_POINT);! }! //==== Global Gui IDs - These Are Consistent For All Created Boxes And Used In UpdateGUI====//! int DesignTab;! int HeightSlider;! int DiameterSlider;!! //==== InitGui Is Called Once During Each Custom Geom Construction ====//! void InitGui() {!!DesignTab = AddGui( GDEV_TAB, "Design" );!!AddGui( GDEV_YGAP, "" );!!AddGui( GDEV_DIVIDER_BOX, "Design" );!!HeightSlider = AddGui( GDEV_SLIDER_ADJ_RANGE_INPUT, "Height" );!!DiameterSlider = AddGui( GDEV_SLIDER_ADJ_RANGE_INPUT, "Diameter" );!!AddGui( GDEV_YGAP, "" );! }! //==== UpdateGui Is Called Every Time The Gui is Updated ====//! void UpdateGui() {!!string geom_id = GetCurrCustomGeom();!!string dia = GetParm( geom_id, "Diameter", "Design" );!!string ht = GetParm( geom_id, "Height", "Design" );!!UpdateGui( HeightSlider, ht );!!UpdateGui( DiameterSlider, dia );! }! //==== UpdateSurf Is Called Every Time The Geom is Updated ====//! void UpdateSurf() {!!string geom_id = GetCurrCustomGeom();!!//==== Set Base XSec Diameter ====//!!string dia_parm = GetParm( geom_id, "Diameter", "Design" );!!double dia_val = GetParmVal( dia_parm );!!//==== Get The XSec To Change ====//!!string xsec_surf = GetXSecSurf( geom_id, 0 );!!//==== Set The Diameter ====//!!string xsec1 = GetXSec( xsec_surf, 1 );!!string xsec1_dia = GetXSecParm( xsec1, "Circle_Diameter" );!!SetParmVal( xsec1_dia, dia_val );!!//==== Set The Height ====//!!double ht_val = GetParmVal( GetParm( geom_id, "Height", "Design" ) );!!string xsec2 = GetXSec( xsec_surf, 2 );!!SetCustomXSecLoc( xsec2, vec3d( ht_val, 0, 0 ) );!!SkinXSecSurf();! }! 24

25 VSP To CAD Interoperability VSP Parameters AR, S, Λ, λ, t/c Fit Model Assisted Parameterization Surface Mesh Smooth Surface Export STEP Files Surface Mesh CAD Model / CFD Grid Gen 25

26 Subsurfaces 26

27 Domain Modeling 27

28 Agenda 8/20/14 8/21/14 8/22/14 Wednesday Thursday Friday 9:00 6 9:30 Welcome<&<Overview Custom<Components OpenVSP<Surface<Meshing 9: :00 OpenVSP<&<The<Design<Process VSP<to<CFD<with<Pointwise 10: :30 Introduction<to<VSP<Modeling VSP<File<Types 10: :00 GoCart<&<Cart3D<Introduction Fit<Model<Preview 11: :30 GoCart<Tutorial</<Working<w/OpenVSSubsurf,<Sets,<Symm,<Attach 11: :00 Unconventional<Design<STAR6CCM+ GoCart<w/<Adjoint<Preview OpenVSP<with<AVL 12: :30 Lunch 12: :00 13: :30 Understanding<Skinning 13: :00 USAF<SBIR<Work<Plan 14: :30 Advanced<VSP<Modeling 14: :00 15: :30 15: :00 Best<Practices<for<Modeling Lunch GoCart<Working<Session API<&<Scripting VSPAero Lunch Flightstream<Panel<Code 16: :30 Modeling<Q&A Student<Validation<Activities 16: :00 17: :30 17: :00 18: :30 BBQ<Social SLO<Farmer's<Market 28

29 Logistics Parking Restrooms Lunch / Refreshments BBQ Wednesday 6pm, Santa Rosa Park. Corner of Santa Rosa & Oak St Oak St. Farmers Market Thursday 6pm, Downtown Wireless Username: guest Password: WiFi-guest91171 (Wednesday morning only) Password: WiFi-guest74658 Presenters Please send me your presentation (PDF). Please post v2 models to OpenVSP hangar. Please send me v3 models for Wiki. 29

30 Area Map Parking Workshop Park BBQ Hotels Downtown 30

31 Questions? 8/20/14 8/21/14 8/22/14 Wednesday Thursday Friday 9:00 6 9:30 Welcome<&<Overview Custom<Components OpenVSP<Surface<Meshing 9: :00 OpenVSP<&<The<Design<Process VSP<to<CFD<with<Pointwise 10: :30 Introduction<to<VSP<Modeling VSP<File<Types 10: :00 GoCart<&<Cart3D<Introduction Fit<Model<Preview 11: :30 GoCart<Tutorial</<Working<w/OpenVSSubsurf,<Sets,<Symm,<Attach 11: :00 Unconventional<Design<STAR6CCM+ GoCart<w/<Adjoint<Preview OpenVSP<with<AVL 12: :30 Lunch 12: :00 13: :30 Understanding<Skinning 13: :00 USAF<SBIR<Work<Plan 14: :30 Advanced<VSP<Modeling 14: :00 15: :30 15: :00 Best<Practices<for<Modeling Lunch GoCart<Working<Session API<&<Scripting VSPAero Lunch Flightstream<Panel<Code 16: :30 Modeling<Q&A Student<Validation<Activities 16: :00 17: :30 17: :00 18: :30 BBQ<Social SLO<Farmer's<Market 31

Inaugural OpenVSP Workshop

Inaugural OpenVSP Workshop Inaugural OpenVSP Workshop Rob McDonald San Luis Obispo August 22, 2012 Geometry as Origin of Analysis (Design) Shape is fundamental starting point for physics-based analysis Aerodynamics Structures Aeroelasticity

More information

OpenVSP: Parametric Geometry for Conceptual Aircraft Design. Rob McDonald, Ph.D. Associate Professor, Cal Poly

OpenVSP: Parametric Geometry for Conceptual Aircraft Design. Rob McDonald, Ph.D. Associate Professor, Cal Poly OpenVSP: Parametric Geometry for Conceptual Aircraft Design Rob McDonald, Ph.D. Associate Professor, Cal Poly 1 Vehicle Sketch Pad (VSP) Rapid parametric geometry for design NASA developed & trusted tool

More information

OpenVSP Workshop (6) Rob McDonald. Cliffs Resort, Pismo Beach CA August 30 Sept 1, 2017

OpenVSP Workshop (6) Rob McDonald. Cliffs Resort, Pismo Beach CA August 30 Sept 1, 2017 OpenVSP Workshop (6) Rob McDonald Cliffs Resort, Pismo Beach CA August 30 Sept 1, 2017 1 Geometry as Origin of Analysis (Design) Shape is fundamental starting point for physics-based analysis Aerodynamics

More information

An Advanced Extensible Parametric Geometry Engine for Multi-Fidelity and Multi-Physics Analysis in Conceptual Design

An Advanced Extensible Parametric Geometry Engine for Multi-Fidelity and Multi-Physics Analysis in Conceptual Design An Advanced Extensible Parametric Geometry Engine for Multi-Fidelity and Multi-Physics Analysis in Conceptual Design Rob McDonald & David Marshall Cal Poly Andy Ko. JR Gloudemans NASA Glenn July 23, 2012

More information

What and Why. V3.0 is a complete rewrite of VSP

What and Why. V3.0 is a complete rewrite of VSP OpenVSP 3.0 & API What and Why V3.0 is a complete rewrite of VSP - Code bloat - Replace old libraries - Improve curve/surface libraries - Separate geometry engine from GUI/graphics - Consistent style -

More information

NAVAIR Use of OpenVSP

NAVAIR Use of OpenVSP NAVAIR 4.0M.1.5 NAVAIR Use of OpenVSP Presented to: OpenVSP Workshop 29 Aug 2017 Presented by: AJ Field AIR-4.0M Public Release Authorization 2017-611. 1 Agenda Agenda Role of NAVAIR Conceptual Aircraft

More information

STRUCTURAL MODELING AND OPENVSP

STRUCTURAL MODELING AND OPENVSP OpenVSP Workshop 2015 Hampton, Virginia August 11-13, 2015 STRUCTURAL MODELING AND OPENVSP Overview Presentation Trevor Laughlin trevor@laughlinresearch.com INTRODUCTION Professional Experience Managing

More information

VSP Meshing. Rob McDonald Cal Poly. VSP Workshop

VSP Meshing. Rob McDonald Cal Poly. VSP Workshop VSP Meshing Rob McDonald Cal Poly VSP Workshop Paths to Cart3D Quadrilateral Wireframe Export CART3d File (.tri) Unintersected Triangle Wireframe CompGeom Export CART3d File (.tri) CFD Mesh Output.tri

More information

The Role of Geometry in the Multidisciplinary Design of Aerospace Vehicles

The Role of Geometry in the Multidisciplinary Design of Aerospace Vehicles The Role of Geometry in the Multidisciplinary Design of Aerospace Vehicles SIAM Conference on Geometric Design Thomas A. Zang & Jamshid A. Samareh Multidisciplinary Optimization Branch NASA Langley Research

More information

VSP File Types & VSP Meshing

VSP File Types & VSP Meshing VSP File Types & VSP Meshing Rob McDonald Cal Poly VSP Workshop August 21 & 22, 2014 VSP v2 Input Representations Input Parametric geometry (vsp) Background image (jpg) Surface textures (tga, jpg) Automation

More information

Enabling Rapid Conceptual Design Using Geometry-Based Multi-Fidelity Models in VSP

Enabling Rapid Conceptual Design Using Geometry-Based Multi-Fidelity Models in VSP 51st AIAA Aerospace Sciences Meeting including the New Horizons Forum and Aerospace Exposition 07-10 January 2013, Grapevine (Dallas/Ft. Worth Region), Texas AIAA 2013-0328 Enabling Rapid Conceptual Design

More information

CAD-BASED WORKFLOWS. VSP Workshop 2017

CAD-BASED WORKFLOWS. VSP Workshop 2017 CAD-BASED WORKFLOWS VSP Workshop 2017 RESEARCH IN FLIGHT COMPANY Established 2012 Primary functions are the development, marketing and support of FlightStream and the development of aerodynamic solutions

More information

Lift Superposition and Aerodynamic Twist Optimization for Achieving Desired Lift Distributions

Lift Superposition and Aerodynamic Twist Optimization for Achieving Desired Lift Distributions 48th AIAA Aerospace Sciences Meeting Including the New Horizons Forum and Aerospace Exposition 4-7 January 2010, Orlando, Florida AIAA 2010-1227 Lift Superposition and Aerodynamic Twist Optimization for

More information

University of Texas VSP Structural Analysis Module Update - Demonstration

University of Texas VSP Structural Analysis Module Update - Demonstration University of Texas VSP Structural Analysis Module Update - Demonstration http://vspsam.ae.utexas.edu/ VSP Workshop, San Luis Obispo, CA Hersh Amin Armand J. Chaput Department of Aerospace Engineering

More information

Optimate CFD Evaluation Optimate Glider Optimization Case

Optimate CFD Evaluation Optimate Glider Optimization Case Optimate CFD Evaluation Optimate Glider Optimization Case Authors: Nathan Richardson LMMFC CFD Lead 1 Purpose For design optimization, the gold standard would be to put in requirements and have algorithm

More information

AERODYNAMIC DESIGN OF FLYING WING WITH EMPHASIS ON HIGH WING LOADING

AERODYNAMIC DESIGN OF FLYING WING WITH EMPHASIS ON HIGH WING LOADING AERODYNAMIC DESIGN OF FLYING WING WITH EMPHASIS ON HIGH WING LOADING M. Figat Warsaw University of Technology Keywords: Aerodynamic design, CFD Abstract This paper presents an aerodynamic design process

More information

Aeroelasticity in MSC.Nastran

Aeroelasticity in MSC.Nastran Aeroelasticity in MSC.Nastran Hybrid Static Aeroelasticity new capabilities - CFD data management Presented By: Fausto Gill Di Vincenzo 04-06-2012 Hybrid Static Aeroelastic Solution with CFD data MSC.Nastran

More information

VSP File Types & VSP Meshing

VSP File Types & VSP Meshing VSP File Types & VSP Meshing Rob McDonald Cal Poly VSP Workshop August 23, 2012 VSP Input Representations Input Parametric geometry (vsp) Background image (jpg) Surface textures (tga, jpg) Automation script

More information

Parametric Geometry for Propulsion-Airframe Integration

Parametric Geometry for Propulsion-Airframe Integration Parametric Geometry for Propulsion-Airframe Integration NASA NRA NNX11AI70A Topic 2.2 Russell K. Denney Jimmy C. Tai Dimitri N. Mavris Georgia Institute of Technology Atlanta, GA 30332 Outline Objective

More information

A Cooperative Approach to Multi-Level Multi-Disciplinary Aircraft Optimization

A Cooperative Approach to Multi-Level Multi-Disciplinary Aircraft Optimization www.dlr.de Chart 1 ECCOMAS 2016, Greece, Crete, June 5-10, 2016 A Cooperative Approach to Multi-Level Multi-Disciplinary Aircraft Optimization Caslav Ilic, Mohammad Abu-Zurayk Martin Kruse, Stefan Keye,

More information

MSC Software Aeroelastic Tools. Mike Coleman and Fausto Gill di Vincenzo

MSC Software Aeroelastic Tools. Mike Coleman and Fausto Gill di Vincenzo MSC Software Aeroelastic Tools Mike Coleman and Fausto Gill di Vincenzo MSC Software Confidential 2 MSC Software Confidential 3 MSC Software Confidential 4 MSC Software Confidential 5 MSC Flightloads An

More information

Creo for Analyst. Overview

Creo for Analyst. Overview Creo for Analyst Overview In this course, you will learn how to utilize the core functionality enhancements in Creo Parametric 2.0. First, you will become familiar with using and customizing the new ribbon

More information

CFD Analysis of conceptual Aircraft body

CFD Analysis of conceptual Aircraft body CFD Analysis of conceptual Aircraft body Manikantissar 1, Dr.Ankur geete 2 1 M. Tech scholar in Mechanical Engineering, SD Bansal college of technology, Indore, M.P, India 2 Associate professor in Mechanical

More information

Computer Aided Design Analysis of Aircraft Wing Using Cad Software

Computer Aided Design Analysis of Aircraft Wing Using Cad Software Computer Aided Design Analysis of Aircraft Wing Using Cad Software Mohd Mansoor Ahmed M.Tech, Dept of Mechanical Engineering, Syed Hashim College of Science &Technology, Pregnapur, Medak District. Abstract:

More information

Optimum Design of a Flexible Wing Structure to Enhance Roll Maneuver in Supersonic Flow

Optimum Design of a Flexible Wing Structure to Enhance Roll Maneuver in Supersonic Flow Optimum Design of a Flexible Wing Structure to Enhance Roll Maneuver in Supersonic Flow Duane E. Veley, Narendra S. Khot, Jeffrey V. Zweber Structures Division, Air Vehicles Directorate, Air Force Research

More information

midas FEA V320 Table of Contents

midas FEA V320 Table of Contents midas FEA V320 New Feature 01 CFD Moving Mesh Pre Process 01 File Open > File Preview 02 Extract Surface 03 Frame to Solid > Import 04 Tetra Auto mesh generation 05 Mesh options 06 Auto mesh Solid Function

More information

OpenVSP-Connect Visualize Your Aircraft Sizing Results with NASA s Vehicle Sketch Pad. Dieter Scholz Tahir Sousa

OpenVSP-Connect Visualize Your Aircraft Sizing Results with NASA s Vehicle Sketch Pad. Dieter Scholz Tahir Sousa AIRCRAFT DESIGN AND SYSTEMS GROUP (AERO) Visualize Your Aircraft Sizing Results with NASA s Vehicle Sketch Pad Tahir Sousa Hamburg University of Applied Sciences Hamburg University of Applied Sciences

More information

Introduction to Solid Modeling Parametric Modeling. Mechanical Engineering Dept.

Introduction to Solid Modeling Parametric Modeling. Mechanical Engineering Dept. Introduction to Solid Modeling Parametric Modeling 1 Why draw 3D Models? 3D models are easier to interpret. Simulation under real-life conditions. Less expensive than building a physical model. 3D models

More information

Multidisciplinary design optimization (MDO) of a typical low aspect ratio wing using Isight

Multidisciplinary design optimization (MDO) of a typical low aspect ratio wing using Isight Multidisciplinary design optimization (MDO) of a typical low aspect ratio wing using Isight Mahadesh Kumar A 1 and Ravishankar Mariayyah 2 1 Aeronautical Development Agency and 2 Dassault Systemes India

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

PreSTo Wing Module Optimization for the Double Trapezoidal Wing

PreSTo Wing Module Optimization for the Double Trapezoidal Wing PreSTo Wing Module Optimization for the Double Trapezoidal Wing Karunanidhi Ramachandran and Dieter Scholz Abstract This paper explains the Aircraft Preliminary Sizing Tool (PreSTo) developed at the Hamburg

More information

A Rapid Geometry Engine for Preliminary Aircraft Design

A Rapid Geometry Engine for Preliminary Aircraft Design 44th AIAA Aerospace Sciences Meeting and Exhibit 9-12 January 2006, Reno, Nevada AIAA 2006-929 A Rapid Geometry Engine for Preliminary Aircraft Design David L. Rodriguez1* and Peter Sturdza2 Desktop Aeronautics,

More information

VSP Structural Analysis Module - Wing Design and Analysis. Users Guide

VSP Structural Analysis Module - Wing Design and Analysis. Users Guide VSP Structural Analysis Module - Wing Design and Analysis Users Guide Primary Authors: Sarah Brown, Undergraduate Research Assistant Armand Chaput, Principal Investigator Reviewed By: Jose Galvan, Undergraduate

More information

VSP Workshop 2017 OpenVSP Parasite Drag Build Up

VSP Workshop 2017 OpenVSP Parasite Drag Build Up 1 VSP Workshop 2017 OpenVSP Parasite Drag Build Up Presented by: Bryan Schmidt Empirical Systems Aerospace, Inc. Work Support By: AFRL SBIR Phase II 2 Introduction Goal Reduce the time it takes to complete

More information

THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS

THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS March 18-20, 2013 THE EFFECTS OF THE PLANFORM SHAPE ON DRAG POLAR CURVES OF WINGS: FLUID-STRUCTURE INTERACTION ANALYSES RESULTS Authors: M.R. Chiarelli, M. Ciabattari, M. Cagnoni, G. Lombardi Speaker:

More information

Conceptual design, Structural and Flow analysis of an UAV wing

Conceptual design, Structural and Flow analysis of an UAV wing IOSR Journal of Mechanical and Civil Engineering (IOSR-JMCE) e-issn: 2278-1684,p-ISSN: 2320-334X, Volume 13, Issue 3 Ver. IV (May- Jun. 2016), PP 78-87 www.iosrjournals.org Conceptual design, Structural

More information

ANALYSIS OF AIRCRAFT WING WITH DIFFERENT MATERIALS USING ANSYS SOFTWARE

ANALYSIS OF AIRCRAFT WING WITH DIFFERENT MATERIALS USING ANSYS SOFTWARE ANALYSIS OF AIRCRAFT WING WITH DIFFERENT MATERIALS USING ANSYS SOFTWARE K.Ravindra 1, P.V Divakar Raju 2 1 PG Scholar,Mechanical Engineering,Chadalawada Ramanamma Engineering College,Tirupati,Andhra Pradesh,India.

More information

The Engineering Sketch Pad: A Solid-Modeling, Feature-Based, Web-Enabled System for Building Parametric Geometry

The Engineering Sketch Pad: A Solid-Modeling, Feature-Based, Web-Enabled System for Building Parametric Geometry The Engineering Sketch Pad: A Solid-Modeling, Feature-Based, Web-Enabled System for Building Parametric Geometry Robert Haimes haimes@mit.edu Aerospace Computational Design Lab Massachusetts Institute

More information

2 Aircraft Design Sequence

2 Aircraft Design Sequence 2-1 2 Aircraft Design Sequence The sequence of activities during the project phase (see Fig. 1.3) can be divided in two steps: 1.) preliminary sizing 2.) conceptual design. Beyond this there is not much

More information

Re-engineering the design process through computation

Re-engineering the design process through computation Copyright 1997, American Institute of Aeronautics and Astronautics, Inc. AIAA Meeting Papers on Disc, January 1997 A9715671, F49620-95-1-0259, AIAA Paper 97-0641 Re-engineering the design process through

More information

An efficient method for predicting zero-lift or boundary-layer drag including aeroelastic effects for the design environment

An efficient method for predicting zero-lift or boundary-layer drag including aeroelastic effects for the design environment The Aeronautical Journal November 2015 Volume 119 No 1221 1451 An efficient method for predicting zero-lift or boundary-layer drag including aeroelastic effects for the design environment J. A. Camberos

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

A Surface Parameterization Method for Airfoil Optimization and High Lift 2D Geometries Utilizing the CST Methodology

A Surface Parameterization Method for Airfoil Optimization and High Lift 2D Geometries Utilizing the CST Methodology 47th AIAA Aerospace Sciences Meeting Including The New Horizons Forum and Aerospace Exposition AIAA 2009-1461 5-8 January 2009, Orlando, Florida A Surface Parameterization Method for Airfoil Optimization

More information

ALPINE Automated Layout with a Python Integrated NDARC Environment

ALPINE Automated Layout with a Python Integrated NDARC Environment Presented at: OpenVSP Workshop 2017 ALPINE Automated Layout with a Python Integrated NDARC Environment Distribution Statement A Approved for Public Release Distribution Unlimited. Review Completed by AMRDEC

More information

jpad A Java Toolchain of Computer Programs for Aircraft Design.

jpad A Java Toolchain of Computer Programs for Aircraft Design. SCAD2015 5 th Symposium on Collaboration in Aircraft Design 12-14 October, Naples, Italy jpad A Java Toolchain of Computer Programs for Aircraft Design. Software Engineering Best Practices Applied to Aerospace

More information

458 JAXA Special Publication JAXA-SP E alleviation 8, 10). Rodriguez et al. conducted aeroelastic analysis of a wing of Generic Transport Model

458 JAXA Special Publication JAXA-SP E alleviation 8, 10). Rodriguez et al. conducted aeroelastic analysis of a wing of Generic Transport Model First International Symposium on Flutter and its Application, 2016 457 NUMERICAL STUDY ON ADAPTIVE WING STRUCTURE USING LEADING AND TRAILING EDGE FLAPS FOR REDUCTION OF BENDING MOMENT Kanata FUJII +1,

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

Autodesk Inventor 2019 and Engineering Graphics

Autodesk Inventor 2019 and Engineering Graphics Autodesk Inventor 2019 and Engineering Graphics An Integrated Approach Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the

More information

SUAVE: An Open-Source Environment Enabling Unconventional Vehicle Designs through Higher Fidelity

SUAVE: An Open-Source Environment Enabling Unconventional Vehicle Designs through Higher Fidelity SUAVE: An Open-Source Environment Enabling Unconventional Vehicle Designs through Higher Fidelity Timothy MacDonald, Emilio Botero, J. Michael Vegh, Anil Variyar, Juan J. Alonso Stanford University, Stanford,

More information

A Sequential, Multi-Complexity Topology Optimization Process for Aeroelastic Wing Structure Design

A Sequential, Multi-Complexity Topology Optimization Process for Aeroelastic Wing Structure Design A Sequential, Multi-Complexity Topology Optimization Process for Aeroelastic Wing Structure Design Bill Crossley, crossley@purdue.edu Significant content from graduate student Mark Guiles and input from

More information

Introduction to Aerodynamic Shape Optimization

Introduction to Aerodynamic Shape Optimization Introduction to Aerodynamic Shape Optimization 1. Aircraft Process 2. Aircraft Methods a. Inverse Surface Methods b. Inverse Field Methods c. Numerical Optimization Methods Aircraft Process Conceptual

More information

Geometry Parameterization for Shape Optimization. Arno Ronzheimer

Geometry Parameterization for Shape Optimization. Arno Ronzheimer Geometry Parameterization for Shape Optimization Arno Ronzheimer Dokumentname > 11.07.2006 23.11.2004 Overview Motivation for Geometry Parameterization Classification of Methods Criteria for Choosing a

More information

INVESTIGATION ON STRUCTURAL ASPECTS OF UNMANNED COMBAT AIR VEHICLE FOR AEROELASTIC ANALYSIS P N Vinay *, P V Srihari *, A Mahadesh Kumar

INVESTIGATION ON STRUCTURAL ASPECTS OF UNMANNED COMBAT AIR VEHICLE FOR AEROELASTIC ANALYSIS P N Vinay *, P V Srihari *, A Mahadesh Kumar Research Article INVESTIGATION ON STRUCTURAL ASPECTS OF UNMANNED COMBAT AIR VEHICLE FOR AEROELASTIC ANALYSIS P N Vinay *, P V Srihari *, A Mahadesh Kumar Address for Correspondence * Dept. of Mechanical

More information

Development of a computational method for the topology optimization of an aircraft wing

Development of a computational method for the topology optimization of an aircraft wing Development of a computational method for the topology optimization of an aircraft wing Fabio Crescenti Ph.D. student 21 st November 2017 www.cranfield.ac.uk 1 Overview Introduction and objectives Theoretical

More information

Vehicle Sketch Pad Applied To Propulsion-Airframe Integration

Vehicle Sketch Pad Applied To Propulsion-Airframe Integration Vehicle Sketch Pad Applied To Propulsion-Airframe Integration Presented by Steven H. Berguin stevenberguin@gatech.edu 1. Introduction 2. Modeling & Simulation 3. Example: Isolated Nacelle (Powered) 4.

More information

Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D.

Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D. Recent & Upcoming Features in STAR-CCM+ for Aerospace Applications Deryl Snyder, Ph.D. Outline Introduction Aerospace Applications Summary New Capabilities for Aerospace Continuity Convergence Accelerator

More information

MAE 323: Lab 7. Instructions. Pressure Vessel Alex Grishin MAE 323 Lab Instructions 1

MAE 323: Lab 7. Instructions. Pressure Vessel Alex Grishin MAE 323 Lab Instructions 1 Instructions MAE 323 Lab Instructions 1 Problem Definition Determine how different element types perform for modeling a cylindrical pressure vessel over a wide range of r/t ratios, and how the hoop stress

More information

Composites for JEC Conference. Zach Abraham ANSYS, Inc.

Composites for JEC Conference. Zach Abraham ANSYS, Inc. Composites for JEC Conference Zach Abraham ANSYS, Inc. 1 Our Strategy Simulation-Driven Product Development Fluid Dynamics Structural Mechanics Explicit Dynamics Low-Frequency Electromagnetics High-Frequency

More information

Shock Wave Reduction via Wing-Strut Geometry Design

Shock Wave Reduction via Wing-Strut Geometry Design Shock Wave Reduction via Wing-Strut Geometry Design Runze LI, Wei NIU, Haixin CHEN School of Aerospace Engineering Beijing 84, China PADRI, Barcelona (Spain) 27..29 SHORT VERSION Shock Wave Reduction via

More information

ANSYS Workbench Guide

ANSYS Workbench Guide ANSYS Workbench Guide Introduction This document serves as a step-by-step guide for conducting a Finite Element Analysis (FEA) using ANSYS Workbench. It will cover the use of the simulation package through

More information

Accurate and Efficient Turbomachinery Simulation. Chad Custer, PhD Turbomachinery Technical Specialist

Accurate and Efficient Turbomachinery Simulation. Chad Custer, PhD Turbomachinery Technical Specialist Accurate and Efficient Turbomachinery Simulation Chad Custer, PhD Turbomachinery Technical Specialist Outline Turbomachinery simulation advantages Axial fan optimization Description of design objectives

More information

Exploration of distributed propeller regional aircraft design

Exploration of distributed propeller regional aircraft design Exploration of distributed propeller regional aircraft design Baizura Bohari 1,2, Emmanuel Benard 1, Murat Bronz 2 1 University of Toulouse - ISAE Supaero, Dept. of Aeronautic and Space Vehicles Design

More information

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench

Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Finite Element Analysis using ANSYS Mechanical APDL & ANSYS Workbench Course Curriculum (Duration: 120 Hrs.) Section I: ANSYS Mechanical APDL Chapter 1: Before you start using ANSYS a. Introduction to

More information

Agenda. 9:00 Welcome. 1:00 - Computing Utilities. 9:15 - Mechanical Demonstration. 1:30 - CFD Update. 3:00 Break 3:15 ANSYS Customization Toolkit

Agenda. 9:00 Welcome. 1:00 - Computing Utilities. 9:15 - Mechanical Demonstration. 1:30 - CFD Update. 3:00 Break 3:15 ANSYS Customization Toolkit Agenda 9:00 Welcome 1:00 - Computing Utilities Introductions What is new at CAEA 9:15 - Mechanical Demonstration CAD connection utilities (within the CAD API) Mechanical setup Rigid Bodies, Joints, contact,

More information

ANSYS Fluid Structure Interaction for Thermal Management and Aeroelasticity

ANSYS Fluid Structure Interaction for Thermal Management and Aeroelasticity ANSYS Fluid Structure Interaction for Thermal Management and Aeroelasticity Phil Stopford Duxford Air Museum 11th May 2011 2011 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Fluid Structure

More information

On The Construction of Aircraft Conceptual Geometry for High-Fidelity Analysis and Design. Robert Haimes and Mark Drela

On The Construction of Aircraft Conceptual Geometry for High-Fidelity Analysis and Design. Robert Haimes and Mark Drela On The Construction of Aircraft Conceptual Geometry for High-Fidelity Analysis and Design Robert Haimes and Mark Drela Aerospace Computational Design Laboratory Massachusetts Institute of Technology, Cambridge,

More information

Self-Designing Parametric Geometries

Self-Designing Parametric Geometries AIAA SciTech 5-9 January 2015, Kissimmee, Florida 56th AIAA/ASCE/AHS/ASC Structures, Structural Dynamics, and Materials Conference AIAA 2015-0396 Self-Designing Parametric Geometries András Sóbester University

More information

The Use of Computational Fluid Dynamics In the Aerospace Industry Past Present - Future

The Use of Computational Fluid Dynamics In the Aerospace Industry Past Present - Future The Use of Computational Fluid Dynamics In the Aerospace Industry Past Present - Future Douglas N. Ball Aerospace Consultant 1 The Early Days Not much CFD in these old birds! Great airplanes none the less.

More information

COMPARISON OF SHOCK WAVE INTERACTION FOR THE THREE-DIMENSIONAL SUPERSONIC BIPLANE WITH DIFFERENT PLANAR SHAPES

COMPARISON OF SHOCK WAVE INTERACTION FOR THE THREE-DIMENSIONAL SUPERSONIC BIPLANE WITH DIFFERENT PLANAR SHAPES 26 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES COMPARISON OF SHOCK WAVE INTERACTION FOR THE THREE-DIMENSIONAL SUPERSONIC BIPLANE WITH DIFFERENT PLANAR SHAPES M. Yonezawa*, H. Yamashita* *Institute

More information

Development of a Physics-Based Design Framework for Aircraft Design using Parametric Modeling

Development of a Physics-Based Design Framework for Aircraft Design using Parametric Modeling Paper Int l J. of Aeronautical & Space Sci. 16(3), 370 379 (2015) DOI: http://dx.doi.org/10.5139/ijass.2015.16.3.370 Development of a Physics-Based Design Framework for Aircraft Design using Parametric

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

Aerodynamic Optimization of Integrated Wing-Engine Geometry Using an Unstructured Vorticity Solver. Logan King

Aerodynamic Optimization of Integrated Wing-Engine Geometry Using an Unstructured Vorticity Solver. Logan King Aerodynamic Optimization of Integrated Wing-Engine Geometry Using an Unstructured Vorticity Solver by Logan King A thesis submitted to the Graduate Faculty of Auburn University in partial fulfillment of

More information

Aircraft Stability and Performance 2nd Year, Aerospace Engineering. Dr. M. Turner

Aircraft Stability and Performance 2nd Year, Aerospace Engineering. Dr. M. Turner Aircraft Stability and Performance 2nd Year, Aerospace Engineering Dr. M. Turner Basic Info Timetable 15.00-16.00 Monday ENG LT1 16.00-17.00 Monday ENG LT1 Typical structure of lectures Part 1 Theory Part

More information

Nouveautés ANSYS pour le calcul structurel et l impression 3D. CADFEM 2017 ANSYS Additive Manufacturing

Nouveautés ANSYS pour le calcul structurel et l impression 3D. CADFEM 2017 ANSYS Additive Manufacturing Titelmasterformat Journée Technologique durch AddiPole Klicken bearbeiten Nouveautés ANSYS pour le calcul structurel et l impression 3D Titelmasterformat Structural design with durch ANSYS Klicken bearbeiten

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

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

Automated CFD blade design within a CAD system

Automated CFD blade design within a CAD system Automated CFD blade design within a CAD system Petter Andersson, Volvo Aero Corporation, Sweden Malin Ludvigson, Volvo Aero Corporation, Sweden Ola Isaksson, Volvo Aero Corporation, Sweden Summary: The

More information

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Abstract After completing this workshop, you will have a basic understanding of editing 3D models using Autodesk Fusion 360 TM to

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-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

Finite Element Analysis Using Creo Simulate 4.0

Finite Element Analysis Using Creo Simulate 4.0 Introduction to Finite Element Analysis Using Creo Simulate 4.0 Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit the following

More information

ANSYS Element. elearning. Peter Barrett October CAE Associates Inc. and ANSYS Inc. All rights reserved.

ANSYS Element. elearning. Peter Barrett October CAE Associates Inc. and ANSYS Inc. All rights reserved. ANSYS Element Selection elearning Peter Barrett October 2012 2012 CAE Associates Inc. and ANSYS Inc. All rights reserved. ANSYS Element Selection What is the best element type(s) for my analysis? Best

More information

Introduction to Solid Modeling

Introduction to Solid Modeling Introduction to Solid Modeling Parametric Modeling 1 Why draw 3D Models? 3D models are easier to interpret. 3D models can be used to perform engineering analysis, finite element analysis (stress, deflection,

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

Design optimization and design exploration using an open source framework on HPC facilities Presented by: Joel GUERRERO

Design optimization and design exploration using an open source framework on HPC facilities Presented by: Joel GUERRERO Workshop HPC Methods for Engineering CINECA (Milan, Italy). June 17th-19th, 2015. Design optimization and design exploration using an open source framework on HPC facilities Presented by: Joel GUERRERO

More information

Week 12 - Lecture Mechanical Event Simulation. ME Introduction to CAD/CAE Tools

Week 12 - Lecture Mechanical Event Simulation. ME Introduction to CAD/CAE Tools Week 12 - Lecture Mechanical Event Simulation Lecture Topics Mechanical Event Simulation Overview Additional Element Types Joint Component Description General Constraint Refresh Mesh Control Force Estimation

More information

Time and Location: T 6:30 PM to 9:20 PM SAL 127 (Section 1, 28758) Th 6:30 PM to 9:20 PM SAL 127 (Section 2, 28759)

Time and Location: T 6:30 PM to 9:20 PM SAL 127 (Section 1, 28758) Th 6:30 PM to 9:20 PM SAL 127 (Section 2, 28759) UNIVERSITY OF SOUTHERN CALIFORNIA AME 408, Computer-Aided Design of Mechanical Systems Fall 2017 Time and Location: T 6:30 PM to 9:20 PM SAL 127 (Section 1, 28758) Th 6:30 PM to 9:20 PM SAL 127 (Section

More information

COMPUTATIONAL tools have undoubtedly had a profound influence on the commercial aircraft design process,

COMPUTATIONAL tools have undoubtedly had a profound influence on the commercial aircraft design process, GeoMACH: Geometry-Centric MDAO of Aircraft Configurations with High Fidelity John T. Hwang and Joaquim R. R. A. Martins University of Michigan, Ann Arbor, Michigan, 48109, United States This paper presents

More information

AERODYNAMIC DESIGN OF THE STRAKE FOR THE ROCKET PLANE IN TAILLESS CONFIGURATION.

AERODYNAMIC DESIGN OF THE STRAKE FOR THE ROCKET PLANE IN TAILLESS CONFIGURATION. AERODYNAMIC DESIGN OF THE STRAKE FOR THE ROCKET PLANE IN TAILLESS CONFIGURATION. M. Figat, A. Kwiek, K. Seneńko Warsaw University of Technology Keywords: Optimization, gradient method, strake, CFD Abstract

More information

Advances in Pre-Processing

Advances in Pre-Processing Advances in Pre-Processing Laz Foley Confidence by Design Chicago June 14, 2012 1 Outline ANSYS DesignModeler Modeling Improvements ANSYS SpaceClaim Direct Modeler Workbench Integration and Model Preparation

More information

PARAMETRIC MODELING FOR MECHANICAL COMPONENTS 1

PARAMETRIC MODELING FOR MECHANICAL COMPONENTS 1 PARAMETRIC MODELING FOR MECHANICAL COMPONENTS 1 Wawre S.S. Abstract: parametric modeling is a technique to generalize specific solid model. This generalization of the solid model is used to automate modeling

More information

ME 435 Spring Project Design and Management II. Old Dominion University Department of Mechanical Engineering. Standard Dynamics Model

ME 435 Spring Project Design and Management II. Old Dominion University Department of Mechanical Engineering. Standard Dynamics Model ME 435 Spring 2011 Project Design and Management II Old Dominion University Department of Mechanical Engineering Standard Dynamics Model William Lawrence Andrew Snead TJ Wignall 15 March 2011 Abstract

More information

New Frontiers in CAE Interoperability. Andy Chinn ITI TranscenData

New Frontiers in CAE Interoperability. Andy Chinn ITI TranscenData New Frontiers in CAE Interoperability Andy Chinn ITI TranscenData arc@transcendata.com Introduction Data Exchange Integrity Issue of Meshability Geometry Reasoning Geometry Reasoning Applications Conclusions

More information

Integrated Aircraft Design

Integrated Aircraft Design 11th European Workshop on Aircraft Design Education, Linköping, 17.-19.09.201319.09.2013 Integrated Aircraft Design Network Raghu Chaitanya.M.V & Ingo Staack, Petter Krus Linköping University, Linköping,

More information

Aerodynamic Design of a Tailless Aeroplan J. Friedl

Aerodynamic Design of a Tailless Aeroplan J. Friedl Acta Polytechnica Vol. 4 No. 4 5/2 Aerodynamic Design of a Tailless Aeroplan J. Friedl The paper presents an aerodynamic analysis of a one-seat ultralight (UL) tailless aeroplane named L2k, with a very

More information

Autodesk Inventor 2018

Autodesk Inventor 2018 Parametric Modeling with Autodesk Inventor 2018 NEW Contains a new chapter on 3D printing Randy H. Shih SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org)

More information

1 General description

1 General description 1 General description OAD OAD was set up to develop and sell ADS, which stands for Aircraft Design Software. This software is dedicated to take you through nearly the entire aircraft design process for

More information

Topology Optimization for Designers

Topology Optimization for Designers TM Topology Optimization for Designers Siemens AG 2016 Realize innovation. Topology Optimization for Designers Product Features Uses a different approach than traditional Topology Optimization solutions.

More information

863. Development of a finite element model of the sailplane fuselage

863. Development of a finite element model of the sailplane fuselage 863. Development of a finite element model of the sailplane fuselage M. Andrikaitis 1, A. Fedaravičius 2 Kaunas University of Technology, Kęstučio 27, 44312 Kaunas, Lithuania E-mail: 1 marius.andrikaitis@gmail.com,

More information

CONCEPTUAL AIRCRAFT DESIGN ENVIRONMENT: CASE STUDY EVALUATION OF COMPUTING ARCHITECTURE TECHNOLOGIES Daniel Tejtel * Dimitri N.

CONCEPTUAL AIRCRAFT DESIGN ENVIRONMENT: CASE STUDY EVALUATION OF COMPUTING ARCHITECTURE TECHNOLOGIES Daniel Tejtel * Dimitri N. AIAA 98-4844 CONCEPTUAL AIRCRAFT DESIGN ENVIRONMENT: CASE STUDY EVALUATION OF COMPUTING ARCHITECTURE TECHNOLOGIES Daniel Tejtel * Dimitri N. Mavris Mark Hale School of Aerospace Engineering Georgia Institute

More information