Code-Aster parallel performance benchmark: a comparison with Abaqus

Size: px
Start display at page:

Download "Code-Aster parallel performance benchmark: a comparison with Abaqus"

Transcription

1 Code-Aster parallel performance benchmark: a comparison with Abaqus J. Cugnoni, LMAF EPFL, Switzerland, 7-05, joel.cugnoni@epfl.ch based on the models developed by D. Comment during his Master Georg Fisher AG Introduction This document aims at presenting an overview of the performance of Code-Aster in parallel computation running on a High Performance Computing (HPC) infrastructure. The performance of Code-Aster.7 (stable version at the date of writing) will be compared to the commercial FE solver Abaqus v6.3 running on the same HPC cluster. To compare with a commercial solver such as Abaqus in which all optimization solutions are typically used, particular attention has been devoted to compile Code-Aster with the latest Intel compiler suite (Intel C/C++/Fortran compiler 5.0. with Intel MKL Math libraries). Moreover, to benefit from the parallelism, Code-Aster was compiled with MPI parallelism (linked to Intel MPI library) for both MUMPS and PETSC solvers. The compilation script for that particular installation is given in appendix. These benchmarks have been executed on EPFL HPC infrastructure using between to CPUs on a single node in order to get an unbiased estimation of the performance without effects of interconnects (regular 0Gb Ethernet for this cluster). Each job has been monitored to make sure that no memory swap or other concurrent processes where running during the benchmark. This work is carried out in a pure Academic research context, without support from industry, with the goal of evaluating the performance of Code-Aster for research applications at LMAF/EPFL. Hardware & operating system Code-Aster was compiled on the so-called Caster HPC cluster at EPFL ( This cluster is configured with Redhat 6 x6_6 and uses the SLURM job scheduler (with hwloc) to run mostly serial jobs in which only one node is used for the calculation. The cluster consists of 50 nodes of dual Xeon 650v3 servers, corresponding to x CPUs and 6Gb DDR RAM per node. The interconnect is 0Gb Ethernet and is used only for user data storage on NFS. A local high speed scratch disk is used for temporary file storage. The benchmark is executed on a single node through SLURM scheduler and a reserved memory of 55 Gb is requested to avoid any swap or concurrent job issues. /

2 Code-Aster.7 is compiled with Intel 5.0. compilers, MKL and Intel MPI libraries (including Intel Scalapack functions) directly on the cluster using regular -O3 optimization flags(no specific optimization flag used for those machines). Abaqus v6.3 was already installed on the cluster but as Platform MPI library was found incompatible with the current version of SLURM only thread level parallelism was used for Abaqus. It should be however noted that Abaqus direct solver with thread level parallelism performs equally well as with MPI when running on a single machine (same overall solver algorithms, with parallelism of both element calculations and linear system solution). A very important point to note for performance comparison is that the latest generation of Intel Xeon processors, such as the Xeon 650v3 used here, are using very aggressive frequency scalings to maximize performance while remaining inside their maximum thermal dissipation envelope. This means that a single CPU job running on an isolated node will most probably run at the max turbo frequency of the CPU (3GHz for the 650v3) while a CPU job will run at a frequency closer or lower than the base CPU clock (.3Ghz here). This means that comparing the simulation times obtained with different number of CPUs does not entirely reflect the scaling of the algorithm but it gives a lower estimate. Benchmark case: simulation of an elasto-plastic tensile test The benchmark test case consists in a simulation of the elasto-plastic response of a cylindrical tensile test specimen. These test cases have been kindly provided by Georg Fisher AG and result from the master project of D. Comment (0). The specimen geometry correspond to German standard DIN 505: with a length of 60mm and min/max diameters of 6 and 0mm respectively. Figure : full specimen geometry (*courtesy of D. Comment) To account for symmetries, the FE model corresponds only to /th of the full specimen and uses thus several symmetry conditions (I.e zero normal displacement) which add a significant number of Lagrange multipliers to the system. The mesh has been generated in Abaqus CAE using the default tetrahedral meshing algorithm and uses 0 node quadratic tetrahedral elements (C3D0). Two uniform mesh sizes have been considered: 0. and 0.35 mm. The Abaqus model was exported as flat Input format (INP) and was converted to Code-Aster format using Calculix CGX preprocessor. Thus the FE meshes used in both solvers are strictly identical. Loading is simulated by imposing a uniform longitudinal displacement ramp on the loading face up to.75 mm corresponding to up to 6% eng. /

3 strain in the gage length of the specimen. An overview of the mesh and boundary conditions is shown in Fig.. Mesh statistics Figure : FE mesh of the problem and boundary conditions (*) Case A: small mesh Uniform mesh size = 0.35 mm 39'096 quadratic tetrahedral elements 6'976 nodes '9 DOFS in Abaqus * 5' DOFS in Aster * Case B: larger mesh Uniform mesh size = 0.0 mm '609 quadratic tetrahedral elements 93' nodes 76'363 DOFS in Abaqus * 977'365 DOFS in Aster * (*incuding Lagrange) The material is modeled as isotropic elasto-plastic with Von-Mises isotropic hardening implemented in a tabular form (TRACTION & VMIS_ISOT_TRAC in Code-Aster). Large deformation analysis is performed in both Abaqus (NLGEOM active: incremental lagrangian formulation with logarithmic strain) and Code-Aster (Simo-Miehe large strain formulation). Loading is performed over an arbitrary time of s with a minimum time step of 0., leading to a minimum of 5 increments during loading. The default solver options are used in Abaqus (adaptive time stepping, default direct solver and Newton algorithm). For Code-Aster, the solution is performed using the Newton algorithm with updated tangent stiffness matrix used for prediction and correction (REAC_ITER=, PREDICTION='TANGENTE', MATRICE='TANGENTE') with a maximum of 0 iterations before time step cut back. The default automatic time stepping strategy of Aster is also used, but it has been verified that in Aster these simulations do not require subdivisions of time steps. In Aster, three different linear solvers are used: 3/

4 a) MULT_FRONT, a standard multifrontal solver with loop level parallelism (through OpenMP). b) MUMPS, a high performance parallel direct solver using MPI parallelism. A distributed, in-core, matrix storage is used here. c) PETSC, a high performance iterative solver (conjugate gradient type) with a single precision factored matrix (LDLT_SP, using MUMPS) as pre-conditionner. In the present case, the preconditionner is computed at each Newton iteration, but a further performance boost might be achieved by choosing a less frequent update strategy. It should be noted that in case a), Code-Aster does not benefit from any other type of parallelism, for example, in the element calculations and thus a relatively limited scaling is to be expected for MULT_FRONT solver. On the contrary, when using MUMPS or PETSC, Code-Aster runs in domain decomposition mode and most of the time consuming tasks are performed in parallel, including element calculations. Thus solvers b) & c) are expected to provide much better scaling when used on many CPUs. It should be noted that the default solver of Abaqus and MUMPS are both direct solvers and thus should be fairly comparable in terms of robustness. On the other hand, PETSC with LDLT_SP is using a potentially more efficient iterative solution technique which may however fail in certain badly conditioned systems (and also is incompatible with contacts at the moment). In all cases, the default convergence tolerances have been used. In terms of output, all solvers have been verified to give identical results, so accuracy will not be discussed in the present document. Performance results The solver performance is simply measured by the wall clock time spent for the execution of the full job. The wall clock time is obtained directly from the message files of Code-Aster and Abaqus. In should be noted that Abaqus does not compute all post-processed variables during the problem resolution. On the contrary Code-Aster computes all post processing variables at the end of the job and thus might spend more time. To counter balance this, the time spent in the Newton solver step is also extracted for Code-Aster and compared with Abaqus. Finally, the solution times for to CPUs are presented in the tables here after: Case A: small mesh ~00kDOFs Total run time = total elapsed time for the run ( in s) CPUs Abaqus Aster MUMPS Aster PETSC Aster MULT_FRONT /

5 Solver time = total elapsed time for the solver only ( in s) Aster MUMPS Aster PETSC Aster MULT_FRONT Case B: larger mesh ~900kDOFs Total run time = total elapsed time for the run ( in s) CPU Abaqus Aster MUMPS Aster PETSC Solver time = total elapsed time for the solver only ( in s) Aster MUMPS Aster PETSC Abaqus Aster MUMPS Aster PETSC Aster MULT_FRONT Figure 3: Total solution time for small case (A) as a function of number of CPUs ( to ) 5/

6 Abaqus Aster MUMPS Aster PETSC Figure : Total simulation time for large model (B) as a function of number of CPUs ( to ) Result overview A first look at the results in Fig 3 & shows that the performance of Code-Aster depends strongly on the chosen solver but is overall in the same range as that of an highly optimized commercial solver like Abaqus. As expected the MULT_FRONT solver does not show interesting parallel performance and is thus recommended for HPC use. On the contrary, MUMPS and PETSC / LDLT_SP lead to a relatively good scaling. Thus, for large scale computation, it is strongly recommended to perform a custom installation of Code-Aster with MPI versions of MUMPS and PETSC solvers. Very interestingly, the best performance for large jobs is achieved using Code-Aster with PETSC/LDLT_SP solver on CPUs in which Code-Aster is actually 7% faster than Abaqus on CPUs. Overall, in large elasto-plastic problems using relatively homogeneous 3D continuum elements, the iterative PETSC solver appears much faster than any of the direct solvers (Abaqus or Code-Aster MUMPS). However, it should be noted that iterative solvers are more sensitive to matrix conditioning and are less robust than direct Cholesky type solvers. Moreover, due to its nature, the iterative PETSC solver in Code-Aster is not appropriate for contact simulation which further limits its use. Despite that, when the problem allows, it is strongly recommended to use PETSC solver with the LDLT_SP preconditionner. It should also be noted that PETSC solver on a single CPU is actually faster than the direct solver of Abaqus on CPUs in the case of large jobs. PETSC appears also much more appropriate for even larger simulations as it scales very well with the increase of model size. For the two models A & B considered here, which correspond to an increase in model size of a factor of.5, the different solvers show a respective increase of simulation time by a factor of 9., 0.7 and 6.9 for Abaqus, Aster/MUMPS and 6/

7 Aster/PETSC (power law exponents of.5,.57 and. resp). If we limit our comparison to direct solvers, the performance of Aster/MUMPS vs Abaqus remains relatively comparable for jobs using to CPUs, with a performance advantage for Abaqus in the order of 30 to 50%. However, as the number of CPUs increases, the performance of MUMPS appear to stagnate faster than the direct solver of Abaqus and does not compete so well here. It should however be noted that the type and performance of the local scratch disk and the time spent for local interconnect remains difficult to estimate and that no machine specific optimization was used for the installation of Code-Aster. Looking at the tradeoff of hardware cost vs licence cost, we can note that the performance of Aster/MUMPS solver with CPUs is roughly equivalent to Abaqus with CPUs. Scaling and comparative analysis To compare those results, we adopt two different points of view. Firstly, the scaling of each solver is evaluated on its own and discussed. Secondly, the performance of the different Code-Aster solvers is compared with respect to Abaqus considering as reference either the solution time using a single CPU or the same amount of CPUs. In the following, the relative performance R is evaluated as : R (solver, ncpus, case) = T_reference / T(solver, ncpus, case) where T_reference represents the reference solution time used as a basis for comparison and T(solver,ncpus,case) is the (total) solution time corresponding to a given solver, number of cpus and simulation case (model size A or B). Solver parallel scaling analysis In this comparison, we want to evaluate how a given solver scales when increasing the number of CPUs. Thus the reference for comparison is the solution time using a single CPU for the same solver and case Abaqus Aster MUMPS Aster PETSC Aster MULT_FRONT 7/

8 Figure 5: scaling of performance (T_cpu/T_ncpus) for small case A (00k DOFs) Abaqus Aster MUMPS Aster PETSC Figure 6: scaling of performance (T_cpu/T_ncpus) for large case B (900k DOFs) From the graphs in Fig 5 & 6, we note that Aster/MUMPS shows a good scaling of up to 5.3 for CPUs in large jobs, but Abaqus solver remains more efficient here with a scaling of up to 9.6 for CPUs. Although very fast in absolute value, the scaling of PETSC/LDLT_SP solver seem to stagnate after to CPUs for models smaller than M DOFs, which also suggests that PETSC is a particularly appropriate solver for very large jobs. In terms of performance vs cluster resource allocation, the optimal number of CPUs can be estimated as follows (considering a limit of CPUs and a single machine): Solver Small jobs (00kDofs) Medium jobs (<MDofs) Large jobs (> MDofs) Abaqus to to (*) Aster / MUMPS (*) Aster / PETSC to max to to (*) (* if within memory limits to run in core ) Aster vs Abaqus comparison To evaluate the advantages / disadvantages of using Code-Aster from a pure performance perspective (no cost comparison here), the performance results of Aster are compared with respect to their equivalent simulations in Abaqus using the same number of CPUs. In the figures below, a time ratio below 00% corresponds to a faster solution time wrt to Abaqus while a value larger than 00% corresponds to a slower resolution. /

9 350% 300% 50% 00% 50% 00% 50% 0% Abaqus Aster MUMPS Aster PETSC Figure 7: simulation time ratio with respect to Abaqus 6.3 (same number of CPUs), small model A 300% 50% 00% 50% 00% 50% 0% Abaqus Aster MUMPS Aster PETSC Figure : simulation time ratio with respect to Abaqus 6.3 (same number of CPUs), larger model B The results show clearly the same trend as discussed previously: when PETSC/LDLT_SP solver can be used in Code-Aster, the Code-Aster is indeed much faster than Abaqus, with solution time down to less than 5% of Abaqus. However, when MUMPS has to be used, a slower solution in Code-Aster is to be expected, in the order of.5 to. times longer than in Abaqus for to CPUs. For the models considered here, using MUMPS with CPUs does not seem so advantageous. As it is very often the case in commercial use of FEA, the actual limitation for computation in HPC is related to the number (and thus cost) of licences. Although a bit artificial, we will considering now a second comparison scenario in which the number of available licence limits the use of Abaqus with only CPU per job and we will highlight the relative performance of the different solvers when 9/

10 compared to an Abaqus job running on CPU only Abaqus Aster MUMPS Aster PETSC Figure 9: relative performance wrt Abaqus CPU, small model A Abaqus Aster MUMPS Aster PETSC Figure 0: relative performance (higher the better) wrt Abaqus CPU, larger model B According to Fig 9 & 0, it is very clear that whenever Aster/PETSC solver can be used a very significant gain of simulation time (up to 3 times faster than single CPU Abaqus job) can be achieved even with a limited number of CPUs (0x speed up for CPUs already). Concerning MUMPS, despite its lower intrinsic performance and scaling wrt Abaqus, a benefit in term of simulation time is still achievable wrt to a single CPU Abaqus job when running it on a large number of CPUs. If the resources allow for typically CPUs per Abaqus jobs, then Aster/MUMPS solver provides roughly equivalent simulation times using CPUs but without licencing costs. If the number of licences is not very restrictive, which is more the case of academic research use, the use of Aster/MUMPS solver over Abaqus is not justified from a pure performance perspective. The advantage of using Code-Aster in this case is mostly to remain free of implementing (and checking) whatever 0/

11 algorithm / model formulation that might be of interest. However, using Aster/PETSC for very large jobs, such as RVE-based homogenization for example, seems a very promising option, especially if we consider that alternative (ie even more efficient) preconditionner updating strategies could be used for even larger speed ups. Intrinsic solver performance Finally, the intrinsic performance of the solver in terms of time per Newton iteration is estimated (within the limits imposed by the CPU frequency scaling effects mentionned previously). In the present case, each Newton iteration corresponds to the assembly and resolution of a full linear system and thus represents well the combination of the core performance of the linear solvers and the efficiency of the element / constitutive law calculations. The number of Newton increments and iterations are summarized here after: Solver & Model Number of increments Number of iterations Abaqus, Small Case A 7 3 Aster, Small Case A (*) 5 5 Abaqus, Large Case B 35 Aster, Large Case A (*) 5 5 (* for all solvers ) In the present benchmark, Abaqus performed a few minor time step cut backs leading to a maximum of increments and a total of 35 Newton iterations, while Code-Aster took only 5 increments (minimum required by minimum time step) corresponding to a total of 5 Newton iterations for all solver used Abaqus Aster MUMPS Aster PETSC Aster MULT_FRONT Figure : time per Newton iteration (in s), small model A /

12 Abaqus Aster MUMPS Aster PETSC Figure : time per Newton iteration (in s), larger model B As mentioned previously, it is clear from those results that, using the default settings and without specific machine optimization, the MUMPS solver used in Aster is not exactly on par with Abaqus implementation as it is spending about x more time per iteration. However, it is important to note that many options exist in MUMPS and none of them have been tuned in that case. Moreover, machine specific compiler optimization options or better OS configuration or execution options might improve those figures. Again, here it is very clear that the PETSC iterative solver with LDLT_SP (single precision MUMPS factorization) is a much more efficient than all the direct solvers considered here (Abaqus & Aster MUMPS/MULT_FRONT). Conclusion Even though this study, as any benchmark, is obviously only representative of the test case considered, very value informations can be drawn considering the performance of Code-Aster parallel solvers. First of all, among all solvers, PETSC with LDLT_SP preconditionner is the most efficient option and provides significant performance speed up even with respect to a very well optimized commercial solver such as Abaqus. However, PETSC/LDLT_SP iterative solver approach limits its use to well conditionned problems, without contacts, for which the single precision factored matrix can be computed and is a good approximation of the real inverse. It is thus ideal in large elasto-plastic 3D continuum problems without localization and instabilities such as the problems considered in this benchmark. Other precondionner could also be used, if LDLT_SP preconditionner fails but these options have not been considered here. Despite showing slower performance in absolute values, Code-Aster / MUMPS option remains competitive with Abaqus if licence usage limits the number of CPUs used. In the present case, which represents a non optimized situation using the default options of the solvers, the MUMPS solver is about x slower than Abaqus and its scaling is not as good. It is however expected that turning off some /

13 matrix pre/post processing options or using another profiler / domain decomposition algorithm could improve the performance of MUMPS. Within the limitations mentionned previously, this study has shown that the performance of Code-Aster.7 (stable version), compiled with MUMPS and PETSC support with Intel tools and math/mpi libraries, shows excellent parallel computation performance that are overall comparable to Abaqus which is considered one of the best performing non-linear parallel FEA solver available today. Appendix In the attached archive AsterAbaqusBenchmark.tar.gz, the following informations can be found (folder structure): / (root of archive) - compile_intel_mpi.sh : fully automatic Code-Aster compilation script with all options - PerfHPC_c.ods: LibreOffice spreadsheet with all results (not perfectly clean... sorry ) - HPC_Benchmark-CodeAster-Abaqus-v..odt &.pdf: the present report - IntelVars.sh : script to load environment for the Intel compilers & libraries / Benchmark / /Small_Model_A_035mm/ /Abaqus/ /Aster/ inp: Abaqus input file (mesh + materials + loading etc..) - ABQ*.run files: SLURM job scripts, contains the job execution command lines and memory/ cpu allocation limits, naming scheme: ABQ.run is for CPUs -.dat,.msg,.sta files: message files corresponding to pre-processor, solver and iteration stats med: MED mesh file - testmumps.comm, testmultfront.comm. TestPETSC.comm: Code-aster command files, including loading, materials and solver options - test*.export: ASTK profiles for execution. Naming scheme: testmumps.export is for MUMPS job using CPUs - test*.run: SLURM job scripts corresponding to each job, same naming as export. - test*.resu, test*.mess: message files containing all timing informations. 3/

14 /Larger_Model_B_00mm/ /Abaqus/ - 00.inp: Abaqus input file (mesh + materials + loading etc..) - for the rest, same as above /Aster/ - 00.med: MED mesh file - for the rest, same as above Revision table: v.0: Initial Draft, JC v.: final Draft, submitted for evaluation / feedback to ProNet, /

Using ABAQUS in tire development process

Using ABAQUS in tire development process Using ABAQUS in tire development process Jani K. Ojala Nokian Tyres plc., R&D/Tire Construction Abstract: Development of a new product is relatively challenging task, especially in tire business area.

More information

Industrial Use of EsDs ETP4HPC Workshop 22 June 2017 Frankfurt DLR CFD Solver TAU & Flucs for external Aerodynamic

Industrial Use of EsDs ETP4HPC Workshop 22 June 2017 Frankfurt DLR CFD Solver TAU & Flucs for external Aerodynamic Industrial Use of EsDs ETP4HPC Workshop 22 June 2017 Frankfurt DLR CFD Solver TAU & Flucs for external Aerodynamic Thomas Gerhold Institute of Aerodynamics and Flow Technology German Aerospace Center (DLR)

More information

Building Fast and Accurate Powertrain Models for System and Control Development

Building Fast and Accurate Powertrain Models for System and Control Development Building Fast and Accurate Powertrain Models for System and Control Development Prasanna Deshpande 2015 The MathWorks, Inc. 1 Challenges for the Powertrain Engineering Teams How to design and test vehicle

More information

Performance Analysis with Vampir

Performance Analysis with Vampir Performance Analysis with Vampir Bert Wesarg Technische Universität Dresden Outline Part I: Welcome to the Vampir Tool Suite Mission Event trace visualization Vampir & VampirServer The Vampir displays

More information

DARS v2.10 New Features & Enhancements

DARS v2.10 New Features & Enhancements DARS v2.10 New Features & Enhancements Why DARS? Enabling detailed chemistry in your CAE simulations Take the right design choices, including chemical effects Faster and cheaper design cycles Evaluation

More information

P. Teufel and A. Böhmer, ABB Turbo Systems, SIMULIA Customer Conference Thrust Collar Bearing Optimization using Isight

P. Teufel and A. Böhmer, ABB Turbo Systems, SIMULIA Customer Conference Thrust Collar Bearing Optimization using Isight P. Teufel and A. Böhmer, ABB Turbo Systems, SIMULIA Customer Conference 2012 Thrust Collar Bearing Optimization using Isight May 23, 2012 Thrust Collar Bearing Optimization Using Isight Contents Turbocharging:

More information

Embedded Torque Estimator for Diesel Engine Control Application

Embedded Torque Estimator for Diesel Engine Control Application 2004-xx-xxxx Embedded Torque Estimator for Diesel Engine Control Application Peter J. Maloney The MathWorks, Inc. Copyright 2004 SAE International ABSTRACT To improve vehicle driveability in diesel powertrain

More information

Stress Analysis of Engine Camshaft and Choosing Best Manufacturing Material

Stress Analysis of Engine Camshaft and Choosing Best Manufacturing Material Stress Analysis of Engine Camshaft and Choosing Best Manufacturing Material Samta Jain, Mr. Vikas Bansal Rajasthan Technical University, Kota (Rajasathan), India Abstract This paper presents the modeling

More information

Understanding the benefits of using a digital valve controller. Mark Buzzell Business Manager, Metso Flow Control

Understanding the benefits of using a digital valve controller. Mark Buzzell Business Manager, Metso Flow Control Understanding the benefits of using a digital valve controller Mark Buzzell Business Manager, Metso Flow Control Evolution of Valve Positioners Digital (Next Generation) Digital (First Generation) Analog

More information

Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design

Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design Optimizing Performance and Fuel Economy of a Dual-Clutch Transmission Powertrain with Model-Based Design Vijayalayan R, Senior Team Lead, Control Design Application Engineering, MathWorks India Pvt Ltd

More information

Explicit Simulation of Dampened Starter System using Altair Radioss

Explicit Simulation of Dampened Starter System using Altair Radioss Explicit Simulation of Dampened Starter System using Altair Radioss Siva Sankar Reddy. A Sr. Engineer CAE, PES Valeo India Private Limited Block - A. 4th Floor, TECCI Park, Old No.285, New No.173, Rajiv

More information

ELECTRICAL MACHINES LAB.

ELECTRICAL MACHINES LAB. ﺟﺎﻣﻌﺔ ﺟﺎزان ﻛﻠــﯿﺔ اﻟﮭﻨﺪﺳﺔ ﻗﺴــﻢ اﻟﮭﻨﺪﺳﺔ اﻟﻜﮭﺮﺑﺎﺋﯿﺔ Jazan University Engineering College Electrical Engineering Department ﻣﻌﻤﻞ اﻵﻻت اﻟﻜﮭﺮﺑﺎﺋﯿﺔ ELECTRICAL MACHINES LAB. ھﻨﺪﺳﺔ ﻛﮭﺮﺑﺎﺋﯿﺔ - 421 ھﻜﮫ : اﻟﻤﻘﺮر

More information

Modeling Contact with Abaqus/Standard

Modeling Contact with Abaqus/Standard Modeling Contact with Abaqus/Standard 2016 About this Course Course objectives Upon completion of this course you will be able to: Define general contact and contact pairs Define appropriate surfaces (rigid

More information

Development of Engine Clutch Control for Parallel Hybrid

Development of Engine Clutch Control for Parallel Hybrid EVS27 Barcelona, Spain, November 17-20, 2013 Development of Engine Clutch Control for Parallel Hybrid Vehicles Joonyoung Park 1 1 Hyundai Motor Company, 772-1, Jangduk, Hwaseong, Gyeonggi, 445-706, Korea,

More information

Five Cool Things You Can Do With Powertrain Blockset The MathWorks, Inc. 1

Five Cool Things You Can Do With Powertrain Blockset The MathWorks, Inc. 1 Five Cool Things You Can Do With Powertrain Blockset Mike Sasena, PhD Automotive Product Manager 2017 The MathWorks, Inc. 1 FTP75 Simulation 2 Powertrain Blockset Value Proposition Perform fuel economy

More information

Accelerating the Development of Expandable Liner Hanger Systems using Abaqus

Accelerating the Development of Expandable Liner Hanger Systems using Abaqus Accelerating the Development of Expandable Liner Hanger Systems using Abaqus Ganesh Nanaware, Tony Foster, Leo Gomez Baker Hughes Incorporated Abstract: Developing an expandable liner hanger system for

More information

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation

Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Finite Element Based, FPGA-Implemented Electric Machine Model for Hardware-in-the-Loop (HIL) Simulation Leveraging Simulation for Hybrid and Electric Powertrain Design in the Automotive, Presentation Agenda

More information

Modeling and Simulate Automotive Powertrain Systems

Modeling and Simulate Automotive Powertrain Systems Modeling and Simulate Automotive Powertrain Systems Maurizio Dalbard 2015 The MathWorks, Inc. 1 Model-Based Design Challenges It s hard to do good Model-Based Design without good models Insufficient expertise

More information

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements

How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements How Much Power Does your Server Consume? Estimating Wall Socket Power Using RAPL Measurements Kashif Nizam Khan Zhonghong Ou, Mikael Hirki, Jukka K. Nurminen, Tapio Niemi 1 Motivation The Large Hadron

More information

REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS

REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS REDUCING THE OCCURRENCES AND IMPACT OF FREIGHT TRAIN DERAILMENTS D-Rail Final Workshop 12 th November - Stockholm Monitoring and supervision concepts and techniques for derailments investigation Antonella

More information

Non-Linear Finite Element Analysis of Typical Wiring Harness Connector and Terminal Assembly Using ABAQUS/CAE and ABAQUS/STANDARD

Non-Linear Finite Element Analysis of Typical Wiring Harness Connector and Terminal Assembly Using ABAQUS/CAE and ABAQUS/STANDARD Non-Linear Finite Element Analysis of Typical Wiring Harness Connector and Terminal Assembly Using ABAQUS/CAE and ABAQUS/STANDARD Boya Lakshmi Narayana William G Strang Aashish Bhatia Delphi Automotive

More information

Computer-Assisted Induction Aluminum

Computer-Assisted Induction Aluminum Home Computer-Assisted Induction Aluminum Brazing November 11, 2003 Coupled electromagnetic and thermal computer simulation provides a sufficient basis for process optimization and quality improvement

More information

PRACE Virtual Prototyping at BMW Group.

PRACE Virtual Prototyping at BMW Group. BMW Group Industry Seminar September 7-8, Toulouse, France Slide 2 of 23 Overview. 1. Hardware / Architecture 2. Simulations at BMW 3. FEM-Simulation 4. CFD-Simulation 5. CFD Thermal Management & Aerodynamics

More information

HPC. Abaqus. Modeling ABAQUS UNIFIED FEA SIMULATE REALISTIC PERFORMANCE WITH ADVANCED MULTIPHYSICS SOLUTIONS. Nonlinear.

HPC. Abaqus. Modeling ABAQUS UNIFIED FEA SIMULATE REALISTIC PERFORMANCE WITH ADVANCED MULTIPHYSICS SOLUTIONS. Nonlinear. ABAQUS UNIFIED FEA SIMULATE REALISTIC PERFORMANCE WITH ADVANCED MULTIPHYSICS SOLUTIONS Nonlinear Partner Solutions Modeling Abaqus Multiphysics Customization HPC ABAQUS UNIFIED FEA Industry Challenges

More information

ABB's Energy Efficiency and Advisory Systems

ABB's Energy Efficiency and Advisory Systems ABB's Energy Efficiency and Advisory Systems The common nominator for all the Advisory Systems products is the significance of full scale measurements. ABB has developed algorithms using multidimensional

More information

FE Modeling and Analysis of a Human powered/electric Tricycle chassis

FE Modeling and Analysis of a Human powered/electric Tricycle chassis FE Modeling and Analysis of a Human powered/electric Tricycle chassis Sahil Kakria B.Tech, Mechanical Engg UCOE, Punjabi University Patiala, Punjab-147004 kakria.sahil@gmail.com Abbreviations: SAE- Society

More information

Development of a Multibody Systems Model for Investigation of the Effects of Hybrid Electric Vehicle Powertrains on Vehicle Dynamics.

Development of a Multibody Systems Model for Investigation of the Effects of Hybrid Electric Vehicle Powertrains on Vehicle Dynamics. Development of a Multibody Systems Model for Investigation of the Effects of Hybrid Electric Vehicle Powertrains on Vehicle Dynamics. http://dx.doi.org/10.3991/ijoe.v11i6.5033 Matthew Bastin* and R Peter

More information

Multi Core Processing in VisionLab

Multi Core Processing in VisionLab Multi Core Processing in Multi Core CPU Processing in 25 August 2014 Copyright 2001 2014 by Van de Loosdrecht Machine Vision BV All rights reserved jaap@vdlmv.nl Overview Introduction Demonstration Automatic

More information

Probabilistic Analysis for Resolving Fatigue Failures of the Connecting Rod Oil Hole

Probabilistic Analysis for Resolving Fatigue Failures of the Connecting Rod Oil Hole Probabilistic Analysis for Resolving Fatigue Failures of the Connecting Rod Oil Hole Jianxiong Chen Sr. Engineering Specialist Applied Mechanics Dept., Copeland Corporation, Sidney, Ohio, USA Donald Draper

More information

2d Abaqus Example Meshing

2d Abaqus Example Meshing 2d Abaqus Example Free PDF ebook Download: 2d Abaqus Example Download or Read Online ebook 2d abaqus example meshing in PDF Format From The Best User Guide Database numerical reasons. In such simulations

More information

Substructures and Submodeling with Abaqus. About this Course

Substructures and Submodeling with Abaqus. About this Course Substructures and Submodeling with Abaqus R 6.12 About this Course Course objectives Upon completion of this course you will be able to: Understand the difference between substructuring and submodeling

More information

Machine Design Optimization Based on Finite Element Analysis using

Machine Design Optimization Based on Finite Element Analysis using Machine Design Optimization Based on Finite Element Analysis using High-Throughput Computing Wenying Jiang T.M. Jahns T.A. Lipo WEMPEC Y. Suzuki W. Taylor. JSOL Corp. UW-Madison, CS Dept. 07/10/2014 2014

More information

Project Summary Fuzzy Logic Control of Electric Motors and Motor Drives: Feasibility Study

Project Summary Fuzzy Logic Control of Electric Motors and Motor Drives: Feasibility Study EPA United States Air and Energy Engineering Environmental Protection Research Laboratory Agency Research Triangle Park, NC 277 Research and Development EPA/600/SR-95/75 April 996 Project Summary Fuzzy

More information

INTRODUCTION. I.1 - Historical review.

INTRODUCTION. I.1 - Historical review. INTRODUCTION. I.1 - Historical review. The history of electrical motors goes back as far as 1820, when Hans Christian Oersted discovered the magnetic effect of an electric current. One year later, Michael

More information

Estimation of Reliable Design Loads During Extreme Strength and Durability Events at Jaguar Land Rover. SIMPACK User Meeting May 2011

Estimation of Reliable Design Loads During Extreme Strength and Durability Events at Jaguar Land Rover. SIMPACK User Meeting May 2011 Estimation of Reliable Design Loads During Extreme Strength and Durability Events at Jaguar Land Rover SIMPACK User Meeting May 2011 Dr. Stergio Lolas (BEng, PhD, AMIMechE) Research Consultant, Jaguar

More information

Transient Dynamic Analysis and Optimization of a Piston in an Automobile Engine

Transient Dynamic Analysis and Optimization of a Piston in an Automobile Engine Transient Dynamic Analysis and Optimization of a Piston in an Automobile Engine Krupal A 1, Chandan R 2, Jayanth H 3, Ranjith V 4 1M.Tech Scholar, Mechanical Engineering, Dr. Ambedkar Institute of Technology,

More information

Analysis and Correlation for Body Attachment Stiffness in BIW

Analysis and Correlation for Body Attachment Stiffness in BIW Analysis and Correlation for Body Attachment Stiffness in BIW Jiwoo Yoo, J.K.Suh, S.H.Lim, J.U.Lee, M.K.Seo Hyundai Motor Company, S. Korea ABSTRACT It is known that automotive body structure must have

More information

Dynamic Adjustment Procedure for 700-series Digital Controls. Application Note (Revision A,8/1998) Original Instructions

Dynamic Adjustment Procedure for 700-series Digital Controls. Application Note (Revision A,8/1998) Original Instructions Application Note 01304 (Revision A,8/1998) Original Instructions Dynamic Adjustment Procedure for 700-series Digital Controls (700, 701, 701A, 702, 705, 721, 723, 723PLUS, 828) General Precautions Read

More information

How to Achieve a Successful Molded Gear Transmission

How to Achieve a Successful Molded Gear Transmission How to Achieve a Successful Molded Gear Transmission Rod Kleiss Figure 1 A molding insert tool alongside the molded gear and the gear cavitiy. Molded plastic gears have very little in common with machined

More information

NUMERICAL ANALYSIS OF IMPACT BETWEEN SHUNTING LOCOMOTIVE AND SELECTED ROAD VEHICLE

NUMERICAL ANALYSIS OF IMPACT BETWEEN SHUNTING LOCOMOTIVE AND SELECTED ROAD VEHICLE Journal of KONES Powertrain and Transport, Vol. 21, No. 4 2014 ISSN: 1231-4005 e-issn: 2354-0133 ICID: 1130437 DOI: 10.5604/12314005.1130437 NUMERICAL ANALYSIS OF IMPACT BETWEEN SHUNTING LOCOMOTIVE AND

More information

Experience the Hybrid Drive

Experience the Hybrid Drive Experience the Hybrid Drive MAGNA STEYR equips SUV with hybrid drive Hybrid demo vehicle with dspace prototyping system To integrate components into a hybrid vehicle drivetrain, extensive modification

More information

Control System for a Diesel Generator and UPS

Control System for a Diesel Generator and UPS Control System for a Diesel Generator and UPS I. INTRODUCTION In recent years demand in the continuity of power supply in the local distributed areas is steadily increasing. Nowadays, more and more consumers

More information

1) The locomotives are distributed, but the power is not distributed independently.

1) The locomotives are distributed, but the power is not distributed independently. Chapter 1 Introduction 1.1 Background The railway is believed to be the most economical among all transportation means, especially for the transportation of mineral resources. In South Africa, most mines

More information

Energy analysis of a reach stacker load handling system using SimulationX software

Energy analysis of a reach stacker load handling system using SimulationX software Document No. ETH1-03 Title Energy analysis of reach stacker load handling system using Author Magnus Hägglund Date 2011-09-26 Energy analysis of a reach stacker load handling system using Abstract A number

More information

Southern California Edison Rule 21 Storage Charging Interconnection Load Process Guide. Version 1.1

Southern California Edison Rule 21 Storage Charging Interconnection Load Process Guide. Version 1.1 Southern California Edison Rule 21 Storage Charging Interconnection Load Process Guide Version 1.1 October 21, 2016 1 Table of Contents: A. Application Processing Pages 3-4 B. Operational Modes Associated

More information

Supervised Learning to Predict Human Driver Merging Behavior

Supervised Learning to Predict Human Driver Merging Behavior Supervised Learning to Predict Human Driver Merging Behavior Derek Phillips, Alexander Lin {djp42, alin719}@stanford.edu June 7, 2016 Abstract This paper uses the supervised learning techniques of linear

More information

The use of Simulation in Electric Machine Design Stefan Holst, CD-adapco

The use of Simulation in Electric Machine Design Stefan Holst, CD-adapco The use of Simulation in Electric Machine Design Stefan Holst, CD-adapco Motivation How often can a machine be started within an hour In Hybrids, what effect has the adjacent combustion drive train Space

More information

LS-DYNA HYBRID Studies using the LS-DYNA Aerospace Working Group Generic Fan Rig Model

LS-DYNA HYBRID Studies using the LS-DYNA Aerospace Working Group Generic Fan Rig Model LS-DYNA HYBRID Studies using the LS-DYNA Aerospace Working Group Generic Fan Rig Model Gunther Blankenhorn and Jason Wang Livermore Software Technology Cooperation Gilbert Queitzsch Federal Aviation Administration

More information

THERMAL STRESS ANALYSIS OF HEAVY TRUCK BRAKE DISC ROTOR

THERMAL STRESS ANALYSIS OF HEAVY TRUCK BRAKE DISC ROTOR Thermal Stress Analysis of heavy Truck Brake Disc Rotor THERMAL STRESS ANALYSIS OF HEAVY TRUCK BRAKE DISC ROTOR M.Z. Akop 1, R. Kien 2, M.R. Mansor 3, M.A. Mohd Rosli 4 1, 2, 3, 4 Faculty of Mechanical

More information

Predicting Solutions to the Optimal Power Flow Problem

Predicting Solutions to the Optimal Power Flow Problem Thomas Navidi Suvrat Bhooshan Aditya Garg Abstract Predicting Solutions to the Optimal Power Flow Problem This paper discusses an implementation of gradient boosting regression to predict the output of

More information

ME scope Application Note 24 Choosing Reference DOFs for a Modal Test

ME scope Application Note 24 Choosing Reference DOFs for a Modal Test ME scope Application Note 24 Choosing Reference DOFs for a Modal Test The steps in this Application Note can be duplicated using any ME'scope Package that includes the VES-3600 Advanced Signal Processing

More information

Generator Efficiency Optimization at Remote Sites

Generator Efficiency Optimization at Remote Sites Generator Efficiency Optimization at Remote Sites Alex Creviston Chief Engineer, April 10, 2015 Generator Efficiency Optimization at Remote Sites Summary Remote generation is used extensively to power

More information

Extracting Tire Model Parameters From Test Data

Extracting Tire Model Parameters From Test Data WP# 2001-4 Extracting Tire Model Parameters From Test Data Wesley D. Grimes, P.E. Eric Hunter Collision Engineering Associates, Inc ABSTRACT Computer models used to study crashes require data describing

More information

Using HPC for Understanding fluid flows

Using HPC for Understanding fluid flows Using HPC for Understanding fluid flows Sanjay Mittal Department of Aerospace Engineering IIT Kanpur Acknowledgement: Students, Colleagues, Various funding agencies Incompressible flow equations Unsteady,

More information

CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method

CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method Feng Yang, Matthew Beadle Jaguar Land Rover 1 Background Passenger airbag (PAB) has been widely

More information

Theory of Machines II EngM323 Laboratory User's manual Version I

Theory of Machines II EngM323 Laboratory User's manual Version I Theory of Machines II EngM323 Laboratory User's manual Version I Table of Contents Experiment /Test No.(1)... 2 Experiment /Test No.(2)... 6 Experiment /Test No.(3)... 12 EngM323 Theory of Machines II

More information

Asymmetry of W7-X magnet system introduced by torus assembly

Asymmetry of W7-X magnet system introduced by torus assembly Asymmetry of W7-X magnet system introduced by torus assembly Joris Fellinger, Konstantin Egorov, Johannes Peter Kallmeyer, Victor Bykov, Felix Schauer Max-Planck-Institut Für Plasmaphysik, Teilinstitut

More information

STRUCTURAL BEHAVIOUR OF 5000 kn DAMPER

STRUCTURAL BEHAVIOUR OF 5000 kn DAMPER STRUCTURAL BEHAVIOUR OF 5000 kn DAMPER I.H. Mualla Dr. Eng. CTO of DAMPTECH A/S E.D. Jakupsson Dept. of Civil Engineering, Technical University of Denmark L.O. Nielsen Professor, Dept. of Civil Engineering,

More information

TrueGyde Microcoil. Author: Marcel Berard Co-Author: Philippe Berard

TrueGyde Microcoil. Author: Marcel Berard Co-Author: Philippe Berard Author: Marcel Berard Co-Author: Philippe Berard Introduction TrueGyde Steer supports the microcoil as an alternate magnetic source to the standard coil. This document describes how to build and use a

More information

Tim Johnson OPTI521 Report 1 1 of 5

Tim Johnson OPTI521 Report 1 1 of 5 Tim Johnson OPTI 521-Optomechanical Engineering Report 1 Synopsis of Technical Report Chapter 8.3 Semikinematic Mounting for Small Mirrors Opto-Mechanical Systems Design by P. R. Yoder, 2006 11-14-07 Abstract

More information

Maximum Superelevation: Desirable, Allowable, and Absolute

Maximum Superelevation: Desirable, Allowable, and Absolute Maximum Superelevation: Desirable, Allowable, and Absolute Nazmul Hasan, M. Eng. SNC-Lavalin Inc. ancouver, ON ABSTRACT The maximum values of superelevation are often qualified as desirable, allowable

More information

REAL TIME TRACTION POWER SYSTEM SIMULATOR

REAL TIME TRACTION POWER SYSTEM SIMULATOR REAL TIME TRACTION POWER SYSTEM SIMULATOR G. Strand Systems Engineering Department Fixed Installation Division Adtranz Sweden e-mail:gunnar.strand@adtranz.se A. Palesjö Power Systems Analysis Division

More information

Vehicle functional design from PSA in-house software to AMESim standard library with increased modularity

Vehicle functional design from PSA in-house software to AMESim standard library with increased modularity Vehicle functional design from PSA in-house software to AMESim standard library with increased modularity Benoit PARMENTIER, Frederic MONNERIE (PSA) Marc ALIRAND, Julien LAGNIER (LMS) Vehicle Dynamics

More information

Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris

Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris Installing Proactive Monitoring for PowerCenter Operations 2.0 HotFix 1 on Solaris 2012-2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

ASTM D4169 Truck Profile Update Rationale Revision Date: September 22, 2016

ASTM D4169 Truck Profile Update Rationale Revision Date: September 22, 2016 Over the past 10 to 15 years, many truck measurement studies have been performed characterizing various over the road environment(s) and much of the truck measurement data is available in the public domain.

More information

What s Cooking. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved.

What s Cooking. Bernd Wiswedel KNIME KNIME AG. All Rights Reserved. What s Cooking Bernd Wiswedel KNIME 2018 KNIME AG. All Rights Reserved. What s Cooking Enhancements to the software planned for the next feature release Actively worked on Available in Nightly build https://www.knime.com/form/nightly-build

More information

EDEM-Abaqus Coupling User Guide

EDEM-Abaqus Coupling User Guide EDEM-Abaqus Coupling User Guide April 2018 Revision Copyrights and Trademarks Copyright 2018 DEM Solutions Ltd. All rights reserved. Information in this document is subject to change without notice. The

More information

Gasket Simulations process considering design parameters

Gasket Simulations process considering design parameters Gasket Simulations process considering design parameters Sonu Paroche Deputy Manager VE Commercial Vehicles Ltd. 102, Industrial Area No. 1 Pithampur, District Dhar MP - 454775, India sparoche@vecv.in

More information

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015)

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) A High Dynamic Performance PMSM Sensorless Algorithm Based on Rotor Position Tracking Observer Tianmiao Wang

More information

Structural Analysis Of Reciprocating Compressor Manifold

Structural Analysis Of Reciprocating Compressor Manifold Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2016 Structural Analysis Of Reciprocating Compressor Manifold Marcos Giovani Dropa Bortoli

More information

MODEL BASED DESIGN OF HYBRID AND ELECTRIC POWERTRAINS Sandeep Sovani, Ph.D. ANSYS Inc.

MODEL BASED DESIGN OF HYBRID AND ELECTRIC POWERTRAINS Sandeep Sovani, Ph.D. ANSYS Inc. MODEL BASED DESIGN OF HYBRID AND ELECTRIC POWERTRAINS Sandeep Sovani, Ph.D. ANSYS Inc. October 22, 2013 SAE 2013 Hybrid Powertrain Complexity And Maintainability Symposium Acknowledgements: Scott Stanton,

More information

WHITE PAPER. Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration

WHITE PAPER. Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration WHITE PAPER Informatica PowerCenter 8 on HP Integrity Servers: Doubling Performance with Linear Scalability for 64-bit Enterprise Data Integration This document contains Confi dential, Proprietary and

More information

Initial processing of Ricardo vehicle simulation modeling CO 2. data. 1. Introduction. Working paper

Initial processing of Ricardo vehicle simulation modeling CO 2. data. 1. Introduction. Working paper Working paper 2012-4 SERIES: CO 2 reduction technologies for the European car and van fleet, a 2020-2025 assessment Initial processing of Ricardo vehicle simulation modeling CO 2 Authors: Dan Meszler,

More information

ABB MEASUREMENT & ANALYTICS. Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry

ABB MEASUREMENT & ANALYTICS. Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry ABB MEASUREMENT & ANALYTICS Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry 2 P R E D I C T I V E E M I S S I O N M O N I T O R I N G S Y S T E M S M O N

More information

ARC-H: Adaptive replacement cache management for heterogeneous storage devices

ARC-H: Adaptive replacement cache management for heterogeneous storage devices Journal of Systems Architecture 58 (2012) ARC-H: Adaptive replacement cache management for heterogeneous storage devices Young-Jin Kim, Division of Electrical and Computer Engineering, Ajou University,

More information

Inflation: the Value of the Pound

Inflation: the Value of the Pound Inflation: the Value of the Pound 1750-1996 Research Paper 97/76 6 June 1997 The Library is often asked about how the purchasing power of the pound has changed over various periods. This Research Paper

More information

Non-wire Methods for Transmission Congestion Management through Predictive Simulation and Optimization

Non-wire Methods for Transmission Congestion Management through Predictive Simulation and Optimization Non-wire Methods for Transmission Congestion Management through Predictive Simulation and Optimization Presented by Ruisheng Diao, Ph.D., P.E. Senior Research Engineer Electricity Infrastructure Pacific

More information

FLEXIBILITY FOR THE HIGH-END DATA CENTER. Copyright 2013 EMC Corporation. All rights reserved.

FLEXIBILITY FOR THE HIGH-END DATA CENTER. Copyright 2013 EMC Corporation. All rights reserved. FLEXIBILITY FOR THE HIGH-END DATA CENTER 1 The World s Most Trusted Storage Platform More Than 20 Years Running the World s Most Critical Applications 1988 1990 1994 2000 2003 2005 2009 2011 2012 New Symmetrix

More information

RELIABILITY IMPROVEMENT OF ACCESSORY GEARBOX BEVEL DRIVES Kozharinov Egor* *CIAM

RELIABILITY IMPROVEMENT OF ACCESSORY GEARBOX BEVEL DRIVES Kozharinov Egor* *CIAM RELIABILITY IMPROVEMENT OF ACCESSORY GEARBOX BEVEL DRIVES Kozharinov Egor* *CIAM egor@ciam.ru Keywords: Bevel gears, accessory drives, resonance oscillations, Coulomb friction damping Abstract Bevel gear

More information

Application of ABAQUS to Analyzing Shrink Fitting Process of Semi Built-up Type Marine Engine Crankshaft

Application of ABAQUS to Analyzing Shrink Fitting Process of Semi Built-up Type Marine Engine Crankshaft Application of ABAQUS to Analyzing Shrink Fitting Process of Semi Built-up Type Marine Engine Crankshaft Jae-Cheol Kim, Dong-Kwon Kim, Young-Duk Kim, and Dong-Young Kim System Technology Research Team,

More information

POWER FLOW SIMULATION AND ANALYSIS

POWER FLOW SIMULATION AND ANALYSIS 1.0 Introduction Power flow analysis (also commonly referred to as load flow analysis) is one of the most common studies in power system engineering. We are already aware that the power system is made

More information

automotive crashworthiness simulation

automotive crashworthiness simulation Evaluation and benchmark of highperformance computer platforms for automotive crashworthiness simulation C. D. Kan, A. Eskandarian, &J, Mader FHWA/NHTSA National Crash Analysis Center, George Washington

More information

Incorporating Real Time Computing in Data Center Power Networks

Incorporating Real Time Computing in Data Center Power Networks : Incorporating Real Time Computing in Data Center Power Networks Pittsboro, North Carolina, USA 3DFS.COM What Does Electricity Reveal About the Power Network? Nearly every device in a data center includes

More information

Technology and policy drivers of the fuel economy of new light-duty vehicles Comparative analysis across selected automotive markets

Technology and policy drivers of the fuel economy of new light-duty vehicles Comparative analysis across selected automotive markets Technology and policy drivers of the fuel economy of new light-duty vehicles Comparative analysis across selected automotive markets Pierpaolo Cazzola, International Energy Agency Content GFEI and the

More information

Full Vehicle Durability Prediction Using Co-simulation Between Implicit & Explicit Finite Element Solvers

Full Vehicle Durability Prediction Using Co-simulation Between Implicit & Explicit Finite Element Solvers Full Vehicle Durability Prediction Using Co-simulation Between Implicit & Explicit Finite Element Solvers SIMULIA Great Lakes Regional User Meeting Oct 12, 2011 Victor Oancea Member of SIMULIA CTO Office

More information

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here.

From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. From Developing Credit Risk Models Using SAS Enterprise Miner and SAS/STAT. Full book available for purchase here. About this Book... ix About the Author... xiii Acknowledgments...xv Chapter 1 Introduction...

More information

Design Analysis and Optimization of Steering Knuckle Using Numerical Methods and Design of Experiments

Design Analysis and Optimization of Steering Knuckle Using Numerical Methods and Design of Experiments Design Analysis and Optimization of Steering Knuckle Using Numerical Methods and Design of Experiments 1 Mahendra L. Shelar, 2 Prof. H. P. Khairnar 1 MTech Scholar, 2 Assistant Professor 1,2 Department

More information

Abaqus Technology Brief. Automobile Roof Crush Analysis with Abaqus

Abaqus Technology Brief. Automobile Roof Crush Analysis with Abaqus Abaqus Technology Brief Automobile Roof Crush Analysis with Abaqus TB-06-RCA-1 Revised: April 2007. Summary The National Highway Traffic Safety Administration (NHTSA) mandates the use of certain test procedures

More information

Abaqus Technology Brief. Prediction of B-Pillar Failure in Automobile Bodies

Abaqus Technology Brief. Prediction of B-Pillar Failure in Automobile Bodies Prediction of B-Pillar Failure in Automobile Bodies Abaqus Technology Brief TB-08-BPF-1 Revised: September 2008 Summary The B-pillar is an important load carrying component of any automobile body. It is

More information

Scheduling. Purpose of scheduling. Scheduling. Scheduling. Concurrent & Distributed Systems Purpose of scheduling.

Scheduling. Purpose of scheduling. Scheduling. Scheduling. Concurrent & Distributed Systems Purpose of scheduling. 427 Concurrent & Distributed Systems 2017 6 Uwe R. Zimmer - The Australian National University 429 Motivation and definition of terms Purpose of scheduling 2017 Uwe R. Zimmer, The Australian National University

More information

Racing Tires in Formula SAE Suspension Development

Racing Tires in Formula SAE Suspension Development The University of Western Ontario Department of Mechanical and Materials Engineering MME419 Mechanical Engineering Project MME499 Mechanical Engineering Design (Industrial) Racing Tires in Formula SAE

More information

MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM

MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM Lu Yang, Jiong Peng, Dongjie Chen and Jian Wang* Beijing Institute of Technology, Beijing 100081, China

More information

Analysis and evaluation of a tyre model through test data obtained using the IMMa tyre test bench

Analysis and evaluation of a tyre model through test data obtained using the IMMa tyre test bench Vehicle System Dynamics Vol. 43, Supplement, 2005, 241 252 Analysis and evaluation of a tyre model through test data obtained using the IMMa tyre test bench A. ORTIZ*, J.A. CABRERA, J. CASTILLO and A.

More information

White paper: Pneumatics or electrics important criteria when choosing technology

White paper: Pneumatics or electrics important criteria when choosing technology White paper: Pneumatics or electrics important criteria when choosing technology The requirements for modern production plants are becoming increasingly complex. It is therefore essential that the drive

More information

Comparing FEM Transfer Matrix Simulated Compressor Plenum Pressure Pulsations to Measured Pressure Pulsations and to CFD Results

Comparing FEM Transfer Matrix Simulated Compressor Plenum Pressure Pulsations to Measured Pressure Pulsations and to CFD Results Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2012 Comparing FEM Transfer Matrix Simulated Compressor Plenum Pressure Pulsations to Measured

More information

Testing Of Fluid Viscous Damper

Testing Of Fluid Viscous Damper Testing Of Fluid Viscous Damper Feng Qian & Sunwei Ding, Jingjing Song Shanghai Research Institute of Materials, China Dr. Chien-Chih Chen US.VF Corp, Omni Device, China SUMMARY: The Fluid Viscous Damper

More information

Measurement made easy. Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry

Measurement made easy. Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry Measurement made easy Predictive Emission Monitoring Systems The new approach for monitoring emissions from industry ABB s Predictive Emission Monitoring Systems (PEMS) Experts in emission monitoring ABB

More information

Non-Linear Implicit Analysis of Roll over Protective Structure OSHA STANDARD (PART )

Non-Linear Implicit Analysis of Roll over Protective Structure OSHA STANDARD (PART ) Non-Linear Implicit Analysis of Roll over Protective Structure OSHA STANDARD (PART 1928.52) Pritam Prakash Deputy Manager - R&D, CAE International Tractor Limited Jalandhar Road, Hoshiarpur Punjab 146022,

More information

KISSsoft 03/2016 Tutorial 7

KISSsoft 03/2016 Tutorial 7 KISSsoft 03/2016 Tutorial 7 Roller bearings KISSsoft AG Rosengartenstrasse 4 8608 Bubikon Switzerland Tel: +41 55 254 20 50 Fax: +41 55 254 20 51 info@kisssoft.ag www.kisssoft.ag Contents 1 Task... 3 1.1

More information

CFD Analysis and Comparison of Fluid Flow Through A Single Hole And Multi Hole Orifice Plate

CFD Analysis and Comparison of Fluid Flow Through A Single Hole And Multi Hole Orifice Plate CFD Analysis and Comparison of Fluid Flow Through A Single Hole And Multi Hole Orifice Plate Malatesh Barki. 1, Ganesha T. 2, Dr. M. C. Math³ 1, 2, 3, Department of Thermal Power Engineering 1, 2, 3 VTU

More information