A Framework for Industrial Simulation and Data Analytics. Yann Debray Scilab Center of Excellence, ESI Group

Size: px
Start display at page:

Download "A Framework for Industrial Simulation and Data Analytics. Yann Debray Scilab Center of Excellence, ESI Group"

Transcription

1 A Framework for Industrial Simulation and Data Analytics Yann Debray Scilab Center of Excellence, ESI Group Copyright ESI Copyright Group, ESI All Group, rights reserved All rights reserved. 1

2 ICT * Mega Trends enabling society to rely on computer models 1968 NASA & MSC First release of NASTRAN Exponential growth in the IT. Confirming Moore s law from From 10 to 50+ years * ICT Information Computer Technology 2

3 CONTENT Introduction of ESI Group The rise of Big Data with Industrial IoT Simulation & Data analytics based on Open-source Cloud Solutions to accelerate the adoption Current involvement on HPCN 3

4 Introduction of ESI Group 4

5 ESI Group Founded in 1973 on the promise of High Performance Computing We enable companies to build Virtual Prototypes of their products Corporate snapshot : 140M in FY16 Revenues 1,200 experts in CAE (Computer-Aided Engineering) in 40+ countries 5

6 ESI Group Business Segmentation and Representative Clients 5% 4% 3% 8% 11% 53% 14% 6

7 ESI Solutions and Foundation Technology Building on successful acquisitions to comprehensively address Virtual Prototyping Virtual Manufacturing Virtual Reality Casting Composites Sheet Metal Forming Welding & Assembly IC.IDO Immersive Experience Virtual Performance Virtual Environment Virtual Performance Solution Virtual Seat Solution Vibro-Acoustics Electronics, CFD & Multiphysics Open Source CFD Electromagnetics Systems and Data Analytics Virtual Systems & Controls Cloud/SaaS Simulation Big Data Analytics Decision Support 7

8 From Virtual Prototypes to Virtual Twins Value Creation AUTONOMOUS VIRTUAL PROTOTYPING VIRTUAL VIRTUAL REALITY Experience & Collaborate IoT VIRTUAL PROTOTYPING ANALYSIS TESTING SYSTEMS MODELING Activate & Animate Conduct design checks Benefits x1 Replace tests Benefits x10 Replace prototypes DATA ANALYTICS Learn & Build intelligence Benefits x100 Benefits +++ Communicate, Assist & Autonomize Manage Product Performance 8

9 The rise of Big Data with Industrial IoT 9

10 10

11 Hybrid Virtual Twins for Industrial IoT What: Software solution for reliability, safety, operations and predictive maintenance of Industrial IoT systems How: Dynamic integration of virtual engineering (modeling and simulation) and Industrial IoT data analytics Targets Systems: Aircraft Engines, Aerospace Systems, Marine Vessels, Industrial Equipments, Wind Turbines, Auto powertrain Target Users: Operation and Maintenance teams System reliability and safety 11

12 Hybrid Virtual Twins for Industrial IoT (physics-based and data-driven models) Physics-based Virtual Twin Simulation Data Data-driven Virtual Twin Sensor Data Lake Instrumented Physical Asset Wrapping elements Update Auto-learning Math-based models System models Detailed 3D models Machine Learning & Reduced order models Apply Operational Predictive Models Act Mechanics Sensors Controllers Modeling & Simulation Software Industrial Data Analytics Software Decision 12

13 Simulation & Data analytics based on Open-source Some applications paving the way towards HPC 13

14 Model reduction of the flow around a vertical wind turbine Coupling of CFD Solver with Scilab (Desktop & Cloud): From CFD (2/3D) to mathematical model (0/1D) Computation time : from days to seconds Complete CFD simulation Simplified mathematical model (Proper Orthogonal Decomposition) 14 Scilab Enterprises Confidential 14

15 EDF: Environment impact modeling and simulation Scilab-based Modeling and Simulations of Environmental Performances of Power Plants Cooling Systems Thirty-year simulations with: Climate models Hydrology models Power Plant cooling system models 15

16 DoE, post-processing and visualization Development of a GUI to explore simulation results (Excel imported) GUI, graphics, advanced mathematics Modules used DACE (ATOMS): kriging NSGA2 : multi-objective optimization TOPSIS : multicriteria decision making (specific development) 16

17 Cloud solutions to accelerate the adoption 17

18 Cloud Applications Crash Simulation ESI Cloud VPS Computational Fluid Dynamics -- ESI Cloud OpenFOAM Data Analytics ESI Cloud Mineset Modeling & Simulation ESI Cloud Scilab 18

19 Cloud Applications Crash Simulation ESI Cloud VPS 19

20 ESI Cloud VPS - High Performance Computing Strong scaling for complex industrial cases Hybrid MPI +OpenMP scales better Robust numerical implementation 20

21 Cloud Applications Computational Fluid Dynamics -- ESI Cloud OpenFOAM 21

22 OpenFOAM -Estimate Tsunami load on buildings Courtesy of Shimizu Corporation Succeed in clarifying the mechanism of Tsunami damages in the Great East Japan Earthquake D Shallow Water Model Japan whole island 3D-VOF Model Multiscale simulation 22 22

23 ESI Mineset Visual Machine Learning Goal-driven Exploration Coupling visualization, machine learning and human judgment to Discover new insights Predict outcomes Prescribe actions with confidence Human-in-the-loop iterative analytics Visualization is UI to ML models Based on Spark framework Zero programming Designed for Cloud Based on ML developed at Stanford and SGI, 12 patents Simple by Design, Power on Demand 23

24 ESI Cloud Scilab Overview Scilab Scilab Cloud App (Web GUI or API) Simulation Web App (Web Interface & Algorithms) Simulation API (API & Algorithms) ESI Cloud Scilab Private Cloud / Public Cloud 24

25 SANOFI using Scilab in ESI Cloud Scilab.. to optimize energy costs through simulation Problem Inefficient control of HVAC (Heating, Ventilation & Air Conditioning) leads to energy waste HVAC = 60 % of energy bill (500k /year/site) Scilab Solution in Cloud Application for simulation of weather-based and scenario-based HVAC energy consumption and costs : Sanofi Opticlim Objectives Save 10M + /year in energy bills worldwide Energy efficiency at 120 industrial sites 25 Scilab Enterprises 25

26 Current involvement on HPCN The European project COLOC 26

27 27

28 COLOC European project Optimise process placement and data locality Infrastructure topology HWLOC - INRIA 28

29 Scilab in COLOC scicuda and sciopencl Scilab toolboxes freely available for the community worldwide Give easy access to GPU computing from Scilab language Scilab MPI + scimumps Scilab toolbox Give easy access to MUMPS solvers with Scilab language for non-hpc-experts Explore opportunities with Scilab Cloud Hide the complexity of simulation applications and HPC to reach new types of users (engineers, domain experts,..) Give use of HPC to non specialists linking Scilab Cloud with NOVA. 29

30 Use Case HPC Dassault Aviation speeds up its computations for aircraft design by a factor of 6 with scigpgpu on a heterogeneous (CPU+GPU) node and by a factor of 10 with Scilab/MPI using 10 MPI processes spread over several CPU nodes

31 Flow Simulation Computation CPU-GPU Comparison 2D Lattice Boltzmann simulation (D2Q9 model computation) Intel CPU Xeon E v2 2.70GHz (left) AMD GPU FirePro S9150 (right) 31 31

32 Benchmark CPU/GPU Great acceleration for some operations With structural limitation due to data transfer bottleneck 32 32

33 Scilab/MPI Slave 1 -->help MPI Master 0 Slave 2 Slave n R/mpi_technical.html MPI_Init(); rnk = MPI_Comm_rank(); sizenodes = MPI_Comm_size(); // here n=1 SLV = rnk; Master = ~ SLV; assert_checkequal(mpi_comm_size(), 2); if Master for slaveid = 1:sizeNodes-1 value = slaveid*2 MPI_Isend(value, slaveid, 42); end else ranksource=0; tag=0; MPI_Irecv(rankSource, tag, 42); // MPI_Irecv does not return any value value=mpi_wait(42) // the value will be returned by MPI_Wait assert_checkequal(value,2*slv); end MPI_Finalize(); exit() 33 33

34 Demonstration SciMUMPS solving Ax=b for finite elements electromagnetic fields problems from University of Florida sparse matrix collection First case: 2 cubes sphere Finite-element time domain solvers for electromagnetic diffusion equations: 88,213 tetrahedral elements in the 3-D computational domain A: 101,492 x 101,492 sparse symmetric definitive positive matrix with 1,647,264 non-zero elements b: 101,492 full vector 34

35 Demonstration Second case: offshore Finite-element system matrix from transient electric field diffusion equation with tetrahedral elements in the 3-D computational domain A: 259,789 x 259,789 sparse symmetric definitive positive matrix with 4,242,673 non-zero elements b: 259,789 full vector 35

36 Demonstration Execution time results 36

37 THANK YOU! Contact: 37

38 Scilab Highlights Scilab is competitive with Matlab, but open-source and free With Xcos, Scilab offers a modular equivalent of Simulink for control systems design & simulation Scilab has a 1M+ user community worldwide ESI Cloud enables the secure cloud deployment of Scilab scientific and engineering applications 38 Scilab Enterprises Confidential 38

Scilab Use cases. Industrial use cases with Scilab open-source software. Raphael Auphan & Yann Debray Scilab - ESI Group 2017/11/16 G/EO/17,014

Scilab Use cases. Industrial use cases with Scilab open-source software. Raphael Auphan & Yann Debray Scilab - ESI Group 2017/11/16 G/EO/17,014 Scilab Use cases Industrial use cases with Scilab open-source software Raphael Auphan & Yann Debray Scilab - ESI Group 2017/11/16 1 Copyright ESI Copyright Group, 2017. ESI All Group, rights reserved.

More information

Using Microsoft Azure Cloud for CAE Simulations

Using Microsoft Azure Cloud for CAE Simulations Using Microsoft Azure Cloud for CAE Simulations Easy Step-by-Step Guide and Live CAE Demonstration Reha Senturk, The UberCloud June 5, 2018 Summary of UberCloud Summary of Microsoft Azure Benefits and

More information

Speedup Altair RADIOSS Solvers Using NVIDIA GPU

Speedup Altair RADIOSS Solvers Using NVIDIA GPU Innovation Intelligence Speedup Altair RADIOSS Solvers Using NVIDIA GPU Eric LEQUINIOU, HPC Director Hongwei Zhou, Senior Software Developer May 16, 2012 Innovation Intelligence ALTAIR OVERVIEW Altair

More information

Maximize automotive simulation productivity with ANSYS HPC and NVIDIA GPUs

Maximize automotive simulation productivity with ANSYS HPC and NVIDIA GPUs Presented at the 2014 ANSYS Regional Conference- Detroit, June 5, 2014 Maximize automotive simulation productivity with ANSYS HPC and NVIDIA GPUs Bhushan Desam, Ph.D. NVIDIA Corporation 1 NVIDIA Enterprise

More information

Integrate MATLAB Analytics into Enterprise Applications

Integrate MATLAB Analytics into Enterprise Applications Integrate Analytics into Enterprise Applications Dr. Roland Michaely 2015 The MathWorks, Inc. 1 Data Analytics Workflow Access and Explore Data Preprocess Data Develop Predictive Models Integrate Analytics

More information

A SMART PORT CITY IN THE INTERNET OF EVERYTHING (IOE) ERA VERNON THAVER, CTO, CISCO SYSTEMS SOUTH AFRICA

A SMART PORT CITY IN THE INTERNET OF EVERYTHING (IOE) ERA VERNON THAVER, CTO, CISCO SYSTEMS SOUTH AFRICA A SMART PORT CITY IN THE INTERNET OF EVERYTHING (IOE) ERA VERNON THAVER, CTO, CISCO SYSTEMS SOUTH AFRICA Who is Cisco? Convergence of Mobile, Social, Cloud, and Data Is Driving Digital Disruption Digital

More information

Faster Innovation - Accelerating SIMULIA Abaqus Simulations with NVIDIA GPUs. Baskar Rajagopalan Accelerated Computing, NVIDIA

Faster Innovation - Accelerating SIMULIA Abaqus Simulations with NVIDIA GPUs. Baskar Rajagopalan Accelerated Computing, NVIDIA Faster Innovation - Accelerating SIMULIA Abaqus Simulations with NVIDIA GPUs Baskar Rajagopalan Accelerated Computing, NVIDIA 1 Engineering & IT Challenges/Trends NVIDIA GPU Solutions AGENDA Abaqus GPU

More information

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES

ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES ORACLE SERVICES FOR APPLICATION MIGRATIONS TO ORACLE HARDWARE INFRASTRUCTURES SERVICE, SUPPORT AND EXPERT GUIDANCE FOR THE MIGRATION AND IMPLEMENTATION OF YOUR ORACLE APPLICATIONS ON ORACLE INFRASTRUCTURE

More information

Algorithms, System and Data Centre Optimisation for Energy Efficient HPC

Algorithms, System and Data Centre Optimisation for Energy Efficient HPC 2015-09-14 Algorithms, System and Data Centre Optimisation for Energy Efficient HPC Vincent Heuveline URZ Computing Centre of Heidelberg University EMCL Engineering Mathematics and Computing Lab 1 Energy

More information

Advanced Simulation Library Expanding software ecosystem for the DSP/FPGA/GPU market. September 3, 2015

Advanced Simulation Library Expanding software ecosystem for the DSP/FPGA/GPU market. September 3, 2015 Advanced Simulation Library Expanding software ecosystem for the DSP/FPGA/GPU market September 3, 2015 1 ASL Advanced Simulation Library - free and open source, OpenCL-based multiphysics simulation software

More information

High Performance Computing

High Performance Computing High Performance Computing ADVANCED SCIENTIFIC COMPUTING Dr. Ing. Morris Riedel Adjunct Associated Professor School of Engineering and Natural Sciences, University of Iceland Research Group Leader, Juelich

More information

Engineers can be significantly more productive when ANSYS Mechanical runs on CPUs with a high core count. Executive Summary

Engineers can be significantly more productive when ANSYS Mechanical runs on CPUs with a high core count. Executive Summary white paper Computer-Aided Engineering ANSYS Mechanical on Intel Xeon Processors Engineer Productivity Boosted by Higher-Core CPUs Engineers can be significantly more productive when ANSYS Mechanical runs

More information

Debian for Scientific Facilities Days Sylvestre Ledru / June 25, 2012

Debian for Scientific Facilities Days Sylvestre Ledru / June 25, 2012 Debian for Scientific Facilities Days Sylvestre Ledru / June 25, 2012 Professional Services & Support for Scilab, Free Open Source Software for Numerical Computation Sylvestre Ledru Operation manager at

More information

Industrial IoT as enabler for digitization

Industrial IoT as enabler for digitization Industry 4.0 Conference The Digitalization of the Metals Industry May 9 th, 2017 Tata Steel IJmuiden, Netherlands - 20170501 Industrial IoT as enabler for digitization Henk Bruijns HPE Strategist and Chief

More information

Introduction to Parallel Programming in OpenMp Dr. Yogish Sabharwal Department of Computer Science & Engineering Indian Institute of Technology, Delhi

Introduction to Parallel Programming in OpenMp Dr. Yogish Sabharwal Department of Computer Science & Engineering Indian Institute of Technology, Delhi Introduction to Parallel Programming in OpenMp Dr. Yogish Sabharwal Department of Computer Science & Engineering Indian Institute of Technology, Delhi Lecture - 01 Introduction to Parallel Computing Architectures

More information

Richard Curran :Security Officer EMEA. Mario Romao : Senior Manager Policy, Intel

Richard Curran :Security Officer EMEA. Mario Romao : Senior Manager Policy, Intel Richard Curran :Security Officer EMEA Mario Romao : Senior Manager Policy, Intel Digital Convergence Across All Industries Traditional Economy Digital Convergence Blending of Traditional and Digital Business

More information

Enhancing Analysis-Based Design with Quad-Core Intel Xeon Processor-Based Workstations

Enhancing Analysis-Based Design with Quad-Core Intel Xeon Processor-Based Workstations Performance Brief Quad-Core Workstation Enhancing Analysis-Based Design with Quad-Core Intel Xeon Processor-Based Workstations With eight cores and up to 80 GFLOPS of peak performance at your fingertips,

More information

MPI Optimizations via MXM and FCA for Maximum Performance on LS-DYNA

MPI Optimizations via MXM and FCA for Maximum Performance on LS-DYNA MPI Optimizations via MXM and FCA for Maximum Performance on LS-DYNA Gilad Shainer 1, Tong Liu 1, Pak Lui 1, Todd Wilde 1 1 Mellanox Technologies Abstract From concept to engineering, and from design to

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

Fundamentals of Modeling with Simcenter 3D Robin Boeykens

Fundamentals of Modeling with Simcenter 3D Robin Boeykens Fundamentals of Modeling with Simcenter 3D Robin Boeykens robin.boeykens@siemens.com Realize innovation. 3D CAE for the digital twin Simcenter 3D Page 2 Simcenter 3D Engineering Desktop Simcenter 3D Engineering

More information

Advances of parallel computing. Kirill Bogachev May 2016

Advances of parallel computing. Kirill Bogachev May 2016 Advances of parallel computing Kirill Bogachev May 2016 Demands in Simulations Field development relies more and more on static and dynamic modeling of the reservoirs that has come a long way from being

More information

midas NFX 2017R1 Release Note

midas NFX 2017R1 Release Note Total Solution for True Analysis-driven Design midas NFX 2017R1 Release Note 1 midas NFX R E L E A S E N O T E 2 0 1 7 R 1 Major Improvements Midas NFX is an integrated finite element analysis program

More information

CAD TRENDS & CREO TECHNOLOGY ROADMAP. Paul Sagar VP, CAD Product Management

CAD TRENDS & CREO TECHNOLOGY ROADMAP. Paul Sagar VP, CAD Product Management CAD TRENDS & CREO TECHNOLOGY ROADMAP Paul Sagar VP, CAD Product Management MAJOR TRENDS Traditional product Additive Manufacturing Augmented Reality Connected Products development processes will fail companies

More information

Modernizing Healthcare IT for the Data-driven Cognitive Era Storage and Software-Defined Infrastructure

Modernizing Healthcare IT for the Data-driven Cognitive Era Storage and Software-Defined Infrastructure Modernizing Healthcare IT for the Data-driven Cognitive Era Storage and Software-Defined Infrastructure An IDC InfoBrief, Sponsored by IBM April 2018 Executive Summary Today s healthcare organizations

More information

HPC Considerations for Scalable Multidiscipline CAE Applications on Conventional Linux Platforms. Author: Correspondence: ABSTRACT:

HPC Considerations for Scalable Multidiscipline CAE Applications on Conventional Linux Platforms. Author: Correspondence: ABSTRACT: HPC Considerations for Scalable Multidiscipline CAE Applications on Conventional Linux Platforms Author: Stan Posey Panasas, Inc. Correspondence: Stan Posey Panasas, Inc. Phone +510 608 4383 Email sposey@panasas.com

More information

ACCELERATING CFD AND RESERVOIR SIMULATIONS WITH ALGEBRAIC MULTI GRID Chris Gottbrath, Nov 2016

ACCELERATING CFD AND RESERVOIR SIMULATIONS WITH ALGEBRAIC MULTI GRID Chris Gottbrath, Nov 2016 ACCELERATING CFD AND RESERVOIR SIMULATIONS WITH ALGEBRAIC MULTI GRID Chris Gottbrath, Nov 2016 Challenges What is Algebraic Multi-Grid (AMG)? AGENDA Why use AMG? When to use AMG? NVIDIA AmgX Results 2

More information

Introduction to Control Systems Design

Introduction to Control Systems Design Experiment One Introduction to Control Systems Design Control Systems Laboratory Dr. Zaer Abo Hammour Dr. Zaer Abo Hammour Control Systems Laboratory 1.1 Control System Design The design of control systems

More information

Energy Efficient Computing Systems (EECS) Magnus Jahre Coordinator, EECS

Energy Efficient Computing Systems (EECS) Magnus Jahre Coordinator, EECS Energy Efficient Computing Systems (EECS) Magnus Jahre Coordinator, EECS Who am I? Education Master of Technology, NTNU, 2007 PhD, NTNU, 2010. Title: «Managing Shared Resources in Chip Multiprocessor Memory

More information

Factsheet. Power Generation Service Energy efficiency in power generation and water

Factsheet. Power Generation Service Energy efficiency in power generation and water Factsheet Power Generation Service Energy efficiency in power generation and water Opportunity identification Opportunity identification overview The opportunity identification phase of Industrial Energy

More information

Using an HPC Cloud for Weather Science

Using an HPC Cloud for Weather Science Using an HPC Cloud for Weather Science Provided By: Transforming Operational Environmental Predictions Around the Globe Moving EarthCast Technologies from Idea to Production EarthCast Technologies produces

More information

Computational Fluid Dynamics PRODUCT SHEET

Computational Fluid Dynamics PRODUCT SHEET TM 2014 Computational Fluid Dynamics PRODUCT SHEET 1 Breaking Limitations The Challenge of Traditional CFD In the traditional mesh-based approach, the reliability highly depends on the quality of the mesh,

More information

Tuning Alya with READEX for Energy-Efficiency

Tuning Alya with READEX for Energy-Efficiency Tuning Alya with READEX for Energy-Efficiency Venkatesh Kannan 1, Ricard Borrell 2, Myles Doyle 1, Guillaume Houzeaux 2 1 Irish Centre for High-End Computing (ICHEC) 2 Barcelona Supercomputing Centre (BSC)

More information

Smart Data Center From Hitachi Vantara: Transform to an Agile, Learning Data Center

Smart Data Center From Hitachi Vantara: Transform to an Agile, Learning Data Center Smart Data Center From Hitachi Vantara: Transform to an Agile, Learning Data Center Leverage Analytics To Protect and Optimize Your Business Infrastructure SOLUTION PROFILE Managing a data center and the

More information

Joe Butler, Principal Engineer, Director Cloud Services Lab. Nov , OpenStack Summit Paris.

Joe Butler, Principal Engineer, Director Cloud Services Lab. Nov , OpenStack Summit Paris. Telemetry the foundation of intelligent cloud orchestration. Joe Butler, Principal Engineer, Director Cloud Services Lab. Nov 3 2014, OpenStack Summit Paris. http://sched.co/1xj2lm9 Datacenter Trends and

More information

Private Cloud Enterprise Edition

Private Cloud Enterprise Edition Riyadh, November 2016 Private Cloud Enterprise Edition Dave Heyns Group ITaaS accelerate your ambition Our clients face challenges balancing between the need to innovate / fund new business projects and

More information

Developing Optimization Algorithms for Real-World Applications

Developing Optimization Algorithms for Real-World Applications Developing Optimization Algorithms for Real-World Applications Gautam Ponnappa PC Training Engineer Viju Ravichandran, PhD Education Technical Evangelist 2015 The MathWorks, Inc. 1 2 For a given system,

More information

Modern Database Architectures Demand Modern Data Security Measures

Modern Database Architectures Demand Modern Data Security Measures Forrester Opportunity Snapshot: A Custom Study Commissioned By Imperva January 2018 Modern Database Architectures Demand Modern Data Security Measures GET STARTED Introduction The fast-paced, ever-changing

More information

Accelerate your Software Delivery Lifecycle with IBM Development and Test Environment Services

Accelerate your Software Delivery Lifecycle with IBM Development and Test Environment Services Accelerate your Software Delivery Lifecycle with IBM Development and Test Environment Services DevOps Best Practices for High-Performing Enterprises Enterprise capability for continuous software delivery

More information

Trends in CFD, Engineering Analysis & Computing. ME-561 An Introduction to Computational Fluid Dynamics for Incompressible Flow Mark A.

Trends in CFD, Engineering Analysis & Computing. ME-561 An Introduction to Computational Fluid Dynamics for Incompressible Flow Mark A. Trends in CFD, Engineering Analysis & Computing ME-561 An Introduction to Computational Fluid Dynamics for Incompressible Flow Mark A. Christon Trends in Computer-Aided Engineering Analysis 1965 1975:

More information

Powering Performance. Enhance business value and efficiency. Proposition series September 2017

Powering Performance. Enhance business value and efficiency. Proposition series September 2017 Powering Performance Enhance business value and efficiency Proposition series September 2017 Drive your business performance with energy Excellence in operations and effective cost management are key focus

More information

Scaling MATLAB. for Your Organisation and Beyond. Rory Adams The MathWorks, Inc. 1

Scaling MATLAB. for Your Organisation and Beyond. Rory Adams The MathWorks, Inc. 1 Scaling MATLAB for Your Organisation and Beyond Rory Adams 2015 The MathWorks, Inc. 1 MATLAB at Scale Front-end scaling Scale with increasing access requests Back-end scaling Scale with increasing computational

More information

Introducing a Cache-Oblivious Blocking Approach for the Lattice Boltzmann Method

Introducing a Cache-Oblivious Blocking Approach for the Lattice Boltzmann Method Introducing a Cache-Oblivious Blocking Approach for the Lattice Boltzmann Method G. Wellein, T. Zeiser, G. Hager HPC Services Regional Computing Center A. Nitsure, K. Iglberger, U. Rüde Chair for System

More information

AWS & Intel: A Partnership Dedicated to fueling your Innovations. Thomas Kellerer BDM CSP, Intel Central Europe

AWS & Intel: A Partnership Dedicated to fueling your Innovations. Thomas Kellerer BDM CSP, Intel Central Europe AWS & Intel: A Partnership Dedicated to fueling your Innovations Thomas Kellerer BDM CSP, Intel Central Europe The Digital Service Economy Growth in connected devices enables new business opportunities

More information

Transforming Utility Grid Operations with the Internet of Things

Transforming Utility Grid Operations with the Internet of Things Solution Brief Internet of Things Energy Industry Transforming Utility Grid Operations with the Internet of Things Access key process data in real time to increase situational awareness of grid operations.

More information

Your Data Center is Everywhere. Unified Computing System Data Center Campaign Overview Marketing Cheat Sheet

Your Data Center is Everywhere. Unified Computing System Data Center Campaign Overview Marketing Cheat Sheet Your Data Center is Everywhere Unified Computing System Data Center Campaign Overview Marketing Cheat Sheet April 2015 Unified Computing System Data Center Campaign What is UCS? Customer Drivers Buyer

More information

MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape

MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape SimPowerSystems SimMechanics SimHydraulics SimDriveline SimElectronics MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape Simscape MATLAB, Simulink September 13, 2012

More information

Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans

Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans Recent Advances in Modelling Wind Parks in STAR CCM+ Steve Evans Introduction Company STAR-CCM+ Agenda Wind engineering at CD-adapco STAR-CCM+ & EnviroWizard Developments for Offshore Simulation CD-adapco:

More information

Performance Benefits of NVIDIA GPUs for LS-DYNA

Performance Benefits of NVIDIA GPUs for LS-DYNA Performance Benefits of NVIDIA GPUs for LS-DYNA Mr. Stan Posey and Dr. Srinivas Kodiyalam NVIDIA Corporation, Santa Clara, CA, USA Summary: This work examines the performance characteristics of LS-DYNA

More information

Innovating the Future of Flight. HPCXXL Conference April 2019

Innovating the Future of Flight. HPCXXL Conference April 2019 Innovating the Future of Flight HPCXXL Conference April 2019 Content Introduction to Aircraft Business Driver for HPC in Aircraft Industry Current HPC /Grid Infrastructure Current Limitations Upcoming

More information

Introduction of the Industrial Internet Consortium. May 2016

Introduction of the Industrial Internet Consortium. May 2016 Introduction of the Industrial Internet Consortium May 2016 An Open Membership Consortium now 250 companies strong May 26, 2016 2 IIC Founders, Contributing Members, & Large Industry Members IIC Founding

More information

imaginit.com/simulation Complete and robust mechanical simulation solution

imaginit.com/simulation Complete and robust mechanical simulation solution imaginit.com/simulation Complete and robust mechanical simulation solution A mechanical simulation solution for finite imaginit.com/simulation element analysis powered by the Autodesk Nastran solver Accurately

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

Thrive in today's digital economy

Thrive in today's digital economy Thrive in today's digital economy "Connectivity redefines everything, and we have believed in its transformative power for decades. Fifty years ago, we integrated intelligence in machines and automated

More information

Thrive in today's digital economy

Thrive in today's digital economy Thrive in today's digital economy TABLE OF CONTENTS "Connectivity redefines everything, and we have believed in its transformative power for decades. Fifty years ago, we integrated intelligence in machines

More information

Ido Sarig, General Manager, IOT Solutions Group DELIVERING END-TO-END INTELLIGENCE FOR THE INTERNET OF THINGS

Ido Sarig, General Manager, IOT Solutions Group DELIVERING END-TO-END INTELLIGENCE FOR THE INTERNET OF THINGS Ido Sarig, General Manager, IOT Solutions Group DELIVERING END-TO-END INTELLIGENCE FOR THE INTERNET OF THINGS Why is the internet of things inevitable? More than two billion gallons of fuel are wasted

More information

Complete and robust mechanical simulation solution. imaginit.com/simulation-mechanical

Complete and robust mechanical simulation solution. imaginit.com/simulation-mechanical Complete and robust mechanical simulation solution A mechanical simulation solution for finite element analysis powered by the Autodesk Nastran solver Accurately predict product behavior, optimize and

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

Challenges Simulating Real Fuel Combustion Kinetics: The Role of GPUs

Challenges Simulating Real Fuel Combustion Kinetics: The Role of GPUs Challenges Simulating Real Fuel Combustion Kinetics: The Role of GPUs M. J. McNenly and R. A. Whitesides GPU Technology Conference March 27, 2014 San Jose, CA LLNL-PRES-652254! This work performed under

More information

Fast Hardware For AI

Fast Hardware For AI Fast Hardware For AI Karl Freund karl@moorinsightsstrategy.com Sr. Analyst, AI and HPC Moor Insights & Strategy Follow my blogs covering Machine Learning Hardware on Forbes: http://www.forbes.com/sites/moorinsights

More information

Optimizing LS-DYNA Productivity in Cluster Environments

Optimizing LS-DYNA Productivity in Cluster Environments 10 th International LS-DYNA Users Conference Computing Technology Optimizing LS-DYNA Productivity in Cluster Environments Gilad Shainer and Swati Kher Mellanox Technologies Abstract Increasing demand for

More information

Protect Your Data At Every Point Possible. Reduce risk while controlling costs with Dell EMC and Intel #1 in data protection 1

Protect Your Data At Every Point Possible. Reduce risk while controlling costs with Dell EMC and Intel #1 in data protection 1 Protect Your Data At Every Point Possible Reduce risk while controlling costs with Dell EMC and Intel #1 in data protection 1 Transform IT to protect your data in the digital era As the growth, mobility

More information

Recent Developments and Roadmap Part 0: Introduction. 12 th International LS-DYNA User s Conference June 5, 2012

Recent Developments and Roadmap Part 0: Introduction. 12 th International LS-DYNA User s Conference June 5, 2012 Recent Developments and Roadmap Part 0: Introduction 12 th International LS-DYNA User s Conference June 5, 2012 1 Outline Introduction Recent developments. See the separate PDFs for: LS-PrePost Dummies

More information

Particleworks: Particle-based CAE Software fully ported to GPU

Particleworks: Particle-based CAE Software fully ported to GPU Particleworks: Particle-based CAE Software fully ported to GPU Introduction PrometechVideo_v3.2.3.wmv 3.5 min. Particleworks Why the particle method? Existing methods FEM, FVM, FLIP, Fluid calculation

More information

21ST century enterprise. HCL Technologies Presents. Roadmap for Data Center Transformation

21ST century enterprise. HCL Technologies Presents. Roadmap for Data Center Transformation 21ST century enterprise HCL Technologies Presents Roadmap for Data Center Transformation june 2016 21st Century Impact on Data Centers The rising wave of digitalization has changed the way IT impacts business.

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

Building NVLink for Developers

Building NVLink for Developers Building NVLink for Developers Unleashing programmatic, architectural and performance capabilities for accelerated computing Why NVLink TM? Simpler, Better and Faster Simplified Programming No specialized

More information

The Integrated Smart & Security Platform Powered the Developing of IOT

The Integrated Smart & Security Platform Powered the Developing of IOT The Integrated Smart & Security Platform Powered the Developing of IOT We Are Entering A New Era- 50million connections Smart-Healthcare Smart-Wearable VR/AR Intelligent Transportation Eco-Agriculture

More information

How to Keep UP Through Digital Transformation with Next-Generation App Development

How to Keep UP Through Digital Transformation with Next-Generation App Development How to Keep UP Through Digital Transformation with Next-Generation App Development Peter Sjoberg Jon Olby A Look Back, A Look Forward Dedicated, data structure dependent, inefficient, virtualized Infrastructure

More information

High-performance Randomized Matrix Computations for Big Data Analytics and Applications

High-performance Randomized Matrix Computations for Big Data Analytics and Applications jh160025-dahi High-performance Randomized Matrix Computations for Big Data Analytics and Applications akahiro Katagiri (Nagoya University) Abstract In this project, we evaluate performance of randomized

More information

Femap and LS-DYNA: Rocket Science Made Easy

Femap and LS-DYNA: Rocket Science Made Easy George Laird, Ph.D., P.E., Principal Mechanical Engineer Adrian Jensen, EIT, Sr. Staff Mechanical Engineer Femap and LS-DYNA: Rocket Science Made Easy Femap Symposium 2014 May 14-16, Atlanta, GA, USA Unrestricted

More information

Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer

Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer Parallel and Distributed Computing with MATLAB Gerardo Hernández Manager, Application Engineer 2018 The MathWorks, Inc. 1 Practical Application of Parallel Computing Why parallel computing? Need faster

More information

Intel & Cisco Relationship. Nikos Botinis Regional Sales Manager Cisco Systems

Intel & Cisco Relationship. Nikos Botinis Regional Sales Manager Cisco Systems Intel & Cisco Relationship Nikos Botinis Regional Sales Manager Cisco Systems 1 Long History of Collaboration Unified Computing System UCS E Series Router Module Routers, Switches, Security Appliances,

More information

MATLAB. Senior Application Engineer The MathWorks Korea The MathWorks, Inc. 2

MATLAB. Senior Application Engineer The MathWorks Korea The MathWorks, Inc. 2 1 Senior Application Engineer The MathWorks Korea 2017 The MathWorks, Inc. 2 Data Analytics Workflow Business Systems Smart Connected Systems Data Acquisition Engineering, Scientific, and Field Business

More information

Featured Articles AI Services and Platforms A Practical Approach to Increasing Business Sophistication

Featured Articles AI Services and Platforms A Practical Approach to Increasing Business Sophistication 118 Hitachi Review Vol. 65 (2016), No. 6 Featured Articles AI Services and Platforms A Practical Approach to Increasing Business Sophistication Yasuharu Namba, Dr. Eng. Jun Yoshida Kazuaki Tokunaga Takuya

More information

Enabling SMEs to benefit from HPC based OpenFOAM simulation services Carmen Cotelo, CESGA

Enabling SMEs to benefit from HPC based OpenFOAM simulation services Carmen Cotelo, CESGA Enabling SMEs to benefit from HPC based OpenFOAM simulation services Carmen Cotelo, CESGA fortissimo@cesga.es 2nd Iberian meeting of OpenFOAM technology users. Santiago de Compostela 28-29 May 2018 1 Fortissimo

More information

HP Update. Bill Mannel VP/GM HPC & Big Data Business Unit Apollo Servers

HP Update. Bill Mannel VP/GM HPC & Big Data Business Unit Apollo Servers Update Bill Mannel VP/GM C & Big Data Business Unit Apollo Servers The most exciting shifts of our time are underway Cloud Security Mobility Time to revenue is critical Big Data Decisions must be rapid

More information

OPENING THE DOOR TO THE SMART CITY KEY PRIORITIES AND PROVEN BEST PRACTICES FROM MAJOR CITIES WORLDWIDE

OPENING THE DOOR TO THE SMART CITY KEY PRIORITIES AND PROVEN BEST PRACTICES FROM MAJOR CITIES WORLDWIDE OPENING THE DOOR TO THE SMART CITY KEY PRIORITIES AND PROVEN BEST PRACTICES FROM MAJOR CITIES WORLDWIDE By 2030, 60 percent of the world s population will live in cities. As these cities get even larger

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

Energy Productivity. Dr Nick Regan GDF SUEZ ENERGY SERVICES - COFELY 04/2014

Energy Productivity. Dr Nick Regan GDF SUEZ ENERGY SERVICES - COFELY 04/2014 Energy Productivity Dr Nick Regan GDF SUEZ ENERGY SERVICES - COFELY 04/2014 Cofely GDF Suez 82B (A$100B) in 2012 revenues. A presence in close to 50 countries. 146,200 employees throughout the world -

More information

Data Centres: The Infrastructure That Underpins The Cloud. May 2017

Data Centres: The Infrastructure That Underpins The Cloud. May 2017 Data Centres: The Infrastructure That Underpins The Cloud May 2017 Cloud computing is redefining the way that IT services are accessed and delivered On Demand, Self-Service Characteristics Pay-as-you-use,

More information

MSC Nastran Explicit Nonlinear (SOL 700) on Advanced SGI Architectures

MSC Nastran Explicit Nonlinear (SOL 700) on Advanced SGI Architectures MSC Nastran Explicit Nonlinear (SOL 700) on Advanced SGI Architectures Presented By: Dr. Olivier Schreiber, Application Engineering, SGI Walter Schrauwen, Senior Engineer, Finite Element Development, MSC

More information

HPC future trends from a science perspective

HPC future trends from a science perspective HPC future trends from a science perspective Simon McIntosh-Smith University of Bristol HPC Research Group simonm@cs.bris.ac.uk 1 Business as usual? We've all got used to new machines being relatively

More information

Logicalis What we do

Logicalis What we do Logicalis What we do Logicalis What we do Logicalis is an international IT solutions and managed services provider with a breadth of knowledge and expertise in Communications and Collaboration, Business

More information

We make hybrid cloud deliver the business outcomes you require

We make hybrid cloud deliver the business outcomes you require We make hybrid cloud deliver the business outcomes you require Leverage the optimum venues for your applications and workloads and accelerate your transformation as a digital business The business outcomes

More information

White Paper: VANTIQ Digital Twin Architecture

White Paper: VANTIQ Digital Twin Architecture Vantiq White Paper www.vantiq.com White Paper: VANTIQ Digital Twin Architecture By Paul Butterworth November 2017 TABLE OF CONTENTS Introduction... 3 Digital Twins... 3 Definition... 3 Examples... 5 Logical

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

Oracle Developer Studio 12.6

Oracle Developer Studio 12.6 Oracle Developer Studio 12.6 Oracle Developer Studio is the #1 development environment for building C, C++, Fortran and Java applications for Oracle Solaris and Linux operating systems running on premises

More information

ANSYS Improvements to Engineering Productivity with HPC and GPU-Accelerated Simulation

ANSYS Improvements to Engineering Productivity with HPC and GPU-Accelerated Simulation ANSYS Improvements to Engineering Productivity with HPC and GPU-Accelerated Simulation Ray Browell nvidia Technology Theater SC12 1 2012 ANSYS, Inc. nvidia Technology Theater SC12 HPC Revolution Recent

More information

IBM Cloud for VMware Solutions

IBM Cloud for VMware Solutions Introduction 2 IBM Cloud IBM Cloud for VMware Solutions Zeb Ahmed Senior Offering Manager VMware on IBM Cloud Mehran Hadipour Director Business Development - Zerto Internal Use Only Do not distribute 3

More information

Radial Basis Function-Generated Finite Differences (RBF-FD): New Opportunities for Applications in Scientific Computing

Radial Basis Function-Generated Finite Differences (RBF-FD): New Opportunities for Applications in Scientific Computing Radial Basis Function-Generated Finite Differences (RBF-FD): New Opportunities for Applications in Scientific Computing Natasha Flyer National Center for Atmospheric Research Boulder, CO Meshes vs. Mesh-free

More information

CODE Product Solutions

CODE Product Solutions CODE Product Solutions Simulation Innovations Glass Fiber Reinforced Structural Components for a Group 1 Child Harold van Aken About Code Product Solutions Engineering service provider Specialised in Multiphysics

More information

Hybrid KAUST Many Cores and OpenACC. Alain Clo - KAUST Research Computing Saber Feki KAUST Supercomputing Lab Florent Lebeau - CAPS

Hybrid KAUST Many Cores and OpenACC. Alain Clo - KAUST Research Computing Saber Feki KAUST Supercomputing Lab Florent Lebeau - CAPS + Hybrid Computing @ KAUST Many Cores and OpenACC Alain Clo - KAUST Research Computing Saber Feki KAUST Supercomputing Lab Florent Lebeau - CAPS + Agenda Hybrid Computing n Hybrid Computing n From Multi-Physics

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

USING DEVICE LIFECYCLE MANAGEMENT TO FUTURE PROOF YOUR IOT DEPLOYMENT

USING DEVICE LIFECYCLE MANAGEMENT TO FUTURE PROOF YOUR IOT DEPLOYMENT USING DEVICE LIFECYCLE MANAGEMENT TO FUTURE PROOF YOUR IOT DEPLOYMENT Tom Gibbings Market Development Manager 2017 WIND RIVER. ALL RIGHTS RESERVED. IOT IS CHANGING HOW WE LIVE AND WORK 2 2017 WIND RIVER.

More information

Integrate MATLAB Analytics into Enterprise Applications

Integrate MATLAB Analytics into Enterprise Applications Integrate Analytics into Enterprise Applications Aurélie Urbain MathWorks Consulting Services 2015 The MathWorks, Inc. 1 Data Analytics Workflow Data Acquisition Data Analytics Analytics Integration Business

More information

CSCS CERN videoconference CFD applications

CSCS CERN videoconference CFD applications CSCS CERN videoconference CFD applications TS/CV/Detector Cooling - CFD Team CERN June 13 th 2006 Michele Battistin June 2006 CERN & CFD Presentation 1 TOPICS - Some feedback about already existing collaboration

More information

Improve Your Manufacturing With Insights From IoT Analytics

Improve Your Manufacturing With Insights From IoT Analytics Improve Your Manufacturing With Insights From IoT Analytics Accelerated Time to Value With a Prebuilt, Future-Proof Solution Dr. Zack Pu Offering Manager, Industrial IoT Hitachi Vantara Dr. Wei Yuan Senior

More information

CYLON ACTIVE ENERGY ENGINEERS IRELAND CONFERENCE 1 ST OCTOBER 2013 OVERVIEW 2013

CYLON ACTIVE ENERGY ENGINEERS IRELAND CONFERENCE 1 ST OCTOBER 2013 OVERVIEW 2013 CYLON ACTIVE ENERGY ENGINEERS IRELAND CONFERENCE 1 ST OCTOBER 2013 CYLON A GLOBAL PRESENCE 28 years in operation 150 approved system integrators internationally 1.5 of partner installations globally 30%

More information

Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems

Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems Designing and Analysing Power Electronics Systems Using Simscape and SimPowerSystems Gernot Schraberger Industry Manager, Europe Industrial Automation & Machinery, Energy Production MathWorks 2012 The

More information

Munara Tolubaeva Technical Consulting Engineer. 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries.

Munara Tolubaeva Technical Consulting Engineer. 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries. Munara Tolubaeva Technical Consulting Engineer 3D XPoint is a trademark of Intel Corporation in the U.S. and/or other countries. notices and disclaimers Intel technologies features and benefits depend

More information