OMD 2 platform dedicated to HPC Optimisation

Size: px
Start display at page:

Download "OMD 2 platform dedicated to HPC Optimisation"

Transcription

1 OMD 2 platform dedicated to HPC Optimisation ScilabTEC 2011 École Polytechnique ACKNOWLEDGMENT: This work has been supported by French National Research Agency (ANR) through COSINUS program (project OMD 2 n ANR-08- COSI-007) Guillaume Jacquenot, SIREHNA Contributors : Luc Bordier, SIREHNA Vincent Couvert, DIGITEO SCILAB Maryan Sidorkiewicz, RENAULT (coordinator)

2 INTRODUCTION Top 500 Ranking of the 500 top supercomputers in the world Deliver trends in high-performance computing 1/29 => Increase of power computation allows to consider new simulation possibilities Source : Classical CPU : 5GFlop/s

3 SUMMARY OMD2 PROJECT : HPC & CFD OPTIMISATION INDUSTRIAL CONTEXT, OBJECTIVES FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW 04 OUTLOOK DELIVERABLES, WORK IN PROGRESS, DISSEMINATION 2/29

4 OMD2 PROJECT : HPC & CFD OPTIMISATION 01 CONTEXT Economical and environmental issues Product development processes are regularly shortened Car manufacturing specific problems: Reduce pollutant emissions and fuel consumption CO2 and EURO VI regulation Numerical optimization issues Computation time Decision making tool Multidisciplinarity 3/29

5 OMD2 PROJECT : HPC & CFD OPTIMISATION 01 HPC ACTIVITY Main objectives : Reduce mock-up process and improve size and precision of modelling Innovate and improve customer requirements Reduce simulation time Field of applications: Crash, powertrain, CFD : External aerodynamic, Exhaust line, HVAC Source : Renault & Sirehna 4/29

6 01 OMD2 PROJECT : HPC & CFD OPTIMISATION FOCUS ON CFD APPLICATIONS & OBJECTIVES Some figures Ship engineering : Small variations on a ship hull can increase wave resistance of several percents Car engineering : +/- 1mm of manufacturing dispersion on the cylinderhead => - 20% of performance (worst case) Main difficulties Lack of automation of the numerical process Expensive cost of HPC licenses Mainly local optimization Work in progress Large scale optimization techniques Topological optimization Software benchmarking Cloud computing Source : Renault 5/29

7 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION List of test cases from OMD2 project 2D case CFD HVAC pipe 3D case CFD HVAC pipe 3D case CFD Rear-view mirror 3D case CFD External aerodynamics on a car 3D case CFD Cylinderhead 3D case CFD Ship hull Source : Renault & Sirehna 6/29

8 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION 2D case HVAC pipe Objective of test case: Test of methods and algorithms proposed : - Hybrid optimisation with use of partial convergence algorithm (Developed by V. Picheny at ECP) - Prepare procedures for 3D complex cases Objective of the problem : Find the optimal geometry to : F1 : Minimise the pressure loss between inlet and outlet F2 : Minimise of the standard deviation of the output speed profile Geometry described with 13 parameters Use of openfoam for computation 7/29 3 min on a classical computer Source : Sirehna

9 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Population evolution in space objectives F1 : Minimisation of the pressure loss between inlet and outlet F2 : Minimisation of the standard deviation of the output speed profile Random initialization, NSGA-II, 20 generations, 32 individuals (640 solutions evaluated)~=2hr computation. All computations run from Scilab. Source : Sirehna 8/29

10 02 FROM 1D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Pareto front found and associated pressure profiles Source : Sirehna 9/29

11 02 FROM 1D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Pareto front found and associated speed profiles Source : Sirehna 10/29

12 02 FROM 1D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Simple writing of function // //--- EGO //--- Run EGO using R and load new point if verbose then R_executable_disp = " > " + optim_directory + "R_log_" + sprintf("%03d",1) + ".txt"; R_executable_disp = R_executable_disp + " 2> " + optim_directory + "R_log_" + sprintf("%03d",1) + "_Error.txt"; else R_executable_disp = ""; end unix(r_executable+" < run_ego_quantile.2.r --no-save --args " + optim_directory + " " + R_executable_disp); for j = 1:nOptimStep disp(" "); disp(" "+sprintf("%03d",j)+" "); xnew = fscanfmat(optim_directory + "xnew.txt"); eqi = fscanfmat(optim_directory + "eqi.txt"); qk = fscanfmat(optim_directory + "qk.txt"); qmin = min(qk); //--- Compute distance between new point and existing points dist_to_px = zeros(1, nobs); for i = 1:nobs dist_to_px(i) = norm(px(i,:) - xnew); end [mindist Iclosest] = min(dist_to_px); //--- Run new experiment if mindist > 1e-2 //--- Case 1: xnew does not exist already iobs = nobs + 1; // Run simulation at new point directory = optim_directory + "xp_" + sprintf("%03d",iobs) + filesep(); Xnew = xnew.*(ub - LB) + Xbar; select problemname case "Test" ynew = test7d(xnew) + normrnd(0,alltau2(1)); case "OMD2Case1 Source : Sirehna 11/29

13 02 FROM 1D CASE TO FULL 3D INDUSTRIAL OPTIMISATION 3D case HVAC pipe Objective of test case: Test of the distant computation Test of the partial convergence method Objective of the problem : Similar to the previous one : find an optimal geometry (8 parameters) 25 min for the evaluation of one solution ( cells) => Large computation times impose to use HPC for optimisation Source : Sirehna 12/29

14 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION 3D case HVAC pipe Software used : Geometry generated with Catia Mesh generated with StarCCM+ Solver : OpenFoam Use of ProActive as Middleware Distributed computations : Use of HPC PACAGrid (Sophia Antipolis) Use of Catia as a web service (Nantes) Source : Sirehna 13/29

15 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION OMD2 User SCILAB PLATEFORM Parameter files XML Jobs Interface Scilab / Proactive Results PACA GRID SIREHNA INRIA Server SIREHNA Server Web Server DisCalWS Dataspace PACA Grid Dataspace CATIA 14/29

16 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Example of a remote use by WUT since january 2011 (Warsaw University Technology) WUT CAD parameters Local open source middleware CATIA Webservice CAD geometry HPC PACA Grid (1200 cores) 15/29

17 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Population evolution in space objectives F1 : Minimisation of the pressure loss between inlet and outlet F2 : Minimisation of the standard deviation of the output speed profile Random intialization, NSGA-II, 20 generations, 32 individuals (640 solutions evaluated)~=11days computation on a single CPU Source : Sirehna 16/29

18 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Objective of test case: Demonstrate the use of a multi-level modelling on an industrial test case, with use of distributed computation Objective of problem From an initial ship hull without bulbous bow, find an optimised ship hull with a bow that minimize the forward resistance and decrease motions at sea Source : Sirehna 17/29

19 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION 3D case Ship hull optimisation (Cochise project) Two objectives : Reduce ship resistance for a speed of 10 kt Reduce acceleration at the rear point ( Seakeeping criteria ) Constraints : Length of the ship Length at waterline Displacement Longitudinal CoG (LCG) Metacenter (GM) Geometrical parameters : 6 global parameters + 4 parameters for the bulbous bow Cochise: Project partially funded by French Fisheries Organisation Source : Sirehna 18/29

20 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Numerical facts Mesh : 1.5e6 cells for a half-hull Use of 12 cores with PACA Grid for CFD computation (StarCCM+) One CFD computation : 10 hrs => No optimisation can be performed directly => Develop a set of strategies to obtain results with the less computation time Modelling Simulation Optimisation Computation Source : Sirehna 19/29

21 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMISATION Multilevel optimisation strategies on ship hull (COCHISE project) : Software tools used: CATIA REVA AQUA+ - STARCCM+ Use of modefrontier to perform optimisation Multilevel modelling : Use of potential code and viscous code (RANS equation) Automatic stop of simulation based on convergence criteria Restart of new solution with mapping techniques ( Closest solution fields from previous computed hulls are used to initialize the new solution field) Multi-model approach : Optimisation of hull without bulbous bow in a first time, then optimisation with the bulbous bow Use of surface response meta-model to increase optimization speed Source : Sirehna 20/29

22 02 FROM 2D CASE TO FULL 3D INDUSTRIAL OPTIMIZATION Objective space view Each point represents a design / solution in the objective space -25% - 4.5% START Add of a bulbous bow : Reduction of 25% on the forward resistance Source : Sirehna 21/29

23 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW OMD2/CSDL (Complex Systems Design Lab) projects collaboration Will be available on Scilab forge Private project up to first release Scilab Optimization Platform Batch mode (script edition, large scale execution) GUI mode (interactive edition, prototyping) Will become Scilab external module available through ATOMS 22/29

24 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW Platform features Platform organised in different modules - Data management - Modelling - Optimisation - Visualisation Wrapper - Scilab algorithms - External tools - ProActive Mask complexity for users Source : Digiteo 23/29

25 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW SCILAB Platform MMI for interaction (Definition of strategies, parameters, ) - Simulation (Number of cells, iterations, ) - Optimisation (NSGA2, ) - Modelling (DACE, Lolimot, ) MMI to build test case -Design parameters (X1,X2,X3, ) -Responses (F1,F2,F3, ) DOE X F(X) Sensitivy analysis Metamodelling Optimisation API SCILAB -> Proactive X Test case F(X) API Proactive -> SCILAB Cas test 2,3,4,5, ProActive XML Job -CATIA -CCM+ -OpenFOAM -Pretreatment / Posttreatment Execution on PACAgrid 24/29

26 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW Data management module Factors/Parameters: - Load existing Design Of Experiments (Isight.db files, ) - Generate Design Of Experiments: - DoE generator wrappers (lhs, ) - DoE generator settings Responses simulation using: - External tool (openfoam, Catia,CCM+, ) - Scilab function 2D visualization: - Factor / Factor - Response / Factor Source : Digiteo 25/29

27 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW Modelling management module Point selection: - Learning points used for modelling - Validation points used to validate model - Bad points (simulation issue, ) Modeler: - Selected among modeler wrappers (DACE, Lolimot,...) - Parameters configuration - Multiple model management with best model user selection Visualization: - 2D models - Cross correlation - Sensitivity analysis Source : Digiteo 26/29

28 03 SCILAB PLATFORM A REMOTE NUMERICAL WORKFLOW Optimization module Responses coefficients values setting Optimize - Selection among generic wrappers (optim, fmincon, genetic algorithms, ) - Optimizer configuration - Enable two chained optimizers Visualization - Optimal point - Pareto fronts - Robustness Source : Digiteo 27/29

29 04 OUTLOOK DELIVERABLES, WORK IN PROGRESS, DISSEMINATION OMD2 3D CAD parametric modelling & optimisation Automation of distributed tool chain Development of specific and appropriate algorithms and strategies dedicated to large optimisation problems Scilab Use of open-source software in industrial context Fast integration of optimization algorithms Integration of test cases in the platform All developments are to be included in an ATOMS module (End of 2012) 28/29

30 Thanks for your attention!! 29/29

2013 Code_Saturne User Group Meeting. EDF R&D Chatou, France. 9 th April 2013

2013 Code_Saturne User Group Meeting. EDF R&D Chatou, France. 9 th April 2013 2013 Code_Saturne User Group Meeting EDF R&D Chatou, France 9 th April 2013 Thermal Comfort in Train Passenger Cars Contact For further information please contact: Brian ANGEL Director RENUDA France brian.angel@renuda.com

More information

OpenFOAM Optimization Tools

OpenFOAM Optimization Tools OpenFOAM Optimization Tools Henrik Rusche and Aleks Jemcov h.rusche@wikki-gmbh.de and a.jemcov@wikki.co.uk Wikki, Germany and United Kingdom OpenFOAM Optimization Tools p. 1 Agenda Objective Review optimisation

More information

Marine CFD applications using OpenFOAM

Marine CFD applications using OpenFOAM Marine CFD applications using OpenFOAM Andrea Penza, CINECA 27/03/2014 Contents Background at CINECA: LRC experience CFD skills Automatic workflow Reliability workflow OpenFOAM solvers for marine CFD analysis

More information

How To Optimise A Boat'S Hull

How To Optimise A Boat'S Hull Hull form optimisation with Computational Fluid Dynamics Aurélien Drouet, Erwan Jacquin, Pierre-Michel Guilcher Overview Context Software Bulbous bow optimisation Conclusions/perspectives Page 2 HydrOcean

More information

HPC Deployment of OpenFOAM in an Industrial Setting

HPC Deployment of OpenFOAM in an Industrial Setting HPC Deployment of OpenFOAM in an Industrial Setting Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom PRACE Seminar: Industrial Usage of HPC Stockholm, Sweden, 28-29 March 2011 HPC Deployment

More information

LSCFD: Meshing Tools for Open Source CFD A Practical Point of View

LSCFD: Meshing Tools for Open Source CFD A Practical Point of View LSCFD: Meshing Tools for Open Source CFD A Practical Point of View Juha Kortelainen Report: Meshing Tools for Open Source CFD A Practical Point of View LSCFD Tools for Large Scale

More information

Christof Hinterberger, Mark Olesen

Christof Hinterberger, Mark Olesen Application of of a Continuous Adjoint Flow Solver for for Geometry Optimisation of of Automotive Exhaust Systems Christof Hinterberger, Mark Olesen FLOWHEAD Workshop, Varna Sept. 2010 Workshop on industrial

More information

Numerical Simulation of the External Flow Field. Around a Bluff Car*

Numerical Simulation of the External Flow Field. Around a Bluff Car* Numerical Simulation of the External Flow Field Around a Bluff Car* Sun Yongling, Wu Guangqiang, Xieshuo Automotive Engineering Department Shanghai Tongji University Shanghai, China E-mail: wuqjuhyk@online.sh.cn

More information

Multiobjective Robust Design Optimization of a docked ligand

Multiobjective Robust Design Optimization of a docked ligand Multiobjective Robust Design Optimization of a docked ligand Carlo Poloni,, Universitaʼ di Trieste Danilo Di Stefano, ESTECO srl Design Process DESIGN ANALYSIS MODEL Dynamic Analysis Logistics & Field

More information

The Influence of Aerodynamics on the Design of High-Performance Road Vehicles

The Influence of Aerodynamics on the Design of High-Performance Road Vehicles The Influence of Aerodynamics on the Design of High-Performance Road Vehicles Guido Buresti Department of Aerospace Engineering University of Pisa (Italy) 1 CONTENTS ELEMENTS OF AERODYNAMICS AERODYNAMICS

More information

THE CFD SIMULATION OF THE FLOW AROUND THE AIRCRAFT USING OPENFOAM AND ANSA

THE CFD SIMULATION OF THE FLOW AROUND THE AIRCRAFT USING OPENFOAM AND ANSA THE CFD SIMULATION OF THE FLOW AROUND THE AIRCRAFT USING OPENFOAM AND ANSA Adam Kosík Evektor s.r.o., Czech Republic KEYWORDS CFD simulation, mesh generation, OpenFOAM, ANSA ABSTRACT In this paper we describe

More information

Investigation and Application of Multi-Disciplinary Optimization for. Automotive Body-in-White Development

Investigation and Application of Multi-Disciplinary Optimization for. Automotive Body-in-White Development Investigation and Application of Multi-Disciplinary Optimization for Abstract: Automotive Body-in-White Development Allen Sheldon*, Edward Helwig*, Yong-Bae Cho** * Honda R&D Americas, Inc. ** CSM Software,

More information

Product Synthesis. CATIA - Product Engineering Optimizer 2 (PEO) CATIA V5R18

Product Synthesis. CATIA - Product Engineering Optimizer 2 (PEO) CATIA V5R18 Product Synthesis CATIA - Product Engineering Optimizer 2 (PEO) CATIA V5R18 Product Synthesis CATIA - Product Engineering Optimizer Accelerates design alternatives exploration and optimization according

More information

FINE TM /Marine. CFD Suite for Marine Applications. Advanced Development for Better Products. www.numeca.com

FINE TM /Marine. CFD Suite for Marine Applications. Advanced Development for Better Products. www.numeca.com FINE TM /Marine CFD Suite for Marine Applications Advanced Development for Better Products www.numeca.com FINE TM /Marine FINE /Marine is a unique integrated CFD software environment for the simulation

More information

Automated moving mesh techniques in CFD

Automated moving mesh techniques in CFD Unione Europea Repubblica Italiana Regione Autonoma della Sardegna Automated moving mesh techniques in CFD Application to fluid-structure interactions and rigid motions problems MANUELA PROFIR manuela@crs4.it

More information

Optimization algorithms for aeronautical engine components: CFD design applications

Optimization algorithms for aeronautical engine components: CFD design applications Optimization algorithms for aeronautical engine components: CFD design applications 1 Outline CFD Optimization Research projects Combustor applications Injection system design à swirl number Cowl design

More information

Very special thanks to Wolfgang Gentzsch and Burak Yenier for making the UberCloud HPC Experiment possible.

Very special thanks to Wolfgang Gentzsch and Burak Yenier for making the UberCloud HPC Experiment possible. Digital manufacturing technology and convenient access to High Performance Computing (HPC) in industry R&D are essential to increase the quality of our products and the competitiveness of our companies.

More information

CFD analysis for road vehicles - case study

CFD analysis for road vehicles - case study CFD analysis for road vehicles - case study Dan BARBUT*,1, Eugen Mihai NEGRUS 1 *Corresponding author *,1 POLITEHNICA University of Bucharest, Faculty of Transport, Splaiul Independentei 313, 060042, Bucharest,

More information

The Mantid Project. The challenges of delivering flexible HPC for novice end users. Nicholas Draper SOS18

The Mantid Project. The challenges of delivering flexible HPC for novice end users. Nicholas Draper SOS18 The Mantid Project The challenges of delivering flexible HPC for novice end users Nicholas Draper SOS18 What Is Mantid A framework that supports high-performance computing and visualisation of scientific

More information

Application of CFD in connection with ship design

Application of CFD in connection with ship design DANSIS meeting Lyngby, 13 May 2009 Application of CFD in connection with ship design www.force.dk Background Method Examples Summary Claus Daniel Simonsen FORCE Technology Background When a ship, which

More information

Thermal Simulation of a Power Electronics Cold Plate with a Parametric Design Study

Thermal Simulation of a Power Electronics Cold Plate with a Parametric Design Study EVS28 KINTEX, Korea, May 3-6, 2015 Thermal Simulation of a Power Electronics Cold Plate with a Parametric Design Study Boris Marovic Mentor Graphics (Deutschland) GmbH, Germany, boris_marovic@mentor.com

More information

Rapid Design of an optimized Radial Compressor using CFturbo and ANSYS

Rapid Design of an optimized Radial Compressor using CFturbo and ANSYS Rapid Design of an optimized Radial Compressor using CFturbo and ANSYS Enrique Correa, Marius Korfanty, Sebastian Stübing CFturbo Software & Engineering GmbH, Dresden (Germany) PRESENTATION TOPICS 1. Company

More information

Denis Caromel, CEO Ac.veEon. Orchestrate and Accelerate Applica.ons. Open Source Cloud Solu.ons Hybrid Cloud: Private with Burst Capacity

Denis Caromel, CEO Ac.veEon. Orchestrate and Accelerate Applica.ons. Open Source Cloud Solu.ons Hybrid Cloud: Private with Burst Capacity Cloud computing et Virtualisation : applications au domaine de la Finance Denis Caromel, CEO Ac.veEon Orchestrate and Accelerate Applica.ons Open Source Cloud Solu.ons Hybrid Cloud: Private with Burst

More information

Fully Automatic Hex Dominant Mesher. Paul Gilfrin Sharc Ltd

Fully Automatic Hex Dominant Mesher. Paul Gilfrin Sharc Ltd Fully Automatic Hex Dominant Mesher Paul Gilfrin Sharc Ltd Sharc Ltd UK About Sharc Developer of Harpoon Founded in 1997 Distributors of Ensight Engineers with CFD/FEA experience Specialise in the integration

More information

Agenda: 1. Background 2. Solution: ProActive 3. Live Demonstration 4. IFP EN Use Case

Agenda: 1. Background 2. Solution: ProActive 3. Live Demonstration 4. IFP EN Use Case Advances in Cloud Computing with ProActive Parallel Suite D. Caromel Accelerate and Orchestrate Enterprise Applications Hybrid Cloud Solutions (Private with Public Burst) Agenda: 1. Background 2. Solution:

More information

CFD: What is it good for?

CFD: What is it good for? CFD: What is it good for? Tom O Mahoney TNO Fluid Dynamics Introduction to CFD CFD - Computational Fluid Dynamics Computational the using of computers to simulate the physics of fluids Fluid Either gas

More information

The influence of mesh characteristics on OpenFOAM simulations of the DrivAer model

The influence of mesh characteristics on OpenFOAM simulations of the DrivAer model The influence of mesh characteristics on OpenFOAM simulations of the DrivAer model Vangelis Skaperdas, Aristotelis Iordanidis, Grigoris Fotiadis BETA CAE Systems S.A. 2 nd Northern Germany OpenFOAM User

More information

Application of CFD Simulation in the Design of a Parabolic Winglet on NACA 2412

Application of CFD Simulation in the Design of a Parabolic Winglet on NACA 2412 , July 2-4, 2014, London, U.K. Application of CFD Simulation in the Design of a Parabolic Winglet on NACA 2412 Arvind Prabhakar, Ayush Ohri Abstract Winglets are angled extensions or vertical projections

More information

HPC enabling of OpenFOAM R for CFD applications

HPC enabling of OpenFOAM R for CFD applications HPC enabling of OpenFOAM R for CFD applications Towards the exascale: OpenFOAM perspective Ivan Spisso 25-27 March 2015, Casalecchio di Reno, BOLOGNA. SuperComputing Applications and Innovation Department,

More information

Combustion Engine Optimization

Combustion Engine Optimization Combustion Engine Optimization Stefan Jakobsson, Muhammad Saif Ul Hasnain,, Robert Rundqvist, Fredrik Edelvik, Michael Patriksson Mattias Ljungqvist Volvo Cars, Johan Wallesten and Dimitri Lortet Volvo

More information

CONVERGE Features, Capabilities and Applications

CONVERGE Features, Capabilities and Applications CONVERGE Features, Capabilities and Applications CONVERGE CONVERGE The industry leading CFD code for complex geometries with moving boundaries. Start using CONVERGE and never make a CFD mesh again. CONVERGE

More information

2.1 CFD PROJECT PLANNING. 2006 ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary

2.1 CFD PROJECT PLANNING. 2006 ANSYS, Inc. All rights reserved. ANSYS, Inc. Proprietary 2.1 CFD PROJECT PLANNING 2006 ANSYS, Inc. All rights reserved. 2008 ANSYS, Inc. All rights reserved. 6-2 CFD PROJECT PLANNING Task definition Resources Timing and deliverables Design review Assumed part

More information

F1 Fuel Tank Surging; Model Validation

F1 Fuel Tank Surging; Model Validation F1 Fuel Tank Surging; Model Validation Luca Bottazzi and Giorgio Rossetti Ferrari F1 team, Maranello, Italy SYNOPSIS A Formula One (F1) car can carry more than 80 kg of fuel in its tank. This has a big

More information

CFD ANALYSIS OF CONTROLLABLE PITCH PROPELLER USED IN MARINE VEHICLE

CFD ANALYSIS OF CONTROLLABLE PITCH PROPELLER USED IN MARINE VEHICLE CFD ANALYSIS OF CONROLLABLE PICH PROPELLER USED IN MARINE VEHICLE Aditya Kolakoti 1,.V.K.Bhanuprakash 2 & H.N.Das 3 1 M.E in Marine Engineering And Mechanical Handling, Dept of Marine Engineering, Andhra

More information

Overset Grids Technology in STAR-CCM+: Methodology and Applications

Overset Grids Technology in STAR-CCM+: Methodology and Applications Overset Grids Technology in STAR-CCM+: Methodology and Applications Eberhard Schreck, Milovan Perić and Deryl Snyder eberhard.schreck@cd-adapco.com milovan.peric@cd-adapco.com deryl.snyder@cd-adapco.com

More information

Use of OpenFoam in a CFD analysis of a finger type slug catcher. Dynaflow Conference 2011 January 13 2011, Rotterdam, the Netherlands

Use of OpenFoam in a CFD analysis of a finger type slug catcher. Dynaflow Conference 2011 January 13 2011, Rotterdam, the Netherlands Use of OpenFoam in a CFD analysis of a finger type slug catcher Dynaflow Conference 2011 January 13 2011, Rotterdam, the Netherlands Agenda Project background Analytical analysis of two-phase flow regimes

More information

THE ROYAL INSTITUTION OF NAVAL ARCHITECTS

THE ROYAL INSTITUTION OF NAVAL ARCHITECTS THE ROYAL INSTITUTION OF NAVAL ARCHITECTS APPLICATION OF OpenFOAM TO HULL FORM OPTIMISATION AT STX France S Cordier, L Morand, J-M Roux, STX France S.A., Fr, and E Cortey, CFD-Numerics, Fr SUMMARY After

More information

Automatic HVAC Workflow with STAR-CCM+

Automatic HVAC Workflow with STAR-CCM+ CD-adapco STAR European Conference 2011 Automatic HVAC Workflow with STAR-CCM+ Georgios Apostolopoulos, Dr. Christian Merkle, Dr. Wolfram Kühnel Behr GmbH & Co. KG, Germany Automatic HVAC Workflow with

More information

OPTIMISE TANK DESIGN USING CFD. Lisa Brown. Parsons Brinckerhoff

OPTIMISE TANK DESIGN USING CFD. Lisa Brown. Parsons Brinckerhoff OPTIMISE TANK DESIGN USING CFD Paper Presented by: Lisa Brown Authors: Lisa Brown, General Manager, Franz Jacobsen, Senior Water Engineer, Parsons Brinckerhoff 72 nd Annual Water Industry Engineers and

More information

ADVANCED TOOL FOR FLUID DYNAMICS- CFD AND ITS APPLICATIONS IN AUTOMOTIVE, AERODYNAMICS AND MACHINE INDUSTRY

ADVANCED TOOL FOR FLUID DYNAMICS- CFD AND ITS APPLICATIONS IN AUTOMOTIVE, AERODYNAMICS AND MACHINE INDUSTRY International Journal of Mechanical Engineering and Technology (IJMET) Volume 7, Issue 2, March-April 2016, pp. 177 186, Article ID: IJMET_07_02_019 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=7&itype=2

More information

Steady Flow: Laminar and Turbulent in an S-Bend

Steady Flow: Laminar and Turbulent in an S-Bend STAR-CCM+ User Guide 6663 Steady Flow: Laminar and Turbulent in an S-Bend This tutorial demonstrates the flow of an incompressible gas through an s-bend of constant diameter (2 cm), for both laminar and

More information

Experimental and CFD Study of Wave Resistance of High-Speed Round Bilge Catamaran Hull Forms

Experimental and CFD Study of Wave Resistance of High-Speed Round Bilge Catamaran Hull Forms Experimental and FD Study of Wave Resistance of High-Speed Round Bilge atamaran Hull Forms Prasanta K Sahoo, Australian Maritime ollege, Launceston/Australia, P.Sahoo@mte.amc.edu.au Nicholas A Browne,

More information

CCTech TM. ICEM-CFD & FLUENT Software Training. Course Brochure. Simulation is The Future

CCTech TM. ICEM-CFD & FLUENT Software Training. Course Brochure. Simulation is The Future . CCTech TM Simulation is The Future ICEM-CFD & FLUENT Software Training Course Brochure About. CCTech Established in 2006 by alumni of IIT Bombay. Our motive is to establish a knowledge centric organization

More information

How To Powertrain A Car With A Hybrid Powertrain

How To Powertrain A Car With A Hybrid Powertrain ELECTRIFICATION OF VEHICLE DRIVE TRAIN THE DIVERSITY OF ENGINEERING CHALLENGES A3PS Conference, Vienna Dr. Frank Beste AVL List GmbH 1 Motivation for Powertrain Electrification Global Megatrends: Urbanization

More information

Enhancing European maritime collaboration through exchange of service, technology and information

Enhancing European maritime collaboration through exchange of service, technology and information Enhancing European maritime collaboration through exchange of service, technology and information MarTech LNG event 18 th September 2013 Dr Wenjuan Wang University of Strathclyde, UK Content Overview Case

More information

locuz.com HPC App Portal V2.0 DATASHEET

locuz.com HPC App Portal V2.0 DATASHEET locuz.com HPC App Portal V2.0 DATASHEET Ganana HPC App Portal makes it easier for users to run HPC applications without programming and for administrators to better manage their clusters. The web-based

More information

CoolEmAll - Tools for realising an energy efficient data centre

CoolEmAll - Tools for realising an energy efficient data centre CoolEmAll - Tools for realising an energy efficient data centre Wolfgang Christmann christmann informationstechnik + medien GmbH & Co. KG www.christmann.info 1 Outline CoolEmAll project RECS system towards

More information

Evolutionary Algorithms in modefrontier

Evolutionary Algorithms in modefrontier Evolutionary Algorithms in modefrontier Carlo Poloni Univ. Trieste Italy 1 PRESENTATION OUTLINE Some concept on OPTIMIZATION what we need and what we can do Some considerations about Evolutionary Algorithms

More information

Pushing the limits. Turbine simulation for next-generation turbochargers

Pushing the limits. Turbine simulation for next-generation turbochargers Pushing the limits Turbine simulation for next-generation turbochargers KWOK-KAI SO, BENT PHILLIPSEN, MAGNUS FISCHER Computational fluid dynamics (CFD) has matured and is now an indispensable tool for

More information

Journée Mésochallenges 2015 SysFera and ROMEO Make Large-Scale CFD Simulations Only 3 Clicks Away

Journée Mésochallenges 2015 SysFera and ROMEO Make Large-Scale CFD Simulations Only 3 Clicks Away SysFera and ROMEO Make Large-Scale CFD Simulations Only 3 Clicks Away Benjamin Depardon SysFera Sydney Tekam Tech-Am ING Arnaud Renard ROMEO Manufacturing with HPC 98% of products will be developed digitally

More information

Federated, Generic Configuration Management for Engineering Data

Federated, Generic Configuration Management for Engineering Data Federated, Generic Configuration Management for Engineering Data Dr. Rainer Romatka Boeing GPDIS_2013.ppt 1 Presentation Outline I Summary Introduction Configuration Management Overview CM System Requirements

More information

Experts in Computational Fluid Dynamics

Experts in Computational Fluid Dynamics Experts in Computational Fluid Dynamics TotalSim Background TotalSim is an independent CFD consultancy firm specialising in aerodynamic and hydrodynamic design and development through the use of open source

More information

Aeronautical Testing Service, Inc. 18820 59th DR NE Arlington, WA 98223 USA. CFD and Wind Tunnel Testing: Complimentary Methods for Aircraft Design

Aeronautical Testing Service, Inc. 18820 59th DR NE Arlington, WA 98223 USA. CFD and Wind Tunnel Testing: Complimentary Methods for Aircraft Design Aeronautical Testing Service, Inc. 18820 59th DR NE Arlington, WA 98223 USA CFD and Wind Tunnel Testing: Complimentary Methods for Aircraft Design Background Introduction ATS Company Background New and

More information

How To Create A Cdf Optimisation System

How To Create A Cdf Optimisation System ADVANCED ENGINEERING 4(2010)2, ISSN 1846-5900 INTERFACES FOR EMBEDDING CFD OPTIMISATION WORKFLOWS INTO THE PRODUCT DEVELOPMENT PROCESS Todorov, G.; Ovcharova, J.; Romanov, B. & Kamberov, K. Abstract: The

More information

STCE. Outline. Introduction. Applications. Ongoing work. Summary. STCE RWTH-Aachen, Industrial Applications of discrete adjoint OpenFOAM, EuroAD 2014

STCE. Outline. Introduction. Applications. Ongoing work. Summary. STCE RWTH-Aachen, Industrial Applications of discrete adjoint OpenFOAM, EuroAD 2014 Industrial Applications of discrete adjoint OpenFOAM Arindam Sen Software and Tools for Computational Engineering Science RWTH Aachen University EuroAD 2014, Nice, 16-17. June 2014 Outline Introduction

More information

ANSA. www.beta-cae.gr. ANSA for demanding CFD pre-processing. for demanding CFD pre-processing. Model setup. software systems. Morphing & optimization

ANSA. www.beta-cae.gr. ANSA for demanding CFD pre-processing. for demanding CFD pre-processing. Model setup. software systems. Morphing & optimization Model setup - Specification of boundary condition types for ANSYS FLUENT, Star CD/CCM+ and UH-3D. - Complete solution setup for OpenFOAM cases, including initial and boundary condition specification, physical

More information

ICE²: an integrated software to accelerate your calibration process. Generating excellence

ICE²: an integrated software to accelerate your calibration process. Generating excellence ICE²: an integrated software to accelerate your calibration process Generating excellence D2T calibration expertise Calibration - Diesel Engines Calibration Engine tuning Model Based Simulation on test

More information

f o r d e m a n d i n g C F D pre- & post-processing ANSA μετα p i o n e e r i n g software systems www.beta-cae.gr

f o r d e m a n d i n g C F D pre- & post-processing ANSA μετα p i o n e e r i n g software systems www.beta-cae.gr ANSA μετα p i o n e e r i n g software systems f o r d e m a n d i n g C F D pre- & post-processing TM www.beta-cae.gr ANSA with its powerful functionality provides high efficiency solutions for CFD applications.

More information

Enhancing the Design of Electric Machines through the Interaction of Software Tools. Markus Anders Electric machine sector manager CD-adpaco

Enhancing the Design of Electric Machines through the Interaction of Software Tools. Markus Anders Electric machine sector manager CD-adpaco Enhancing the Design of Electric Machines through the Interaction of Software Tools Markus Anders Electric machine sector manager CD-adpaco Outline Part I: SPEED and STAR-CCM+ Enhancing the thermal design

More information

Turbulence Modeling in CFD Simulation of Intake Manifold for a 4 Cylinder Engine

Turbulence Modeling in CFD Simulation of Intake Manifold for a 4 Cylinder Engine HEFAT2012 9 th International Conference on Heat Transfer, Fluid Mechanics and Thermodynamics 16 18 July 2012 Malta Turbulence Modeling in CFD Simulation of Intake Manifold for a 4 Cylinder Engine Dr MK

More information

FLUX / GOT-It Finite Element Analysis of electromagnetic devices Maccon GmbH

FLUX / GOT-It Finite Element Analysis of electromagnetic devices Maccon GmbH FLUX / GOT-It Finite Element Analysis of electromagnetic devices Maccon GmbH Entwurfswerkzeuge für elektrische Maschinen MACCON GmbH 09/04/2013 1 Flux software Modeling electromagnetic and thermal phenomena

More information

Creation of an Unlimited Database of Virtual Bone. Validation and Exploitation for Orthopedic Devices

Creation of an Unlimited Database of Virtual Bone. Validation and Exploitation for Orthopedic Devices Creation of an Unlimited Database of Virtual Bone Population using Mesh Morphing: Validation and Exploitation for Orthopedic Devices Najah Hraiech 1, Christelle Boichon 1, Michel Rochette 1, 2 Thierry

More information

USE OF SCILAB FOR SPACE MISSION ANALYSIS AND FLIGHT DYNAMICS ACTIVITIES

USE OF SCILAB FOR SPACE MISSION ANALYSIS AND FLIGHT DYNAMICS ACTIVITIES USE OF SCILAB FOR SPACE MISSION ANALYSIS AND FLIGHT DYNAMICS ACTIVITIES Thierry Martin CNES Scilabtec 09 Use of Scilab for space mission analysis Page 1 Use of Scilab in CNES Scilab is now widely used

More information

Fully Automatic In-cylinder Workflow Using HEEDS / es-ice / STAR-CD

Fully Automatic In-cylinder Workflow Using HEEDS / es-ice / STAR-CD Fully Automatic In-cylinder Workflow Using HEEDS / es-ice / STAR-CD Simon Fischer Senior ICE Application Support Engineer CD-adapco Nuremberg Office Gerald Schmidt Director/Powertrain - CD-adapco New York

More information

Advanced discretisation techniques (a collection of first and second order schemes); Innovative algorithms and robust solvers for fast convergence.

Advanced discretisation techniques (a collection of first and second order schemes); Innovative algorithms and robust solvers for fast convergence. New generation CFD Software APUS-CFD APUS-CFD is a fully interactive Arbitrary Polyhedral Unstructured Solver. APUS-CFD is a new generation of CFD software for modelling fluid flow and heat transfer in

More information

Evolution of OpenCache: an OpenSource Virtual Content Distribution Network (vcdn) Platform

Evolution of OpenCache: an OpenSource Virtual Content Distribution Network (vcdn) Platform Evolution of OpenCache: an OpenSource Virtual Content Distribution Network (vcdn) Platform Daniel King d.king@lancaster.ac.uk Matthew Broadbent m.broadbent@lancaster.ac.uk David Hutchison d.hutchison@lancaster.ac.uk

More information

Case study: End-to-end data centre infrastructure management

Case study: End-to-end data centre infrastructure management Case study: End-to-end data centre infrastructure management Situation: A leading public sector organisation suspected that their air conditioning units were not cooling the data centre efficiently. Consequently,

More information

Introduction to the Siemens PLM End to End Solution for Composites

Introduction to the Siemens PLM End to End Solution for Composites Introduction to the Siemens PLM End to End Solution for Composites Restricted Siemens AG 2014 2013 All rights reserved. Page 1 Siemens PLM is Dedicated to the Future of Lightweight Engineering Bringing

More information

Collaborative modelling and concurrent scientific data analysis:

Collaborative modelling and concurrent scientific data analysis: Collaborative modelling and concurrent scientific data analysis: Application case in space plasma environment with the Keridwen/SPIS- GEO Integrated Modelling Environment B. Thiebault 1, J. Forest 2, B.

More information

Express Introductory Training in ANSYS Fluent Lecture 1 Introduction to the CFD Methodology

Express Introductory Training in ANSYS Fluent Lecture 1 Introduction to the CFD Methodology Express Introductory Training in ANSYS Fluent Lecture 1 Introduction to the CFD Methodology Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School 2013 - Industry

More information

Fuel Economy Simulation for the Vehicle Fleet

Fuel Economy Simulation for the Vehicle Fleet COVER STORY Simulation and Visualisation Fuel Economy Simulation for the Vehicle Fleet Forecasting the fuel consumption of an entire vehicle fleet has become a crucial challenge for all car manufacturers.

More information

Hydraulic Pipeline Application Modules PSI s Tools to Support Pipeline Operation

Hydraulic Pipeline Application Modules PSI s Tools to Support Pipeline Operation Hydraulic Pipeline Application Modules PSI s Tools to Support Pipeline Operation Inhalt 1 Leak Detection and Location Modules... 3 1.1 Dynamic Balance Leak Detection... 3 1.2 Transient Model Leak Detection...

More information

COMPUTATIONAL FLUID DYNAMICS USING COMMERCIAL CFD CODES

COMPUTATIONAL FLUID DYNAMICS USING COMMERCIAL CFD CODES ME469B - Spring 2007 COMPUTATIONAL FLUID DYNAMICS USING COMMERCIAL CFD CODES Gianluca Iaccarino Dept. Mechanical Engineering Bldg. 500 RM 204 (RM500-I) Ph. 650-723-9599 Email: jops@stanford.edu ME469B/1/GI

More information

Computational Fluid Dynamics

Computational Fluid Dynamics Aerodynamics Computational Fluid Dynamics Industrial Use of High Fidelity Numerical Simulation of Flow about Aircraft Presented by Dr. Klaus Becker / Aerodynamic Strategies Contents Aerodynamic Vision

More information

Problem Statement In order to satisfy production and storage requirements, small and medium-scale industrial

Problem Statement In order to satisfy production and storage requirements, small and medium-scale industrial Problem Statement In order to satisfy production and storage requirements, small and medium-scale industrial facilities commonly occupy spaces with ceilings ranging between twenty and thirty feet in height.

More information

Initial Design and Optimization of Turbomachinery with CFturbo and optislang

Initial Design and Optimization of Turbomachinery with CFturbo and optislang Initial Design and Optimization of Turbomachinery with CFturbo and optislang Sebastian Stübing, Gero Kreuzfeld, Ralph-Peter Müller (CFturbo) Stefan Marth, Michael Schimmelpfennig (Dynardo) page 1/21 Contents

More information

O.F.Wind Wind Site Assessment Simulation in complex terrain based on OpenFOAM. Darmstadt, 27.06.2012

O.F.Wind Wind Site Assessment Simulation in complex terrain based on OpenFOAM. Darmstadt, 27.06.2012 O.F.Wind Wind Site Assessment Simulation in complex terrain based on OpenFOAM Darmstadt, 27.06.2012 Michael Ehlen IB Fischer CFD+engineering GmbH Lipowskystr. 12 81373 München Tel. 089/74118743 Fax 089/74118749

More information

MULTI-OBJECTIVE OPTIMIZATION WITH MODEFRONTIER INTERFACES FOR ANSA AND METAPOST

MULTI-OBJECTIVE OPTIMIZATION WITH MODEFRONTIER INTERFACES FOR ANSA AND METAPOST MULTI-OBJECTIVE OPTIMIZATION WITH MODEFRONTIER INTERFACES FOR ANSA AND METAPOST 1 Alberto Clarich *, 2 Rosario Russo, 3 Marco Carriglio 1,2, 3 ESTECO srl, Trieste, Italy KEYWORDS Multi-objective Optimization,

More information

Multiphase Flow - Appendices

Multiphase Flow - Appendices Discovery Laboratory Multiphase Flow - Appendices 1. Creating a Mesh 1.1. What is a geometry? The geometry used in a CFD simulation defines the problem domain and boundaries; it is the area (2D) or volume

More information

Kalibrierung von Materialparametern und Optimierung eines Elektromotors mit optislang

Kalibrierung von Materialparametern und Optimierung eines Elektromotors mit optislang Kalibrierung von Materialparametern und Optimierung eines Elektromotors mit optislang ----------------------------------------------------------------- Calibration of material parameters and optimization

More information

HydrOcean, your numerical hydrodynamic partner

HydrOcean, your numerical hydrodynamic partner HydrOcean, your numerical hydrodynamic partner Contact: Luke Berry, Account Manager Luke.berry@hydrocean.fr Tel: +33 (0)2 40 20 60 94 Who We Are Overview Founded in 2007 by E. Jacquin Spinoff from Ecole

More information

Piotr Tofiło a,*, Marek Konecki b, Jerzy Gałaj c, Waldemar Jaskółowski d, Norbert Tuśnio e, Marcin Cisek f

Piotr Tofiło a,*, Marek Konecki b, Jerzy Gałaj c, Waldemar Jaskółowski d, Norbert Tuśnio e, Marcin Cisek f Available online at www.sciencedirect.com Procedia Engineering 57 (2013 ) 1156 1165 11th International Conference on Modern Building Materials, Structures and Techniques, MBMST 2013 Expert System for Building

More information

Using CFD to improve the design of a circulating water channel

Using CFD to improve the design of a circulating water channel 2-7 December 27 Using CFD to improve the design of a circulating water channel M.G. Pullinger and J.E. Sargison School of Engineering University of Tasmania, Hobart, TAS, 71 AUSTRALIA Abstract Computational

More information

ENERGY EFFICIENT CONTROL OF VIRTUAL MACHINE CONSOLIDATION UNDER UNCERTAIN INPUT PARAMETERS FOR THE CLOUD

ENERGY EFFICIENT CONTROL OF VIRTUAL MACHINE CONSOLIDATION UNDER UNCERTAIN INPUT PARAMETERS FOR THE CLOUD ENERGY EFFICIENT CONTROL OF VIRTUAL MACHINE CONSOLIDATION UNDER UNCERTAIN INPUT PARAMETERS FOR THE CLOUD ENRICA ZOLA, KARLSTAD UNIVERSITY @IEEE.ORG ENGINEERING AND CONTROL FOR RELIABLE CLOUD SERVICES,

More information

SALOME-CFD: EDF S REFERENCE PLATFORM FOR CFD STUDIES

SALOME-CFD: EDF S REFERENCE PLATFORM FOR CFD STUDIES SALOME-CFD: EDF S REFERENCE PLATFORM FOR CFD STUDIES Cyril BAUDRY SALOME S USER DAY 26 NOV 2015 27 NOVEMBRE 2015 CEA 26 NOV 2015 PAGE 1 SUMMARY 1. Why build a platform for CFD? 2. SALOME-CFD content and

More information

CS 6343: CLOUD COMPUTING Term Project

CS 6343: CLOUD COMPUTING Term Project CS 6343: CLOUD COMPUTING Term Project Group A1 Project: IaaS cloud middleware Create a cloud environment with a number of servers, allowing users to submit their jobs, scale their jobs Make simple resource

More information

Quality and Reliability in CFD

Quality and Reliability in CFD Quality and Reliability in CFD Open Source Challenges Hrvoje Jasak Wikki Ltd, United Kingdom Faculty of Mechanical Engineering and Naval Architecture University of Zagreb, Croatia Quality and Reliability

More information

ME6130 An introduction to CFD 1-1

ME6130 An introduction to CFD 1-1 ME6130 An introduction to CFD 1-1 What is CFD? Computational fluid dynamics (CFD) is the science of predicting fluid flow, heat and mass transfer, chemical reactions, and related phenomena by solving numerically

More information

Successive robust design optimization of an electronic connector

Successive robust design optimization of an electronic connector Successive robust design optimization of an electronic connector Dirk Roos dynardo dynamic software and engineering GmbH Ralf Hoffmann & Thomas Liebl Tyco Electronics AMP GmbH Design for Six Sigma Six

More information

Building Platform as a Service for Scientific Applications

Building Platform as a Service for Scientific Applications Building Platform as a Service for Scientific Applications Moustafa AbdelBaky moustafa@cac.rutgers.edu Rutgers Discovery Informa=cs Ins=tute (RDI 2 ) The NSF Cloud and Autonomic Compu=ng Center Department

More information

Computational Fluid Dynamics in Automotive Applications

Computational Fluid Dynamics in Automotive Applications Computational Fluid Dynamics in Automotive Applications Hrvoje Jasak h.jasak@wikki.co.uk Wikki Ltd, United Kingdom FSB, University of Zagreb, Croatia 1/15 Outline Objective Review the adoption of Computational

More information

CFD Analysis of a MILD Low-Nox Burner for the Oil and Gas industry

CFD Analysis of a MILD Low-Nox Burner for the Oil and Gas industry CFD Analysis of a MILD Low-Nox Burner for the Oil and Gas industry Alessandro Atzori Supervised by: Vincent Moreau Framework: Industria 2015 Bill on competitiveness and industrial policy, approved on 22

More information

CFD modelling of floating body response to regular waves

CFD modelling of floating body response to regular waves CFD modelling of floating body response to regular waves Dr Yann Delauré School of Mechanical and Manufacturing Engineering Dublin City University Ocean Energy Workshop NUI Maynooth, October 21, 2010 Table

More information

CFD Analysis of a butterfly valve in a compressible fluid

CFD Analysis of a butterfly valve in a compressible fluid CFD Analysis of a butterfly valve in a compressible fluid 1 G.TAMIZHARASI, 2 S.KATHIRESAN 1 Assistant Professor,Professor,Departmentment of Electronics and Instrumentation,Bharath university, chennai.

More information

CFturbo Modern turbomachinery design software

CFturbo Modern turbomachinery design software COMPRESSOR Tech Magazine CFturbo Modern turbomachinery design software Designing new compressors from scratch and compressor redesign By Ralph-Peter Mueller & Gero Kreuzfeld Ralph-Peter Mueller and Gero

More information

CFD Modelling of a Physical Scale Model: assessing model skill. Kristof Verelst 28-11-2014 FHR, Antwerp

CFD Modelling of a Physical Scale Model: assessing model skill. Kristof Verelst 28-11-2014 FHR, Antwerp CFD Modelling of a Physical Scale Model: assessing model skill Kristof Verelst 28-11-2014 FHR, Antwerp Introduction Introduction WL_13_61 CFD simulations of hydrodynamics for hydraulic structures (00_085)

More information

MEETING THE CHALLENGES OF COMPLEXITY AND SCALE FOR MANUFACTURING WORKFLOWS

MEETING THE CHALLENGES OF COMPLEXITY AND SCALE FOR MANUFACTURING WORKFLOWS MEETING THE CHALLENGES OF COMPLEXITY AND SCALE FOR MANUFACTURING WORKFLOWS Michael Feldman White paper November 2014 MARKET DYNAMICS Modern manufacturing increasingly relies on advanced computing technologies

More information

Enterprise HPC & Cloud Computing for Engineering Simulation. Barbara Hutchings Director, Strategic Partnerships ANSYS, Inc.

Enterprise HPC & Cloud Computing for Engineering Simulation. Barbara Hutchings Director, Strategic Partnerships ANSYS, Inc. Enterprise HPC & Cloud Computing for Engineering Simulation Barbara Hutchings Director, Strategic Partnerships ANSYS, Inc. Historical Perspective Evolution of Computing for Simulation Pendulum swing: Centralized

More information

CastNet: Modelling platform for open source solver technology

CastNet: Modelling platform for open source solver technology CastNet: Modelling platform for open source solver technology. DHCAE Tools GmbH Address: Friedrich-Ebert-Str. 368, 47800 Krefeld, Germany / Company site: Alte Rather Str. 207 / 47802 Krefeld Phone +49

More information

New Ferries for Gedser - Rostock. Development of a transport concept GR12. Ferry Conference in Copenhagen 22 nd November 2010

New Ferries for Gedser - Rostock. Development of a transport concept GR12. Ferry Conference in Copenhagen 22 nd November 2010 Development of a transport concept Ferry Conference in Copenhagen 22 nd November 2010 Lars Jordt Johannes Johannesson LJ / JOJ 22/11-2010 1 The routes of Scandlines LJ / JOJ 22/11-2010 2 The route Northern

More information