ANSYS Workbench for Process Compression and Scalability. Jiaping Zhang, Technical Service Engineer, Ansys Inc. Houston Office

Size: px
Start display at page:

Download "ANSYS Workbench for Process Compression and Scalability. Jiaping Zhang, Technical Service Engineer, Ansys Inc. Houston Office"

Transcription

1 ANSYS Workbench for Process Compression and Scalability Jiaping Zhang, Technical Service Engineer, Ansys Inc. Houston Office 1

2 Agenda 1. Ansys Workbench & Mechanical: An Introduction 2. 6 Steps to a Successful FEA Simulation 3. Physics Coupling and External Data Import 4. ACT Preview: Customizing the User Interface 2

3 Agenda 1. Ansys Workbench & Mechanical: An Introduction 2. 6 Steps to a Successful FEA Simulation 3. Physics Coupling and External Data Import 4. ACT Preview: Customizing the User Interface 3

4 Productivity Challenge Shorten setup time for a single simulation Reduce solving time Simplify results analysis Increase simulations in fixed time Boost Productivity Setup Solving Results Variations HPC+GPU One simulation Setup Solving Results Variations N simulations 4

5 Workbench: Shorten Setup Time Multiphysics Workflow Automatic Contact 5 CAD& Parametric Automatic Meshing

6 Workbench: Reduce Solving Time Distributed ANSYS+GPU(Graphics Processing Unit) Acceleration Easy Turn On GPU Solder balls Solder Joint Creep Analysis - 4M DOF Mold PCB 6

7 Workbench: Simplify Postprocessing 7

8 Workbench: Allows Variations Single Parameter Response Surface 8 Goal Driven Optimization Sensitivity Study

9 Agenda 1. Ansys Workbench & Mechanical: An Introduction 2. 6 Steps to a Successful FEA Simulation 3. Physics Coupling and External Data Import 4. ACT Preview: Customizing the User Interface 9

10 Step 1: Define the Simulation Workflow 10

11 Step 2: Define Geometry and Materials I 11

12 Step 2: Define Geometry and Materials II Material Library Material Curve Fitting 12

13 Step 3: Define Connections between Bodies 13

14 Automatic Contacts Detection 409 Parts, 967 Contacts. 14

15 More Connections are Available Beam Spot Welds Joint Spring Mesh connection 15

16 Step 4: Mesh the Model 16

17 Global Mesh Control Curvature On Proximity On 17

18 More Local Controls are Available 18

19 Adaptive Mesh Refinement for Convergence 19

20 Step 5: Define Loads and Boundary Conditions 20

21 Loads and Boundary Condition Options 21

22 Applying Loads to Nodes Nodal orientation allows users to assign a coordinate system to node or nodal sets Direct FE loads and boundary conditions can be applied to selected nodes, whose direction is defined by Nodal orientation Nodes are oriented in cylindrical system for loads and boundary condition definitions 22

23 Step 6: Understanding and Verifying Results 23

24 Thoroughly Investigate Your Results 24

25 Check The Quality of Your Results Applied Load Reactive Force 25

26 Create a Project Report 26

27 Enhance Simulation Using Command Objects 27

28 Command Object Example: Contact Setting Frictional Surface Set shear stress limit 28

29 Command Object Example: Loading Apply Constraint and Loading on this surface Load step 2: Clamp top surface Load Step 3: Apply vertical loading to clamped surface 29

30 Command Object Example: PostProcessing 30

31 Agenda 1. Ansys Workbench & Mechanical: An Introduction 2. 6 Steps to a Successful FEA Simulation 3. Physics Coupling and External Data Import 4. ACT Preview: Customizing the User Interface 31

32 Coupling Physics Approach Reality 32

33 ANSYS Solution for Multiphysics Electromagnetic Simulation Mechanical Simulation Computational Fluid Dynamics (CFD) Low Frequency Maxwell Simplorer High Frequency HFSS SIwave Implicit ANSYS Mechanical Explicit ANSYS Explicit ANSYS AUTODYN ANSYS LS-DYNA Electronics cooling ANSYS Icepak General CFD ANSYS CFD Fluid Dynamics Structural Mechanics Electromagnetics 33

34 Fluid-Structure Coupling 34

35 Electromagnetic-Structure Coupling Magnetics forces will induce stresses(example: Motor) Resistive losses will cause thermal stress(example: Satellite Dish Antenna) 35

36 Electromagnetic-Fluid-Structure Coupling Maxwell+Fluent One-way and two-way β coupling Combine with 1-way FSI β 36

37 External Data Mapping: Motivation Exchange files are frequently encountered to transfer quantities from one simulation to another. Efficient mapping of point cloud data is required to account for misalignment, non matching units or scaling issues. 37

38 Supported Data Types 38

39 Importing Multiple Files Multiple files can be imported for transient analyses or to handle different data to be mapped on multiple bodies 39

40 Validating the Mapped Data Visual tools have been implemented to control how well the data has been mapped onto the target structure Both the size of the spheres and their color provide indication of the mapping quality 40

41 Agenda 1. Ansys Workbench & Mechanical: An Introduction 2. 6 Steps to a Successful FEA Simulation 3. Physics Coupling and External Data Import 4. ACT Preview: Customizing the User Interface 41

42 ACT Introduction Application Customization Toolkit (New in R14.0) Encapsulate APDL macros: Allows re-use of legacy APDL-scripts and encourages migration from MAPDL to Mechanical via encapsulated macros MAPDL exposure: Fills the gap between MAPDL solver capabilities and their exposure in ANSYS Mechanical New pre-processing features (custom loads and boundary conditions) New post-processing features (custom results) 3rd party/in-house solver integration (Mechanical GUI) 42

43 Simple ACT Example! APDL_script_for_convection.inp! Input parameters: esel,s,type,,10 cm,component,elem thickness = film_coefficient = 200. temperature = APDL ANSYS Mechanical 43! Treatment: /prep7 et,100,152 keyop,100,8,2. et,1001,131 keyo,1001,3,2 sectype,1001,shell secdata,thickness,10 secoff,mid cmsel,s,component emodif,all,type,1001 emodif,all,secnum,1001 type,100 esurf fini APDL alls /solu esel,s,type,,100 nsle sf,all,conv,film_coefficient,temperature alls Opportunity to migrate existing process automation from MAPDL to ANSYS Mechanical at low cost

44 ACT Structure 44

45 Customize Toolbar Using XML XML definition: <load internalname="convection on Blade" caption="convection on Blade" icon="convection" issupport="false" isload="true"> <version>1</version> <callbacks> <onsolve>convection_blade_computation</onsolve> </callbacks> <details> <property internalname="geometry" datatype="string" control="scoping"></property> <property internalname="thickness" caption="thickness" datatype="string" control="text"></property> <property internalname="film Coefficient" caption="film Coefficient" datatype="string" control="text"></property> <property internalname="ambient Temperature" caption="ambient Temperature" datatype="string" control="text"></property> </details> </load> 45

46 Define Internal Process Using Python Python script: # Get the scoped geometry: propgeo = result.getdpropertyfromname("geometry") refids = propgeo.value # Get the related mesh and create the component: for refid in refids: meshregion = mesh.meshregion(refid) elementids = meshregion.elements eid = aap.mesh.element[elementids[0]].id f.write("*get,ntyp,elem,"+eid.tostring()+",attr,type\n") f.write("esel,s,type,,ntyp \n cm,component,elem") # Get properties from the details view: propthick = load.getdpropertyfromname("thickness") thickness = propthick.value propcoef = load.getdpropertyfromname("film Coefficient") film_coefficient = propcoef.value proptemp = load.getdpropertyfromname("ambient Temperature") temperature = proptemp.value 46 # Insert the parameters for the APDL commands: f.write("thickness="+thickness.tostring()+"\n") f.write("film_coefficient="+film_coefficient.tostring()+"\n") f.write("temperature="+temperature.tostring()+"\n") # Reuse the legacy APDL macros: f.write("/input,apdl_script_for_convection.inp\n")

47 3 rd Party/In-house Solver Integration ACT allows partners/customers to seamlessly integrate into Mechanical Non parametric optimization solver (topological optimization) 47

48 Concluding Remarks Workbench compresses and scale your simulation via: Compress setup process Simplify physics coupling and data import Allows User Customization 48

49 Thank you! 49

Improving Your Structural Mechanics Simulations with Release 14.0

Improving Your Structural Mechanics Simulations with Release 14.0 Improving Your Structural Mechanics Simulations with Release 14.0 1 ANSYS Workbench Platform The most comprehensive platform for Multiphysics Simulations ANSYS Workbench Framework ANSYS DesignXplorer ANSYS

More information

Improving Your Structural Mechanics Simulations with Release 14.0

Improving Your Structural Mechanics Simulations with Release 14.0 Improving Your Structural Mechanics Simulations with Release 14.0 Todd McDevitt, PhD PE Product Strategy & Planning ANSYS, Inc 1 Structural Mechanics Themes MAPDL/WB Integration Physics coupling Rotating

More information

Improving Your Structural Mechanics Simulations with Release 14.0

Improving Your Structural Mechanics Simulations with Release 14.0 Improving Your Structural Mechanics Simulations with Release 14.0 1 Structural Mechanics Themes MAPDL/WB Integration Physics coupling Rotating machines Composites & Fracture Mechanics Application Customization

More information

Improving Your Structural Mechanics Simulations with Release 14.0

Improving Your Structural Mechanics Simulations with Release 14.0 Improving Your Structural Mechanics Simulations with Release 14.0 Mai Doan Sreekanth Akarapu Mai.Doan@ansys.com Sreekanth.Akarapu@ansys.com 1 Structural Mechanics Themes MAPDL/WB Integration Physics coupling

More information

ANSYS Customization Toolkit: an ACT demo for MAPDL users

ANSYS Customization Toolkit: an ACT demo for MAPDL users ANSYS Customization Toolkit: an ACT demo for MAPDL users Giovanni Federico Ansys UK ltd 1 2015 ANSYS, Inc. May 9, 2016 Agenda What is ACT? ACT demo for APDL users; 2 2015 ANSYS, Inc. May 9, 2016 What is

More information

ANSYS/LS-Dyna. Workbench Using. Steven Hale Senior Engineering Manager CAE Associates, Inc. June 13, CAE Associates

ANSYS/LS-Dyna. Workbench Using. Steven Hale Senior Engineering Manager CAE Associates, Inc. June 13, CAE Associates ANSYS/LS-Dyna Customization in Workbench Using ACT Steven Hale Senior Engineering Manager CAE Associates, Inc. June 13, 2013 2013 CAE Associates CAE Associates CAE Associates is an engineering services

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 HPC What is new at CAEA GPU 9:15 - Mechanical Demonstration CAD connection utilities (within the CAD API) Mechanical setup Rigid Bodies, Joints,

More information

Application. Toolkit. Eric Stamper. CAE Associates Inc. and ANSYS Inc. Proprietary

Application. Toolkit. Eric Stamper. CAE Associates Inc. and ANSYS Inc. Proprietary Application Customization ti Toolkit Eric Stamper March 2013 CAE Associates Inc. and ANSYS Inc. Proprietary 2013 2008 CAE Associates CAE Associates Inc. and ANSYS Inc. All rights reserved. e-learning Webinar

More information

ANSYS - Workbench Overview. From zero to results. AGH 2014 April, 2014 W0-1

ANSYS - Workbench Overview. From zero to results. AGH 2014 April, 2014 W0-1 ANSYS - Workbench Overview From zero to results 2014 W0-1 Runing ANSYS WEiP ANSYS We are going to work in most advanced ANSYS Workbench W0-2 ANSYS Workbench WEiP What is Workbench? Platform for integration

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

2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary

2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Bi-directional Automatic Electromagnetic-Thermal Coupling for HEV/EV Traction Motor Design Using Maxwell and ANSYS Mechanical Peng Yuan Eric Lin Zed (Zhangjun) Tang ANSYS, Inc. 2010 ANSYS, Inc. All rights

More information

Introduction to Workbench Scripting & Customization ANSYS, Inc. November 29, 2012

Introduction to Workbench Scripting & Customization ANSYS, Inc. November 29, 2012 Introduction to Workbench Scripting & Customization 1 Outline Understanding the Workbench framework WB Journaling and Scripting Different Customization Methods Conclusion 2 Workbench Framework Application

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

Lecture 6 Static Data Transfers. Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent Release. Release 14.5

Lecture 6 Static Data Transfers. Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent Release. Release 14.5 Lecture 6 Static Data Transfers 14. 5 Release Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent 1 2011 ANSYS, Inc. January 4, 2013 Outline Direct Project Schematic Connections Details on

More information

ACP (ANSYS Composite Prep/Post) Jim Kosloski

ACP (ANSYS Composite Prep/Post) Jim Kosloski ACP (ANSYS Composite Prep/Post) Jim Kosloski ACP Background ANSYS Composite PrepPost is an add-on module dedicated to the modeling of layered composite structures. ACP is now included with the Mechanical

More information

Improving Your Structural Mechanics Simulations with Release 14.0

Improving Your Structural Mechanics Simulations with Release 14.0 Improving Your Structural Mechanics Simulations with Release 14.0 1 What will Release 14.0 bring you? 2 Let s now take a closer look at some topics 3 MAPDL/WB Integration Finite Element Information Access

More information

Appendix P. Multi-Physics Simulation Technology in NX. Christian Ruel (Maya Htt, Canada)

Appendix P. Multi-Physics Simulation Technology in NX. Christian Ruel (Maya Htt, Canada) 251 Appendix P Multi-Physics Simulation Technology in NX Christian Ruel (Maya Htt, Canada) 252 Multi-Physics Simulation Technology in NX Abstract As engineers increasingly rely on simulation models within

More information

Speed and Accuracy of CFD: Achieving Both Successfully ANSYS UK S.A.Silvester

Speed and Accuracy of CFD: Achieving Both Successfully ANSYS UK S.A.Silvester Speed and Accuracy of CFD: Achieving Both Successfully ANSYS UK S.A.Silvester 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Content ANSYS CFD Introduction ANSYS, the company Simulation

More information

R15.0 Structural Update

R15.0 Structural Update R15.0 Structural Update 1 Tim Pawlak R&D Fellow ANSYS Structural Update Topics Geometry and Mesh Material Behavior Numerical Methods Composites Dynamics Submodeling Multiphysics Solvers User Interface

More information

ANSYS AIM 16.0 Overview. AIM Program Management

ANSYS AIM 16.0 Overview. AIM Program Management 1 2015 ANSYS, Inc. September 27, 2015 ANSYS AIM 16.0 Overview AIM Program Management 2 2015 ANSYS, Inc. September 27, 2015 Today s Simulation Challenges Leveraging simulation across engineering organizations

More information

Realize Your Product Promise. Icepak

Realize Your Product Promise. Icepak Realize Your Product Promise Icepak ANSYS Icepak delivers powerful technology for electronics thermal management. Simulating high-performance electronics cooling readily solves challenges in this rapidly

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

Advanced SI Analysis Layout Driven Assembly. Tom MacDonald RF/SI Applications Engineer II

Advanced SI Analysis Layout Driven Assembly. Tom MacDonald RF/SI Applications Engineer II Advanced SI Analysis Layout Driven Assembly 1 Tom MacDonald RF/SI Applications Engineer II Abstract As the voracious appetite for technology continually grows, so too does the need for fast turn around

More information

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

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

More information

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS

CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 54 CHAPTER 4 CFD AND FEA ANALYSIS OF DEEP DRAWING PROCESS 4.1 INTRODUCTION In Fluid assisted deep drawing process the punch moves in the fluid chamber, the pressure is generated in the fluid. This fluid

More information

CAE SIMULATION LUIZ GUSTAVO FRANCO AMARAL

CAE SIMULATION LUIZ GUSTAVO FRANCO AMARAL CAE SIMULATION LUIZ GUSTAVO FRANCO AMARAL INTRODUCTION Luiz Gustavo Franco Amaral Engineer graduated at FEI (Faculdade de Engenharia Industrial / Industrial Engineering College), in São Bernardo do Campo

More information

Automotive Fluid-Structure Interaction (FSI) Concepts, Solutions and Applications. Laz Foley, ANSYS Inc.

Automotive Fluid-Structure Interaction (FSI) Concepts, Solutions and Applications. Laz Foley, ANSYS Inc. Automotive Fluid-Structure Interaction (FSI) Concepts, Solutions and Applications Laz Foley, ANSYS Inc. Outline FSI Classifications FSI Solutions FSI Modeling Approaches ANSYS Workbench for FSI System

More information

Simulation and Optimization in the wind energy industry

Simulation and Optimization in the wind energy industry Simulation and Optimization in the wind energy industry Numerical Simulation & Optimization www.ozeninc.com/optimization optimization@ozeninc.com Summary Why to use numerical simulations and optimization?

More information

ANSYS, Inc. March 3, 2016 PCB 板极电热耦合分析及对电子设备热设计的影响

ANSYS, Inc. March 3, 2016 PCB 板极电热耦合分析及对电子设备热设计的影响 1 2015 ANSYS, Inc. March 3, 2016 PCB 板极电热耦合分析及对电子设备热设计的影响 Printed Circuit Board Reliability Real world operating conditions = Multiphysics environment Electrical Reliability Power and Signal Integrity

More information

Engineering Simulation Software for the Offshore, Marine and Wave/Tidal Renewable Energy Industries. Introduction. Nigel Atkinson ANSYS UK Ltd

Engineering Simulation Software for the Offshore, Marine and Wave/Tidal Renewable Energy Industries. Introduction. Nigel Atkinson ANSYS UK Ltd Engineering Simulation Software for the Offshore, Marine and Wave/Tidal Renewable Energy Industries Introduction Nigel Atkinson ANSYS UK Ltd 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary

More information

TENDER FOR PURCHASE OF LICENSES OF FINITE ELEMENT ANALYSIS PROGRAM SPECIFICATIONS

TENDER FOR PURCHASE OF LICENSES OF FINITE ELEMENT ANALYSIS PROGRAM SPECIFICATIONS TENDER FOR PURCHASE OF LICENSES OF FINITE ELEMENT ANALYSIS PROGRAM SPECIFICATIONS 1. OVERVIEW 1.1. These specifications identify the minimum requirements for the Licenses of two Finite Element Analysis

More information

Create coupled designs between Maxwell and ephysics

Create coupled designs between Maxwell and ephysics Create coupled designs between Maxwell and ephysics Creating datalink coupling with Maxwell is easy. In general this is a two step process when the link involves one Maxwell solver and one ephysics solver.

More information

May 11, ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary Inventory #

May 11, ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary Inventory # Chapter 1 ANSYS DesignModeler Introduction to Workbench 1-1 ANSYS Workbench Overview ANSYS Workbench comprises the following modules: Simulation for performing structural and thermal analyses using the

More information

Global to Local Model Interface for Deepwater Top Tension Risers

Global to Local Model Interface for Deepwater Top Tension Risers Global to Local Model Interface for Deepwater Top Tension Risers Mateusz Podskarbi Karan Kakar 2H Offshore Inc, Houston, TX Abstract The water depths from which oil and gas are being produced are reaching

More information

Application Customization Toolkit. Jim Kosloski

Application Customization Toolkit. Jim Kosloski Application Customization Toolkit Jim Kosloski What is ACT? ANSYS ACT is the unified and consistent tool for the customization and expansion of ANSYS products. Using ACT, you can create vertical apps or

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

2008 International ANSYS Conference Strongly Coupled FSI Simulation Moving Compressible Pressure Pulse through a Tube

2008 International ANSYS Conference Strongly Coupled FSI Simulation Moving Compressible Pressure Pulse through a Tube 2008 International ANSYS Conference Strongly Coupled FSI Simulation Moving Compressible Pressure Pulse through a Tube Daniel L. Cler, US Army RDECOM/ ARDEC/ WSEC/ Benet Labs 1 Overview Background Problem

More information

Chapter 5 Modeling and Simulation of Mechanism

Chapter 5 Modeling and Simulation of Mechanism Chapter 5 Modeling and Simulation of Mechanism In the present study, KED analysis of four bar planar mechanism using MATLAB program and ANSYS software has been carried out. The analysis has also been carried

More information

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial

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

More information

ANSYS Workbench as an Integration Platform for CAE Simulation

ANSYS Workbench as an Integration Platform for CAE Simulation ANSYS Workbench as an Integration Platform for CAE Simulation Judd Kaiser Workbench Framework Product Manager 2010 ANSYS South American Conference October 20, 2010 2010 ANSYS, Inc. All rights reserved.

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

Femap Thermal & Flow V11

Femap Thermal & Flow V11 Femap Thermal & Flow V11 by Carl J. Poplawsky presented to Femap Symposium Ann Arbor, MI. date June 4th, 2015 MAYA Company Overview OEM Foundation Siemens PLM Partner 30+ years Software Developer Femap

More information

CREO SIMULATE ROADMAP. Jose Coronado Product Manager. SAXSIM 2017 Chemnitz, Germany. February 2017

CREO SIMULATE ROADMAP. Jose Coronado Product Manager. SAXSIM 2017 Chemnitz, Germany. February 2017 CREO SIMULATE ROADMAP Jose Coronado Product Manager February 2017 SAXSIM 2017 Chemnitz, Germany AGENDA 1. Creo 5 Release 2. Pre-Processor 3. Engine 4. Post-Processor 5. Key proposed new extensions 6. Conclusions

More information

Using the Workbench LS-DYNA Extension

Using the Workbench LS-DYNA Extension Using the Workbench LS-DYNA Extension ANSYS, Inc. Southpointe 2600 ANSYS Drive Canonsburg, PA 15317 ansysinfo@ansys.com http://www.ansys.com (T) 724-746-3304 (F) 724-514-9494 Release 18.1 April 2017 ANSYS,

More information

New Technologies in CST STUDIO SUITE CST COMPUTER SIMULATION TECHNOLOGY

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

More information

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester Author: Dr. Daniel Koester Date: September 4, 2014 Workflow for Underhood Simulations ANSA or other CAD/meshing software CAD cleanup and meshing: either CAD geometry description or NASTRAN-style FE meshes

More information

New developments in Statistics on Structures. Sebastian Wolff

New developments in Statistics on Structures. Sebastian Wolff New developments in Statistics on Structures Sebastian Wolff New developments in SoS Overview Releases since WOST 2016 SoS 3.3.0 March 2017 for optislang 6.0 SoS 3.3.1 May 2017 for optislang 6.1 Major

More information

HPC and IT Issues Session Agenda. Deployment of Simulation (Trends and Issues Impacting IT) Mapping HPC to Performance (Scaling, Technology Advances)

HPC and IT Issues Session Agenda. Deployment of Simulation (Trends and Issues Impacting IT) Mapping HPC to Performance (Scaling, Technology Advances) HPC and IT Issues Session Agenda Deployment of Simulation (Trends and Issues Impacting IT) Discussion Mapping HPC to Performance (Scaling, Technology Advances) Discussion Optimizing IT for Remote Access

More information

Ansys Mechanical APDL

Ansys Mechanical APDL Ansys Mechanical APDL Day 1: FEA and ANSYS 9.00 12.00 About ANSYS, What is FEA?, Instructor Example Getting Started 12.00 1.00 Interactive Vs. Batch Mode, Starting ANSYS, Product Launcher, ANSYS Workbench,

More information

Solving Large Complex Problems. Efficient and Smart Solutions for Large Models

Solving Large Complex Problems. Efficient and Smart Solutions for Large Models Solving Large Complex Problems Efficient and Smart Solutions for Large Models 1 ANSYS Structural Mechanics Solutions offers several techniques 2 Current trends in simulation show an increased need for

More information

NX Advanced Simulation: FE modeling and simulation

NX Advanced Simulation: FE modeling and simulation Advanced Simulation: FE modeling and simulation NX CAE Benefits Speed simulation processes by up to 70 percent Increase product quality by rapidly simulating design trade-off studies Lower overall product

More information

Automated Transient Thermal Analysis

Automated Transient Thermal Analysis Automated Transient Thermal Analysis with ANSYS Icepak and Simplorer Using EKM Eric Lin Lalit Chaudhari Shantanu Bhide Vamsi Krishna Yaddanapudi 1 Overview Power Map Introduction Need for Chip-co Design

More information

Simcenter 3D Engineering Desktop

Simcenter 3D Engineering Desktop Simcenter 3D Engineering Desktop Integrating geometry and FE modeling to streamline the product development process Benefits Speed simulation processes by up to 70 percent Increase product quality by rapidly

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

PTC Creo Simulate. Features and Specifications. Data Sheet

PTC Creo Simulate. Features and Specifications. Data Sheet PTC Creo Simulate PTC Creo Simulate gives designers and engineers the power to evaluate structural and thermal product performance on your digital model before resorting to costly, time-consuming physical

More information

Using MSC.Nastran for Explicit FEM Simulations

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

More information

HFSS 3D Components. Steve Rousselle, ANSYS. Build, Share, Conquer Release. Release ANSYS, Inc.

HFSS 3D Components. Steve Rousselle, ANSYS. Build, Share, Conquer Release. Release ANSYS, Inc. HFSS 3D Components Build, Share, Conquer 2015.0 Release Steve Rousselle, ANSYS 1 2015 ANSYS, Inc. What is a 3D Component? Exploded View Assembly of 3D Components Device 2 2015 ANSYS, Inc. Introduction

More information

Super Elastic Alloy Eyeglass Frame Design Using the ANSYS Workbench Environment

Super Elastic Alloy Eyeglass Frame Design Using the ANSYS Workbench Environment Super Elastic Alloy Eyeglass Frame Design Using the ANSYS Workbench Environment Peter R. Barrett, P.E. Computer Aided Engineering Associates Inc. Patrick Cunningham Computer Aided Engineering Associates

More information

Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent

Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent Workshop Transient 1-way FSI Load Mapping using ACT Extension 15. 0 Release Solving FSI Applications Using ANSYS Mechanical and ANSYS Fluent 1 2014 ANSYS, Inc. Workshop Description: This example considers

More information

Analysis of low cycle fatigue considering geometric manufacturing tolerances

Analysis of low cycle fatigue considering geometric manufacturing tolerances presented at the 14th Weimar Optimization and Stochastic Days 2017 Source: www.dynardo.de/en/library Analysis of low cycle fatigue considering geometric manufacturing tolerances SIEMENS AG applies ANSYS,

More information

Contents. 1 CoreTech System Co., Ltd.

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

More information

PTC Newsletter January 14th, 2002

PTC  Newsletter January 14th, 2002 PTC Email Newsletter January 14th, 2002 PTC Product Focus: Pro/MECHANICA (Structure) Tip of the Week: Creating and using Rigid Connections Upcoming Events and Training Class Schedules PTC Product Focus:

More information

World-class finite element analysis (FEA) solution for the Windows desktop

World-class finite element analysis (FEA) solution for the Windows desktop World-class finite element analysis (FEA) solution for the Windows desktop fact sheet Siemens PLM Software www.siemens.com/plm/femap Summary Femap software is an advanced engineering analysis environment

More information

Webinar optislang & ANSYS Workbench. Dynardo GmbH

Webinar optislang & ANSYS Workbench. Dynardo GmbH Webinar optislang & ANSYS Workbench Dynardo GmbH 1 1. Introduction 2. Process Integration and variation studies 6. Signal Processing 5. ANSYS Mechanical APDL in optislang 3. optislang inside ANSYS 4. ANSYS

More information

Fluid-Structure Interaction in STAR-CCM+ Alan Mueller CD-adapco

Fluid-Structure Interaction in STAR-CCM+ Alan Mueller CD-adapco Fluid-Structure Interaction in STAR-CCM+ Alan Mueller CD-adapco What is FSI? Air Interaction with a Flexible Structure What is FSI? Water/Air Interaction with a Structure Courtesy CFD Marine Courtesy Germanischer

More information

Axial Channel Water Jacket Cooling

Axial Channel Water Jacket Cooling 28 November 2017 Motor-CAD Software Tutorial: Axial Channel Water Jacket Cooling Contents 1. Description... 1 2. Setting up the housing and axial channels... 2 3. Setting the water jacket fluid and flow

More information

Abaqus Technology Brief. Two-Pass Rolling Simulation

Abaqus Technology Brief. Two-Pass Rolling Simulation Abaqus Technology Brief Two-Pass Rolling Simulation TB-03-TPRS-1 Revised: April 2007. Summary Hot rolling is a basic metal forming technique that is used to transform preformed shapes into final products

More information

Introduction to ANSYS Mechanical

Introduction to ANSYS Mechanical Lecture 6 Modeling Connections 15.0 Release Introduction to ANSYS Mechanical 1 2012 ANSYS, Inc. February 12, 2014 Chapter Overview In this chapter, we will extend the discussion of contact control begun

More information

ASME Fatigue DOCUMENTATION. ANSYS Mechanical Application. Extension version Compatible ANSYS version

ASME Fatigue DOCUMENTATION. ANSYS Mechanical Application. Extension version Compatible ANSYS version ASME Fatigue ANSYS Mechanical Application DOCUMENTATION Extension version 180.1 Release date 06-Apr-17 Compatible ANSYS version 18.0 www.edrmedeso.com Table of Contents 1 INTRODUCTION... 3 2 PRODUCT RESTRICTIONS...

More information

ECE421: Electronics for Instrumentation

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

More information

USING ANSA FOR AUTOMATED FE-MODELING OF TURBOCHARGER HOUSINGS

USING ANSA FOR AUTOMATED FE-MODELING OF TURBOCHARGER HOUSINGS USING ANSA FOR AUTOMATED FE-MODELING OF TURBOCHARGER HOUSINGS 1 Dirk Dreissig *, 2 Dr. Frank Kruse 1 LASSO Ingenieurgesellschaft mbh, Germany, 2 BorgWarner Turbo Systems Engineering GmbH, Germany KEYWORDS

More information

Lecture 5 Modeling Connections

Lecture 5 Modeling Connections Lecture 5 Modeling Connections 16.0 Release Introduction to ANSYS Mechanical 1 2015 ANSYS, Inc. February 27, 2015 Chapter Overview In this chapter, we will extend the discussion of contact control begun

More information

Structural Mechanics. ANSYS 14.5 Release Highlights. Complex 3-D Composites Shapes

Structural Mechanics. ANSYS 14.5 Release Highlights. Complex 3-D Composites Shapes ANSYS 14.5 provides a great number of new and advanced features that bolster product performance and integrity through deeper design insight. The many new features in ANSYS 14.5, combined with ANSYS Workbench,

More information

NX Advanced FEM. Benefits

NX Advanced FEM. Benefits Advanced FEM fact sheet Siemens PLM Software www.siemens.com/plm Summary Advanced FEM software is a comprehensive multi-cad finite element modeling and results visualization product that is designed to

More information

SimLab 14.2 Release Notes

SimLab 14.2 Release Notes SimLab 14.2 Release Notes Highlights SimLab 14.2 comes with various changes that improve performance and graphics rendering. In addition to java scripting, python scripting is introduced. The enhancements,

More information

Best Practices for Contact Modeling using ANSYS

Best Practices for Contact Modeling using ANSYS Best Practices for Contact Modeling using ANSYS 朱永谊 / R&D Fellow ANSYS 1 2016 ANSYS, Inc. August 12, 2016 ANSYS UGM 2016 Why are these best practices important? Contact is the most common source of nonlinearity

More information

Introduction to ANSYS

Introduction to ANSYS Lecture 1 Introduction to ANSYS ICEM CFD 14. 0 Release Introduction to ANSYS ICEM CFD 1 2011 ANSYS, Inc. March 22, 2015 Purpose/Goals Ansys ICEM CFD is a general purpose grid generating program Grids for

More information

Isight - parametric optimization and automation. Marko Vrh SIMULIA seminar

Isight - parametric optimization and automation. Marko Vrh SIMULIA seminar Isight - parametric optimization and automation Marko Vrh SIMULIA seminar Ljubljana, 12.4.2016 Agenda What is Isight Licesing What can Isight do for (or instead) of you? How to work with Isight Design

More information

ANSYS HPC. Technology Leadership. Barbara Hutchings ANSYS, Inc. September 20, 2011

ANSYS HPC. Technology Leadership. Barbara Hutchings ANSYS, Inc. September 20, 2011 ANSYS HPC Technology Leadership Barbara Hutchings barbara.hutchings@ansys.com 1 ANSYS, Inc. September 20, Why ANSYS Users Need HPC Insight you can t get any other way HPC enables high-fidelity Include

More information

Introduction to ANSYS ICEM CFD

Introduction to ANSYS ICEM CFD Lecture 1 Introduction to ANSYS ICEM CFD 14.5 Release Introduction to ANSYS ICEM CFD 2012 ANSYS, Inc. April 1, 2013 1 Release 14.5 Purpose/Goals Ansys ICEM CFD is a general purpose grid generating program

More information

Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering.

Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering. Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering. Author: Dr.-Ing. Peter Binde Abstract: In this paper, the latest approaches in the field of CAD-CAE product

More information

ANSYS HPC Technology Leadership

ANSYS HPC Technology Leadership ANSYS HPC Technology Leadership 1 ANSYS, Inc. November 14, Why ANSYS Users Need HPC Insight you can t get any other way It s all about getting better insight into product behavior quicker! HPC enables

More information

LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA.

LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA. 12 th International LS-DYNA Users Conference FSI/ALE(1) LS-DYNA 980 : Recent Developments, Application Areas and Validation Process of the Incompressible fluid solver (ICFD) in LS-DYNA Part 1 Facundo Del

More information

Simulation of Overhead Crane Wire Ropes Utilizing LS-DYNA

Simulation of Overhead Crane Wire Ropes Utilizing LS-DYNA Simulation of Overhead Crane Wire Ropes Utilizing LS-DYNA Andrew Smyth, P.E. LPI, Inc., New York, NY, USA Abstract Overhead crane wire ropes utilized within manufacturing plants are subject to extensive

More information

NX Advanced FEM. fact sheet

NX Advanced FEM. fact sheet Advanced FEM fact sheet www.ugs.com Summary Advanced FEM is a comprehensive multi-cad finite element modeling and results visualization product that is designed to meet the needs of experienced CAE analysts.

More information

Introduction to ANSYS LS-DYNA

Introduction to ANSYS LS-DYNA Lecture 12 Introduction to ANSYS LS-DYNA Extension 14.5 Release Introduction to ANSYS LS-DYNA 2012 ANSYS, Inc. November 8, 2012 1 Release 14.5 What is ANSYS LS-DYNA Extension ANSYS LS-DYNA in Workbench

More information

Parametric. Practices. Patrick Cunningham. CAE Associates Inc. and ANSYS Inc. Proprietary 2012 CAE Associates Inc. and ANSYS Inc. All rights reserved.

Parametric. Practices. Patrick Cunningham. CAE Associates Inc. and ANSYS Inc. Proprietary 2012 CAE Associates Inc. and ANSYS Inc. All rights reserved. Parametric Modeling Best Practices Patrick Cunningham July, 2012 CAE Associates Inc. and ANSYS Inc. Proprietary 2012 CAE Associates Inc. and ANSYS Inc. All rights reserved. E-Learning Webinar Series This

More information

Sequential Multiphysics Coupling: Data transfer and interpolation methods François Chapuis Sadek Cherhabili ANSYS FRANCE

Sequential Multiphysics Coupling: Data transfer and interpolation methods François Chapuis Sadek Cherhabili ANSYS FRANCE Sequential Multiphysics Coupling: Data transfer and interpolation methods François Chapuis Sadek Cherhabili ANSYS FRANCE 1 Agenda General context Comprehensive Multiphysics Method of coupling physics Mapping

More information

Fatigue of Welds in fe-safe. fe-safe 2017

Fatigue of Welds in fe-safe. fe-safe 2017 Fatigue of Welds in fe-safe fe-safe 2017 About this Course Course objectives Upon completion of this course you will be able to: Set up and run various weld fatigue analyses using fe-safe including Understand

More information

A Graphical User Interface for Simulating Resin-Transfer-Molding Combining LS-DYNA and OpenFOAM

A Graphical User Interface for Simulating Resin-Transfer-Molding Combining LS-DYNA and OpenFOAM A Graphical User Interface for Simulating Resin-Transfer-Molding Combining LS-DYNA and OpenFOAM M. Martins-Wagner 1, M. Wagner 1, A, Haufe 2, C. Liebold 2 1 Ostbayerische Technische Hochschule Regensburg

More information

2008 International ANSYS Conference

2008 International ANSYS Conference 2008 International ANSYS Conference FEM AND FSI SIMULATIONS OF IMPACT LOADS ON GRP SUBSEA COMPOSITE COVERS Kjetil Rognlien, MSc Technical Consultant EDR AS, Norway 2008 ANSYS, Inc. All rights reserved.

More information

Training Course Content

Training Course Content Pioneering engineering software systems, support & services. Training Course Content 29800 Middlebelt Road Suite 100 Farmington Hills, MI 48334 United States of America Tel: +1 248 737 9760 Fax: +1 248

More information

Femap Version

Femap Version Femap Version 11.3 Benefits Easier model viewing and handling Faster connection definition and setup Faster and easier mesh refinement process More accurate meshes with minimal triangle element creation

More information

30 th Anniversary Event. New features in Opera By: Kevin Ward. OPTIMIZER Automatically selects and manages multiple goalseeking

30 th Anniversary Event. New features in Opera By: Kevin Ward. OPTIMIZER Automatically selects and manages multiple goalseeking FEA ANALYSIS General-purpose multiphysics design and analysis software for a wide range of applications OPTIMIZER Automatically selects and manages multiple goalseeking algorithms INTEROPERABILITY Built-in

More information

Stan Posey, CAE Industry Development NVIDIA, Santa Clara, CA, USA

Stan Posey, CAE Industry Development NVIDIA, Santa Clara, CA, USA Stan Posey, CAE Industry Development NVIDIA, Santa Clara, CA, USA NVIDIA and HPC Evolution of GPUs Public, based in Santa Clara, CA ~$4B revenue ~5,500 employees Founded in 1999 with primary business in

More information

NX Advanced Simulation

NX Advanced Simulation Siemens PLM Software Integrating FE modeling and simulation streamlines product development process Benefits Speed simulation processes by up to 70 percent Perform accurate, reliable structural analysis

More information

Become a Black Belt in ANSYS Workbench, Volume 3. We dedicate this book to God s Ecstatic Beauty and Beatific Love: Tripura Sundari

Become a Black Belt in ANSYS Workbench, Volume 3. We dedicate this book to God s Ecstatic Beauty and Beatific Love: Tripura Sundari 2 We dedicate this book to God s Ecstatic Beauty and Beatific Love: Tripura Sundari 3 Foreword Hi all! I held your hand in the first 2 volumes, now it s not the case anymore; this means that you need to

More information

3-D Design Flow Automation for HFSS. Jim DeLap Technical Manager

3-D Design Flow Automation for HFSS. Jim DeLap Technical Manager 3-D Design Flow Automation for HFSS Jim DeLap Technical Manager jim.delap@ansys.com 1 Motivation Existing methods of defining 3D models within HFSS have been sufficient since the introduction of the product

More information

Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering.

Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering. Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering. 19 0 Seminario International de Alta Tecnologia 09 OUT 2014 TEATRO UNIMEP Campus Taquaral Piracicaba SP

More information

Simcenter 3D Structures

Simcenter 3D Structures Simcenter 3D Structures Integrating FE modeling and simulation streamlines product development Benefits Speed simulation processes by up to 70 percent Perform accurate, reliable structural analysis with

More information