Efficient Parallel Multi-Copy Simulation of the Hybrid Atomistic-Continuum Simulation Based on Geometric Coupling

Size: px
Start display at page:

Download "Efficient Parallel Multi-Copy Simulation of the Hybrid Atomistic-Continuum Simulation Based on Geometric Coupling"

Transcription

1 , pp Efficient Parallel Multi-Copy Simulation of the Hybrid Atomistic-Continuum Simulation Based on Geometric Coupling Qian Wang 1,2, Xin-Hai Xu 1,2,*, Chao Li 1,2, Juan Chen 1,2, 1 College of Computer, National University of Defense Technology, Changsha, China 2 State Key Laboratory of High Performance Computing, National University of Defense Technology, Changsha, China wangqiannudt@gmail.com, {xuxinhai, dirk911, juanchen}@nudt.edu.cn Abstract. The hybrid atomistic-continuum (HAC) simulation based on geometric coupling should properly deal with the sampling technique and noise in the atomistic simulation. Based on the need of ensemble simulation, we design and implement the associated parallel supporting mechanism of our hybrid atomistic-continuum framework based on the open source code OpenFOAM and LAMMPS, propose the Multi-Copy advancing model and decision-making mechanism for the Multi-Copy simulation. The results of the benchmark cases indicate that our HAC framework can functionality support the Multi-Copy simulation. Our decision-making mechanism can sufficiently utilize the computational resources and perform efficient coupling simulation. Keywords: multi copies, decision-making mechanism, efficient parallel simulation 1 Introduction Recently much attention has been focused on the hybrid atomistic-continuum (HAC) simulation based on the geometric coupling which is an approach capable of accurately describing the flow characteristics at micro- and nano- scales[1-3]. The HAC method based on geometric coupling splits the simulation domain into the continuum region, the atomistic region and the overlap region, uses certain coupling procedures to exchange data between two simulation methods[4]. In molecular simulation (MD) methods, the connection to macroscopic observable fields, such as velocity, density and temperature, is achieved through averaging appropriate microscopic properties[5]. This is the kernel procedure when coupling the particle fields to continuum that requires both averaging of finite numbers of particles in a sequence of molecular realizations as well as the generation of molecular realizations with relatively small numbers of particles. In the previous research, researchers usually run the realizations of the simulation cases several times to reduce * Corresponding author: State Key Laboratory of High Performance Computing, National University of Defense Technology, Changsha, Hunan, China xuxinhai@nudt.edu.cn ISSN: ASTL Copyright 2016 SERSC

2 the noise and smooth the simulation data[4]. The existing hybrid coupling framework are hardly supported no multi copy synchronize simulation of the MD part. In order to realize multiple realizations of the particle simulation, the framework must provide the supporting mechanism. Furthermore, the framework should have the ability to highly efficient parallel simulation of the multi copy mode. The framework should have the decision-making mechanism to fully use the computational resources. In this paper, based on our previous research[6], we further modify our parallel supporting mechanism of the HAC framework based on the open source code OpenFOAM[7] and LAMMPS[8], propose the Multi-Copy advancing model and fully utilize the computational resources. The main contributions of this paper are summarized as follows: 1. We propose the Multi-Copy advancing model and decision-making mechanism for our hybrid atomistic-continuum coupling framework. 2. We implement the supporting parallel mechanism in our hybrid atomisticcontinuum coupling framework. 3. We verify the efficiency of the proposed Multi-Copy advancing model through benchmark experiments on our hybrid framework. The results indicate that our decision-making mechanism can sufficiently utilize the computational resources and perform highly efficient coupling simulation. 2 Background Our hybrid atomistic-continuum coupling framework is designed based on the OpenFOAM[7] and LAMMPS[8]. The coupling method of the framework is geometric coupling. For the two-dimensional domain, the computational domain was split into an atomistic region and a continuum region, using an overlap region to alleviate dramatic density oscillation and couple the results of these two regions. The schematic diagram of the domain decomposition based HAC method is depicted in Fig. 1. The detailed coupling procedures can referenced in [6]. z y x continuum region overlap region y=l y=b y=a atomistic region y=0 Fig.1. Decomposition of the simulation domain, a 2D diagram. The decomposition of the overlap region is emerged in the above two methods. In order to match the cell in the continuum region, the overlap region in the MD simulation is divided into bins. Due to we will deal with multi copies of the atomistic region and the overlap region, there usually exists no pure CFD process in our simulation. The main coupling procedures in the HAC method is to exchange data between CFD and MD. On the MD part, we need to sample and average particles properties to transform Copyright 2016 SERSC 385

3 the CFD part. For steady flow, these may be sequential samples taken in time; for transient flows these are samples from an ensemble of realizations[9]. Because of the smallest module of CFD simulation is mesh cell, we choose the sample bins the same volume as the cell. 3 Efficient parallel Multi-Copy advancing model Under a given configuration of the MD simulation domain, the maximum degree of parallelism is should be a given number for the volume of sub domain cannot smaller than a certain value. For a proper volume of the sub domain, the side length of it should larger than the cutoff distance, better twice the cutoff distance. Therefore, we define the following maximum degree of parallelism for a given scale domain, max p = lx ú (1) 2r ú ë c û ly ú 2r ú ë c û lz ú 2r ú ë c û We use the parameter, num_couple, to define the number of coupled particle region. We also define the parameter, m, which is the number of copies of the particle region. Finally, we use the parameter, n, to define different execution mode for our advancing model, i.e, multiple partition. The diagram of the advancing model is depicted in Fig. 2. The total degree of parallelism is P processors. Table 1. Parameters of Multi-Copy advancing model Parameter Number of coupled regions Number of copies Number of partition Degree of parallelism Symbol num_couple m n P CFD MD1 MDi MDm MD1 MD1 MDm/n CFD MDi CFD MDi MD(i+m/n-1) MDm MD(m-m/n+1) MDm Fig. 2. Multi-Copy advancing model. We propose three kinds of advancing model for our HAC framework. The detailed illustration is listed as follows: Sequential type: each copy of the particle realization is executed one by one, which each copy will use the total processors P. 386 Copyright 2016 SERSC

4 Concurrent type: all the copies are executed simultaneously; each copy will use P/m processors. Half-concurrent type: all the m copies are split into n partitions. In each partition, the m/n copies are executed in sequential manner. Each copy uses P/n processors. We need a decision-making mechanism to decide which type of advancing model to be used to fully utilize the computational resources and efficiently simulate. Using the given configuration of the simulation domain, we can figure out how to advance the multi copies simulation. Algorithm 1 The algorithm for decision-making mechanism Input Simulation domain (lx,ly,lz), computational resources P, copy number m, num_couple Output Partition number n 1: Calculate maxp using (lx,ly,lz) 2: Calculate concurrent_n = P/ num_couple / maxp 3: if concurrent_n < m then 4: Partition n = ceil(m/concurrent_n) 5: else if concurrent_n > m then 6: Partition n = m 7: else if concurrent_n = 1 then 8: Partition n = 1 9: end if Due to the need of ensemble simulation, we add parallelism mechanism for the Multi- Copy execution. The parallelism mechanism of the HAC framework need to additional the master processes and slave processes. The master processes are those processes in copy 0. Other processes are the slave processes. The master processes are in charge of exchanging data with the continuum region, mostly they are on the same process. 4 Experiments and results In this section, we use the benchmark case, i.e., the channel flow past the rough wall to verify our decision-making mechanism and the Multi-Copy advancing model. The test case is the channel flow past the rough wall as shown in Fig. 3. The simulation domain is x y = σ 2, while the z direction of the MD domain is 10σ. The height of the atomistic region is 15σ and the height of the overlap region is 12σ. The moving and still wall are no slip boundary condition. The length of cell and bin are the same with 2σ. The rough bottom wall consists two layers of FCC (111) solid particles and the height of it is about 5σ. The cutoff radius is chosen 2.2σ for time sake. The velocity of the top wall is U w = 3.0 σ τ. The time step of MD is 0.005τ. The total number of particle is Copyright 2016 SERSC 387

5 Fig.3. The simulation domain of the benchmark case. We want to run an 8 copies coupling simulation. The simulation platform is the same as in [10, 11]. In order to test the efficiency of our model, we use 96 degree of parallelism. Under above configuration of the simulation domain, the max p is 48 calculated by the Equation (1). The concurrent_n is 2 for this configuration. Under the instruction of Algorithm 1, we should use the half-concurrent advancing type. We also take the sequential type and concurrent type as comparison to show the efficiency. The input parameters are listed in Table 2. The simulation results of the communication time occupied the total simulation time and t the total simulation time are shown in Fig. 4 and Fig. 5. The total simulation time is used the sequential type as the base and depicted in relative value. Table 2. Input parameters of different advancing model No. Number of partition Processor of copy Advancing type sequential half-concurrent half-concurrent concurrent Fig. 4. The ratio of the communication time to the total simulation time. Fig. 5. The relative total simulation time for different advancing model From Fig. 4 and Fig. 5, we can see that half-concurrent type performs better than the sequential type. The decision-making mechanism can calculate the proper advancing model for the Multi-Copy simulation. When the computational domain increase, the communication overhead increases following the scale. From the above results, we can 388 Copyright 2016 SERSC

6 figure out that our decision-making mechanism can choose the proper advancing type for Multi-Copy simulation and fully utilized the computational resources. If the computational resources are sufficient, we can directly use the concurrent type, while user can use the decision-making mechanism to perform efficient coupling simulation. 5 Conclusion In this paper, we propose the Multi-Copy advancing model and decision-making mechanism, implement the supporting parallel mechanism in our HAC framework. We verify the efficiency of the proposed Multi-Copy advancing model through benchmark experiments on our hybrid framework. The results indicate that our decision-making mechanism can sufficiently utilize the computational resources and perform highly efficient coupling simulation. References 1. O'Connell, S.T., Thompson, P.A.: Molecular dynamics-continuum hybrid computations: A tool for studying complex fluid flows. Phys Rev E Stat Phys Plasmas Fluids Relat Interdiscip Topics 52, R5792-R5795 (1995) 2. Squires, T.M., Quake, S.R.: Microfluidics: Fluid physics at the nanoliter scale. Rev Mod Phys 77, (2005) 3. Flekkøy, E., Wagner, G., Feder, J.: Hybrid model for combined particle and continuum dynamics. EPL (Europhysics Letters) 52, 271 (2000) 4. Nie, X.B., Chen, S.Y., E, W.N., Robbins, M.O.: A continuum and molecular dynamics hybrid method for micro- and nano-fluid flow. Journal of Fluid Mechanics 500, (2004) 5. Landau, L.D., Lifshitz, E.: Statistical physics, part I. Course of theoretical physics 5, 468 (1980) 6. Wang, Q., Xu, X.-H., Li, C., Ji, H.-Y., Ren, X.-G., Yang, X.-J.: Coupling Strategies Investigation of Hybrid Atomistic-Continuum Method Based on State Variable Coupling. (2016) Plimpton, S.: Fast Parallel Algorithms for Short-Range Molecular Dynamics. Journal of Computational Physics 117, 1-19 (1995) 9. Hadjiconstantinou, N.G., Garcia, A.L., Bazant, M.Z., He, G.: Statistical error in particle simulations of hydrodynamic phenomena. Journal of Computational Physics 187, (2003) 10. Yang, W.-J., Yi, W., Ren, X.-G., Xu, L.-Y., Xu, X.-H., Yuan, X.-F.: Toward large scale parallel computer simulation of viscoelastic fluid flow: A study of benchmark flow problems. Journal of Non-Newtonian Fluid Mechanics 222, (2015) 11. Xu, X.-H., Guo, X.-W., Cao, Y., Ren, X.-G., Chen, J., Yang, X.-J.: Multi-scale simulation of non-equilibrium phase transitions under shear flow in dilute polymer solutions. RSC Advances 5, (2015) Copyright 2016 SERSC 389

Meshing of flow and heat transfer problems

Meshing of flow and heat transfer problems Meshing of flow and heat transfer problems Luyao Zou a, Zhe Li b, Qiqi Fu c and Lujie Sun d School of, Shandong University of science and technology, Shandong 266590, China. a zouluyaoxf@163.com, b 1214164853@qq.com,

More information

True 3D CAE visualization of filling imbalance in geometry-balanced runners

True 3D CAE visualization of filling imbalance in geometry-balanced runners True 3D CAE visualization of filling imbalance in geometry-balanced runners C.C. Chien, * C.C. Chiang, W. H. Yang, Vito Tsai and David C.Hsu CoreTech System Co.,Ltd., HsinChu, Taiwan, ROC Abstract The

More information

WETTING PROPERTIES OF STRUCTURED INTERFACES COMPOSED OF SURFACE-ATTACHED SPHERICAL NANOPARTICLES

WETTING PROPERTIES OF STRUCTURED INTERFACES COMPOSED OF SURFACE-ATTACHED SPHERICAL NANOPARTICLES November 20, 2018 WETTING PROPERTIES OF STRUCTURED INTERFACES COMPOSED OF SURFACE-ATTACHED SPHERICAL NANOPARTICLES Bishal Bhattarai and Nikolai V. Priezjev Department of Mechanical and Materials Engineering

More information

Continuum-Microscopic Models

Continuum-Microscopic Models Scientific Computing and Numerical Analysis Seminar October 1, 2010 Outline Heterogeneous Multiscale Method Adaptive Mesh ad Algorithm Refinement Equation-Free Method Incorporates two scales (length, time

More information

High Order Accurate Curved-element Implementation in OpenFOAM for Discontinuous Galerkin Method

High Order Accurate Curved-element Implementation in OpenFOAM for Discontinuous Galerkin Method ,.47-52 htt://dx.doi.org/10.14257/astl.2016.142.08 High Order Accurate Curved-element Imlementation in OenFOAM for Discontinuous Galerkin Method Li-Yang Xu 1, Shuai Ye 1, Yong-Quan Feng 1, Hao Li 1, Xin-Hai

More information

Smooth Particle Hydrodynamics for Surf Zone Waves

Smooth Particle Hydrodynamics for Surf Zone Waves Smooth Particle Hydrodynamics for Surf Zone Waves Robert A. Dalrymple Dept of Civil Engineering The Johns Hopkins University 3400 North Charles Street Baltimore, MD 21218 phone: (410) 516-7923 fax: (410)

More information

Keywords: flows past a cylinder; detached-eddy-simulations; Spalart-Allmaras model; flow visualizations

Keywords: flows past a cylinder; detached-eddy-simulations; Spalart-Allmaras model; flow visualizations A TURBOLENT FLOW PAST A CYLINDER *Vít HONZEJK, **Karel FRAŇA *Technical University of Liberec Studentská 2, 461 17, Liberec, Czech Republic Phone:+ 420 485 353434 Email: vit.honzejk@seznam.cz **Technical

More information

Analysis of fluid-solid coupling vibration characteristics of probe based on ANSYS Workbench

Analysis of fluid-solid coupling vibration characteristics of probe based on ANSYS Workbench Analysis of fluid-solid coupling vibration characteristics of probe based on ANSYS Workbench He Wang 1, a, Changzheng Zhao 1, b and Hongzhi Chen 1, c 1 Shandong University of Science and Technology, Qingdao

More information

A hybrid slurry CFD model: Euler-Euler to Euler-Lagrange

A hybrid slurry CFD model: Euler-Euler to Euler-Lagrange 5th-6th December 2016 A hybrid slurry CFD model: Euler-Euler to Euler-Lagrange Alasdair Mackenzie Weir Advanced Research Centre, University of Strathclyde, Glasgow, Scotland Outline Background, context

More information

Cloud Cavitating Flow around an Axisymmetric Projectile in the shallow water

Cloud Cavitating Flow around an Axisymmetric Projectile in the shallow water Cloud Cavitating Flow around an Axisymmetric Projectile in the shallow water 1,2 Chang Xu; 1,2 Yiwei Wang*; 1,2 Jian Huang; 1,2 Chenguang Huang 1 Key Laboratory for Mechanics in Fluid Solid Coupling Systems,

More information

Problem description. The FCBI-C element is used in the fluid part of the model.

Problem description. The FCBI-C element is used in the fluid part of the model. Problem description This tutorial illustrates the use of ADINA for analyzing the fluid-structure interaction (FSI) behavior of a flexible splitter behind a 2D cylinder and the surrounding fluid in a channel.

More information

2D numerical simulation of ocean waves

2D numerical simulation of ocean waves 2D numerical simulation of ocean waves Qingjie. Du,*, Y.C. Dennis. Leung Department of Mechanical Engineering, The University of Hong Kong, Hong Kong, China * Corresponding author. Tel: +852 51743593,

More information

UCLA UCLA Previously Published Works

UCLA UCLA Previously Published Works UCLA UCLA Previously Published Works Title Parallel Markov chain Monte Carlo simulations Permalink https://escholarship.org/uc/item/4vh518kv Authors Ren, Ruichao Orkoulas, G. Publication Date 2007-06-01

More information

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA Jingxiao Xu 1, Jason Wang 2 1 LSTC 2 LSTC 1 Abstract Smooth particles hydrodynamics is a meshfree, Lagrangian particle method

More information

Particle Tracing Module

Particle Tracing Module Particle Tracing Module Particle Tracing Module Released with version 4.2a in October 2011 Add-on to COMSOL Multiphysics Combines with any COMSOL Multiphysics Module Particle Tracing Particle tracing

More information

An explicit feature control approach in structural topology optimization

An explicit feature control approach in structural topology optimization th World Congress on Structural and Multidisciplinary Optimisation 07 th -2 th, June 205, Sydney Australia An explicit feature control approach in structural topology optimization Weisheng Zhang, Xu Guo

More information

A hybrid slurry CFD model: Euler-Euler to Euler-Lagrange (in development)

A hybrid slurry CFD model: Euler-Euler to Euler-Lagrange (in development) MacKenzie, Alasdair (2017) A hybrid slurry CFD model : Euler-Euler to Euler-Lagrange (in development). In: 5th United Kingdom & Éire OpenFOAM User Meeting, 2017-01-16-2017-01-17, University College Dublin.,

More information

NUMERICAL ANALYSIS OF WIND EFFECT ON HIGH-DENSITY BUILDING AERAS

NUMERICAL ANALYSIS OF WIND EFFECT ON HIGH-DENSITY BUILDING AERAS NUMERICAL ANALYSIS OF WIND EFFECT ON HIGH-DENSITY BUILDING AERAS Bin ZHAO, Ying LI, Xianting LI and Qisen YAN Department of Thermal Engineering, Tsinghua University Beijing, 100084, P.R. China ABSTRACT

More information

PARALLEL SIMULATION OF A FLUID FLOW BY MEANS OF THE SPH METHOD: OPENMP VS. MPI COMPARISON. Pawe l Wróblewski, Krzysztof Boryczko

PARALLEL SIMULATION OF A FLUID FLOW BY MEANS OF THE SPH METHOD: OPENMP VS. MPI COMPARISON. Pawe l Wróblewski, Krzysztof Boryczko Computing and Informatics, Vol. 28, 2009, 139 150 PARALLEL SIMULATION OF A FLUID FLOW BY MEANS OF THE SPH METHOD: OPENMP VS. MPI COMPARISON Pawe l Wróblewski, Krzysztof Boryczko Department of Computer

More information

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn

Backward facing step Homework. Department of Fluid Mechanics. For Personal Use. Budapest University of Technology and Economics. Budapest, 2010 autumn Backward facing step Homework Department of Fluid Mechanics Budapest University of Technology and Economics Budapest, 2010 autumn Updated: October 26, 2010 CONTENTS i Contents 1 Introduction 1 2 The problem

More information

SERBIATRIB 15 STATIC PERFORMANCE OF SURFACE TEXTURED MAGNETORHEOLOGICAL FLUID JOURNAL BEARINGS. 14 th International Conference on Tribology

SERBIATRIB 15 STATIC PERFORMANCE OF SURFACE TEXTURED MAGNETORHEOLOGICAL FLUID JOURNAL BEARINGS. 14 th International Conference on Tribology Serbian Tribology Society SERBIATRIB 15 14 th International Conference on Tribology Belgrade, Serbia, 13 15 May 015 University of Belgrade, Faculty of Mechanical Engineering STATIC PERFORMANCE OF SURFACE

More information

Example 13 - Shock Tube

Example 13 - Shock Tube Example 13 - Shock Tube Summary This famous experiment is interesting for observing the shock-wave propagation. Moreover, this case uses the representation of perfect gas and compares the different formulations:

More information

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA

Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA Thermal Coupling Method Between SPH Particles and Solid Elements in LS-DYNA INTRODUCTION: Jingxiao Xu, Jason Wang LSTC Heat transfer is very important in many industrial and geophysical problems. Many

More information

Numerical Investigation of Non-Newtonian Laminar Flow in Curved Tube with Insert

Numerical Investigation of Non-Newtonian Laminar Flow in Curved Tube with Insert Numerical Investigation of Non-Newtonian Laminar Flow in Curved Tube with Insert A. Kadyyrov 1 1 Research center for power engineering problems Federal government budgetary institution of science Kazan

More information

Xuechang Ren a *, Canhui Wang, Yanshuang Li, Shaoxin Shen, Shou Liu

Xuechang Ren a *, Canhui Wang, Yanshuang Li, Shaoxin Shen, Shou Liu Available online at www.sciencedirect.com Physics Procedia 22 (2011) 493 497 2011 International Conference on Physics Science and Technology (ICPST 2011) Optical Tweezers Array System Based on 2D Photonic

More information

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015)

International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) International Power, Electronics and Materials Engineering Conference (IPEMEC 2015) Numerical Simulation of the Influence of Intake Grille Shape on the Aerodynamic Performance of a Passenger Car Longwei

More information

LATTICE-BOLTZMANN METHOD FOR THE SIMULATION OF LAMINAR MIXERS

LATTICE-BOLTZMANN METHOD FOR THE SIMULATION OF LAMINAR MIXERS 14 th European Conference on Mixing Warszawa, 10-13 September 2012 LATTICE-BOLTZMANN METHOD FOR THE SIMULATION OF LAMINAR MIXERS Felix Muggli a, Laurent Chatagny a, Jonas Lätt b a Sulzer Markets & Technology

More information

Simulation of Transient and Three-Dimensional Coating Flows Using a Volume-of-Fluid Technique

Simulation of Transient and Three-Dimensional Coating Flows Using a Volume-of-Fluid Technique Simulation of Transient and Three-Dimensional Coating Flows Using a Volume-of-Fluid Technique C.W. Hirt and J.E. Richardson, Flow Science, Inc., 1257 40th, Los Alamos, NM 87544 and Ken S. Chen, Sandia

More information

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation

A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation , pp.162-167 http://dx.doi.org/10.14257/astl.2016.138.33 A Novel Image Super-resolution Reconstruction Algorithm based on Modified Sparse Representation Liqiang Hu, Chaofeng He Shijiazhuang Tiedao University,

More information

INVESTIGATION OF HYDRAULIC PERFORMANCE OF A FLAP TYPE CHECK VALVE USING CFD AND EXPERIMENTAL TECHNIQUE

INVESTIGATION OF HYDRAULIC PERFORMANCE OF A FLAP TYPE CHECK VALVE USING CFD AND EXPERIMENTAL TECHNIQUE International Journal of Mechanical Engineering and Technology (IJMET) Volume 10, Issue 1, January 2019, pp. 409 413, Article ID: IJMET_10_01_042 Available online at http://www.ia aeme.com/ijmet/issues.asp?jtype=ijmet&vtype=

More information

http://miccom-center.org Topic: Continuum-Particle Simulation Software (COPSS-Hydrodynamics) Presenter: Jiyuan Li, The University of Chicago 2017 Summer School 1 What is Continuum-Particle Simulation?

More information

Influence of mesh quality and density on numerical calculation of heat exchanger with undulation in herringbone pattern

Influence of mesh quality and density on numerical calculation of heat exchanger with undulation in herringbone pattern Influence of mesh quality and density on numerical calculation of heat exchanger with undulation in herringbone pattern Václav Dvořák, Jan Novosád Abstract Research of devices for heat recovery is currently

More information

Parallel Direct Simulation Monte Carlo Computation Using CUDA on GPUs

Parallel Direct Simulation Monte Carlo Computation Using CUDA on GPUs Parallel Direct Simulation Monte Carlo Computation Using CUDA on GPUs C.-C. Su a, C.-W. Hsieh b, M. R. Smith b, M. C. Jermy c and J.-S. Wu a a Department of Mechanical Engineering, National Chiao Tung

More information

Surface wettability and contact angle analysis by dissipative particle dynamics

Surface wettability and contact angle analysis by dissipative particle dynamics Interaction and Multiscale Mechanics, Vol. 5, No. 4 (2012) 399-405 399 DOI: http://dx.doi.org/10.12989/imm.2012.5.4.399 Surface wettability and contact angle analysis by dissipative particle dynamics Tzung-Han

More information

Technical Report TR

Technical Report TR Technical Report TR-2015-09 Boundary condition enforcing methods for smoothed particle hydrodynamics Arman Pazouki 1, Baofang Song 2, Dan Negrut 1 1 University of Wisconsin-Madison, Madison, WI, 53706-1572,

More information

Guangxi University, Nanning , China *Corresponding author

Guangxi University, Nanning , China *Corresponding author 2017 2nd International Conference on Applied Mechanics and Mechatronics Engineering (AMME 2017) ISBN: 978-1-60595-521-6 Topological Optimization of Gantry Milling Machine Based on Finite Element Method

More information

14 Dec 94. Hydrocode Micro-Model Concept for Multi-Component Flow in Sediments Hans U. Mair

14 Dec 94. Hydrocode Micro-Model Concept for Multi-Component Flow in Sediments Hans U. Mair Hydrocode Micro-Model Concept for Multi-Component Flow in Sediments Hans U. Mair mairh@asme.org Background Hydrocodes are Computational Mechanics tools that simulate the compressible dynamics (i.e., shock

More information

2-D Tank Sloshing Using the Coupled Eulerian- LaGrangian (CEL) Capability of Abaqus/Explicit

2-D Tank Sloshing Using the Coupled Eulerian- LaGrangian (CEL) Capability of Abaqus/Explicit 2-D Tank Sloshing Using the Coupled Eulerian- LaGrangian (CEL) Capability of Abaqus/Explicit Jeff D. Tippmann, Sharat C. Prasad 2, and Parthiv N. Shah ATA Engineering, Inc. San Diego, CA 923 2 Dassault

More information

Microfluidics Lab 1. Engineering 1282H. Spring Team Y1. Mahnoor Naqvi. Spandan Shah. Stefan Heglas, Wednesday 3:00 PM

Microfluidics Lab 1. Engineering 1282H. Spring Team Y1. Mahnoor Naqvi. Spandan Shah. Stefan Heglas, Wednesday 3:00 PM Microfluidics Lab 1 Engineering 1282H Spring 2015 Team Y1 Mahnoor Naqvi Spandan Shah Stefan Heglas, Wednesday 3:00 PM Date of Submission: 03/09/15 Memorandum To: Stefan Heglas From: Team Y1 (Mahnoor Naqvi

More information

Towards New Heterogeneous Data Stream Clustering based on Density

Towards New Heterogeneous Data Stream Clustering based on Density , pp.30-35 http://dx.doi.org/10.14257/astl.2015.83.07 Towards New Heterogeneous Data Stream Clustering based on Density Chen Jin-yin, He Hui-hao Zhejiang University of Technology, Hangzhou,310000 chenjinyin@zjut.edu.cn

More information

Computational Modeling and Simulation of the Human Duodenum

Computational Modeling and Simulation of the Human Duodenum Computational Modeling and Simulation of the Human Duodenum Bostjan Hari 1, Serafim Bakalis 1, Peter Fryer 1 1 The University of Birmingham, School of Chemical Engineering, Edgbaston, Birmingham, United

More information

Lecture 1.1 Introduction to Fluid Dynamics

Lecture 1.1 Introduction to Fluid Dynamics Lecture 1.1 Introduction to Fluid Dynamics 1 Introduction A thorough study of the laws of fluid mechanics is necessary to understand the fluid motion within the turbomachinery components. In this introductory

More information

A. Introduction. B. GTNEUT Geometric Input

A. Introduction. B. GTNEUT Geometric Input III. IMPLEMENTATION OF THE GTNEUT 2D NEUTRALS TRANSPORT CODE FOR ROUTINE DIII-D ANALYSIS (Z. W. Friis and W. M. Stacey, Georgia Tech; T. D. Rognlien, Lawrence Livermore National Laboratory; R. J. Groebner,

More information

CFD MODELING FOR PNEUMATIC CONVEYING

CFD MODELING FOR PNEUMATIC CONVEYING CFD MODELING FOR PNEUMATIC CONVEYING Arvind Kumar 1, D.R. Kaushal 2, Navneet Kumar 3 1 Associate Professor YMCAUST, Faridabad 2 Associate Professor, IIT, Delhi 3 Research Scholar IIT, Delhi e-mail: arvindeem@yahoo.co.in

More information

Construction Scheme for Cloud Platform of NSFC Information System

Construction Scheme for Cloud Platform of NSFC Information System , pp.200-204 http://dx.doi.org/10.14257/astl.2016.138.40 Construction Scheme for Cloud Platform of NSFC Information System Jianjun Li 1, Jin Wang 1, Yuhui Zheng 2 1 Information Center, National Natural

More information

Performance Metrics of a Parallel Three Dimensional Two-Phase DSMC Method for Particle-Laden Flows

Performance Metrics of a Parallel Three Dimensional Two-Phase DSMC Method for Particle-Laden Flows Performance Metrics of a Parallel Three Dimensional Two-Phase DSMC Method for Particle-Laden Flows Benzi John* and M. Damodaran** Division of Thermal and Fluids Engineering, School of Mechanical and Aerospace

More information

Analysis of the CFD study of skiing curve slide way phase pneumatic freestyle athletes

Analysis of the CFD study of skiing curve slide way phase pneumatic freestyle athletes Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(4):969-973 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Analysis of the CFD study of skiing curve slide

More information

A Test Sequence Generation Method Based on Dependencies and Slices Jin-peng MO *, Jun-yi LI and Jian-wen HUANG

A Test Sequence Generation Method Based on Dependencies and Slices Jin-peng MO *, Jun-yi LI and Jian-wen HUANG 2017 2nd International Conference on Advances in Management Engineering and Information Technology (AMEIT 2017) ISBN: 978-1-60595-457-8 A Test Sequence Generation Method Based on Dependencies and Slices

More information

OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations

OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations OpenFOAM and Third Party Structural Solver for Fluid Structure Interaction Simulations Robert L. Campbell rlc138@arl.psu.edu Fluids and Structural Mechanics Office Applied Research Laboratory The Pennsylvania

More information

Microwell Mixing with Surface Tension

Microwell Mixing with Surface Tension Microwell Mixing with Surface Tension Nick Cox Supervised by Professor Bruce Finlayson University of Washington Department of Chemical Engineering June 6, 2007 Abstract For many applications in the pharmaceutical

More information

A new hybrid slurry CFD model compared with experimental results

A new hybrid slurry CFD model compared with experimental results 12th OpenFOAM Workshop, University of Exeter 24th-27th July 2017 A new hybrid slurry CFD model compared with experimental results Alasdair Mackenzie 1, Vanja Škurić 2, MT Stickland 1, WM Dempster 1 1.

More information

A 3D Virtual Earth Simulator for Earthquake Micro-physics: LSMearth.

A 3D Virtual Earth Simulator for Earthquake Micro-physics: LSMearth. A 3D Virtual Earth Simulator for Earthquake Micro-physics: LSMearth. David Place (1) and Peter Mora (1) (1) QUAKES, Department of EarthSciences, The University of Queensland, Brisbane, Australia (e-mail:

More information

Direct Numerical Simulation of Turbulent Boundary Layers at High Reynolds Numbers.

Direct Numerical Simulation of Turbulent Boundary Layers at High Reynolds Numbers. Direct Numerical Simulation of Turbulent Boundary Layers at High Reynolds Numbers. G. Borrell, J.A. Sillero and J. Jiménez, Corresponding author: guillem@torroja.dmt.upm.es School of Aeronautics, Universidad

More information

Computer Life (CPL) ISSN: Fluid-structure Coupling Simulation Analysis of Wavy Lip Seals

Computer Life (CPL) ISSN: Fluid-structure Coupling Simulation Analysis of Wavy Lip Seals Computer Life (CPL) ISSN: 1819-4818 Delivering Quality Science to the World Fluid-structure Coupling Simulation Analysis of Wavy Lip Seals Linghao Song a, Renpu Deng b and Chaonan Huang c College of Mechanical

More information

Model the P2P Attack in Computer Networks

Model the P2P Attack in Computer Networks International Conference on Logistics Engineering, Management and Computer Science (LEMCS 2015) Model the P2P Attack in Computer Networks Wei Wang * Science and Technology on Communication Information

More information

Automotive Thermal Management for Full Vehicles

Automotive Thermal Management for Full Vehicles Automotive Thermal Management for Full Vehicles Concerning the thermal behavior of automotive vehicles it is pursued to accomplish simulations for the full complexity of a vehicle's geometry and transport

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY. Analyzing wind flow around the square plate using ADINA Project. Ankur Bajoria

MASSACHUSETTS INSTITUTE OF TECHNOLOGY. Analyzing wind flow around the square plate using ADINA Project. Ankur Bajoria MASSACHUSETTS INSTITUTE OF TECHNOLOGY Analyzing wind flow around the square plate using ADINA 2.094 - Project Ankur Bajoria May 1, 2008 Acknowledgement I would like to thank ADINA R & D, Inc for the full

More information

RoboCup 2014 Rescue Simulation League Team Description. <CSU_Yunlu (China)>

RoboCup 2014 Rescue Simulation League Team Description. <CSU_Yunlu (China)> RoboCup 2014 Rescue Simulation League Team Description Fu Jiang, Jun Peng, Xiaoyong Zhang, Tao Cao, Muhong Guo, Longlong Jing, Zhifeng Gao, Fangming Zheng School of Information Science

More information

Development of the Compliant Mooring Line Model for FLOW-3D

Development of the Compliant Mooring Line Model for FLOW-3D Flow Science Report 08-15 Development of the Compliant Mooring Line Model for FLOW-3D Gengsheng Wei Flow Science, Inc. October 2015 1. Introduction Mooring systems are common in offshore structures, ship

More information

Recent applications of overset mesh technology in SC/Tetra

Recent applications of overset mesh technology in SC/Tetra Recent applications of overset mesh technology in SC/Tetra NIA CFD Seminar October 6, 2014 Tomohiro Irie Software Cradle Co., Ltd. 1 Contents Introduction Software Cradle SC/Tetra Background of Demands

More information

Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus

Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus Heat generation analysis of a rubber wheel using the steady-state transport analysis capability in Abaqus R. K. Luo 1, X. P. Wu 2 and A. Spinks 1 1 Trelleborg IAVS, 1 Hoods Close, Leicester, UK, LE4 2BN

More information

CFD modelling of thickened tailings Final project report

CFD modelling of thickened tailings Final project report 26.11.2018 RESEM Remote sensing supporting surveillance and operation of mines CFD modelling of thickened tailings Final project report Lic.Sc.(Tech.) Reeta Tolonen and Docent Esa Muurinen University of

More information

Anti-Distortion Image Contrast Enhancement Algorithm Based on Fuzzy Statistical Analysis of the Histogram Equalization

Anti-Distortion Image Contrast Enhancement Algorithm Based on Fuzzy Statistical Analysis of the Histogram Equalization , pp.101-106 http://dx.doi.org/10.14257/astl.2016.123.20 Anti-Distortion Image Contrast Enhancement Algorithm Based on Fuzzy Statistical Analysis of the Histogram Equalization Yao Nan 1, Wang KaiSheng

More information

CHRONO::HPC DISTRIBUTED MEMORY FLUID-SOLID INTERACTION SIMULATIONS. Felipe Gutierrez, Arman Pazouki, and Dan Negrut University of Wisconsin Madison

CHRONO::HPC DISTRIBUTED MEMORY FLUID-SOLID INTERACTION SIMULATIONS. Felipe Gutierrez, Arman Pazouki, and Dan Negrut University of Wisconsin Madison CHRONO::HPC DISTRIBUTED MEMORY FLUID-SOLID INTERACTION SIMULATIONS Felipe Gutierrez, Arman Pazouki, and Dan Negrut University of Wisconsin Madison Support: Rapid Innovation Fund, U.S. Army TARDEC ASME

More information

SPH: Why and what for?

SPH: Why and what for? SPH: Why and what for? 4 th SPHERIC training day David Le Touzé, Fluid Mechanics Laboratory, Ecole Centrale de Nantes / CNRS SPH What for and why? How it works? Why not for everything? Duality of SPH SPH

More information

Estimation of Flow Field & Drag for Aerofoil Wing

Estimation of Flow Field & Drag for Aerofoil Wing Estimation of Flow Field & Drag for Aerofoil Wing Mahantesh. HM 1, Prof. Anand. SN 2 P.G. Student, Dept. of Mechanical Engineering, East Point College of Engineering, Bangalore, Karnataka, India 1 Associate

More information

SPH METHOD IN APPLIED MECHANICS

SPH METHOD IN APPLIED MECHANICS U.P.B. Sci. Bull., Series D, Vol. 72, Iss. 4, 2010 ISSN 1454-2358 SPH METHOD IN APPLIED MECHANICS Vasile NĂSTĂSESCU 1 În această lucrare, autorul prezintă fundamente ale metodei SPH (Smoothed Particle

More information

Application Research of Wavelet Fusion Algorithm in Electrical Capacitance Tomography

Application Research of Wavelet Fusion Algorithm in Electrical Capacitance Tomography , pp.37-41 http://dx.doi.org/10.14257/astl.2013.31.09 Application Research of Wavelet Fusion Algorithm in Electrical Capacitance Tomography Lanying Li 1, Yun Zhang 1, 1 School of Computer Science and Technology

More information

Hydrodynamic Drag Force Predictions for Amphibious Military Vehicles

Hydrodynamic Drag Force Predictions for Amphibious Military Vehicles Hydrodynamic Drag Force Predictions for Amphibious Military Vehicles İlker Kurtoğlu FNSS Savunma Sistemleri A.Ş. Oğulbey Mah. Kumludere Cad. No: 11 Gölbaşı Ankara TURKEY Abstract Amphibious military vehicles

More information

Application of Finite Volume Method for Structural Analysis

Application of Finite Volume Method for Structural Analysis Application of Finite Volume Method for Structural Analysis Saeed-Reza Sabbagh-Yazdi and Milad Bayatlou Associate Professor, Civil Engineering Department of KNToosi University of Technology, PostGraduate

More information

Fluctuating Hydrodynamics Approaches for Mesoscopic Modeling and Simulation Applications in Soft Materials and Fluidics

Fluctuating Hydrodynamics Approaches for Mesoscopic Modeling and Simulation Applications in Soft Materials and Fluidics Fluctuating Hydrodynamics Approaches for Mesoscopic Modeling and Simulation Applications in Soft Materials and Fluidics Computational Methods and Software Summer School on Multiscale Modeling of Materials

More information

CIBSE Application Manual AM11 Building Performance Modelling Chapter 6: Ventilation Modelling

CIBSE Application Manual AM11 Building Performance Modelling Chapter 6: Ventilation Modelling Contents Background Ventilation modelling tool categories Simple tools and estimation techniques Analytical methods Zonal network methods Computational Fluid Dynamics (CFD) Semi-external spaces Summary

More information

EFFECT OF SURFACE TEXTURING ON HYDRODYNAMIC PERFORMANCE OF JOURNAL BEARINGS

EFFECT OF SURFACE TEXTURING ON HYDRODYNAMIC PERFORMANCE OF JOURNAL BEARINGS EFFECT OF SURFACE TEXTURING ON HYDRODYNAMIC PERFORMANCE OF JOURNAL BEARINGS Shahab Hamdavi, H. H. Ya and T. V. V. L. N. Rao Department of Mechanical Engineering, Universiti Teknologi PETRONAS, Malaysia

More information

A comparison between large-size shaking table test and numerical simulation results of subway station structure

A comparison between large-size shaking table test and numerical simulation results of subway station structure October 127, 28, Beijing, China A comparison between large-size shaking table test and numerical simulation results of subway station structure ABSTRACT : CHEN Guo-xing 1, ZUO Xi 1, ZHUANG Hai-yang 1,

More information

Transient Simulation of an Electrochemical Machining Process for Stamping and Extrusion Dies

Transient Simulation of an Electrochemical Machining Process for Stamping and Extrusion Dies Transient Simulation of an Electrochemical Machining Process for Stamping and Extrusion Dies M. Hackert-Oschätzchen 1, M. Penzel *1, M. Kreißig 1, M. Kowalick 1, M. Zinecker 1, G. Meichsner 2, A. Schubert

More information

Performance Analysis and Optimization of Gyrokinetic Torodial Code on TH-1A Supercomputer

Performance Analysis and Optimization of Gyrokinetic Torodial Code on TH-1A Supercomputer Performance Analysis and Optimization of Gyrokinetic Torodial Code on TH-1A Supercomputer Xiaoqian Zhu 1,2, Xin Liu 1, Xiangfei Meng 2, Jinghua Feng 2 1 School of Computer, National University of Defense

More information

LAMMPS, FLASH and MESA

LAMMPS, FLASH and MESA , and 22 June 2017 Westgrid Summer School, and What is? is a classical molecular dynamics simulator. Serial or parallel. GPU or CPU Not just classical: PIMD, Lattice Boltzmann Fluid,... Adapted from http://lammps.sandia.gov/tutorials.html,

More information

3D Modeling of Urban Areas for Built Environment CFD Applications

3D Modeling of Urban Areas for Built Environment CFD Applications 3D Modeling of Urban Areas for Built Environment CFD Applications using C A.W.M. (Jos) van Schijndel Eindhoven University of Technology P.O. Box 513; 5600 MB Eindhoven; Netherlands, A.W.M.v.Schijndel@tue.nl

More information

Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD)

Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD) Design Optimization of a Weather Radar Antenna using Finite Element Analysis (FEA) and Computational Fluid Dynamics (CFD) Fernando Prevedello Regis Ataídes Nícolas Spogis Wagner Ortega Guedes Fabiano Armellini

More information

Simulation Comparison Between PTC/Creo and Professional CAE Software Li-xin WANG*, Jun-hui LIU and Lin-kai CHEN

Simulation Comparison Between PTC/Creo and Professional CAE Software Li-xin WANG*, Jun-hui LIU and Lin-kai CHEN 2017 International Conference on Mechanical and Mechatronics Engineering (ICMME 2017) ISBN: 978-1-60595-440-0 Simulation Comparison Between PTC/Creo and Professional CAE Software Li-xin WANG*, Jun-hui

More information

A Data-Mining Approach for Wind Turbine Power Generation Performance Monitoring Based on Power Curve

A Data-Mining Approach for Wind Turbine Power Generation Performance Monitoring Based on Power Curve , pp.456-46 http://dx.doi.org/1.1457/astl.16. A Data-Mining Approach for Wind Turbine Power Generation Performance Monitoring Based on Power Curve Jianlou Lou 1,1, Heng Lu 1, Jia Xu and Zhaoyang Qu 1,

More information

A Comparative CFD Analysis of a Journal Bearing with a Microgroove on the Shaft & Journal

A Comparative CFD Analysis of a Journal Bearing with a Microgroove on the Shaft & Journal Proceedings of International Conference on Innovation & Research in Technology for Sustainable Development (ICIRT 2012), 01-03 November 2012 182 A Comparative CFD Analysis of a Journal Bearing with a Microgroove

More information

OpenFOAM Parallel Performance on HPC

OpenFOAM Parallel Performance on HPC OpenFOAM Parallel Performance on HPC Chua Kie Hian (Dept. of Civil & Environmental Engineering) 1 Introduction OpenFOAM is an open-source C++ class library used for computational continuum mechanics simulations.

More information

Velocity and Concentration Properties of Porous Medium in a Microfluidic Device

Velocity and Concentration Properties of Porous Medium in a Microfluidic Device Velocity and Concentration Properties of Porous Medium in a Microfluidic Device Rachel Freeman Department of Chemical Engineering University of Washington ChemE 499 Undergraduate Research December 14,

More information

BURN-IN OVEN MODELING USING COMPUTATIONAL FLUID DYNAMICS (CFD)

BURN-IN OVEN MODELING USING COMPUTATIONAL FLUID DYNAMICS (CFD) BURN-IN OVEN MODELING USING COMPUTATIONAL FLUID DYNAMICS (CFD) Jefferson S. Talledo ATD-P Technology Business Group Intel Technology Philippines, Inc., Gateway Business Park, Gen. Trias, Cavite jefferson.s.talledo@intel.com

More information

Effects of Buildings Layout on the Flow and Pollutant Dispersion in Non-uniform Street Canyons ZHANG Yunwei, PhD candidate

Effects of Buildings Layout on the Flow and Pollutant Dispersion in Non-uniform Street Canyons ZHANG Yunwei, PhD candidate Effects of Buildings Layout on the Flow and Pollutant Dispersion in Non-uniform Street Canyons ZHANG Yunwei, PhD candidate May 11, 2010, Xi an, Shannxi Province, China E_mail: zhangyunwe@gmail.com 1 Contents:

More information

Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics

Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics Development of an Integrated Computational Simulation Method for Fluid Driven Structure Movement and Acoustics I. Pantle Fachgebiet Strömungsmaschinen Karlsruher Institut für Technologie KIT Motivation

More information

ANALYSIS OF PIEZOELECTRIC MICRO PUMP

ANALYSIS OF PIEZOELECTRIC MICRO PUMP Int. J. Mech. Eng. & Rob. Res. 2013 S Nagakalyan and B Raghu Kumar, 2013 Research Paper ISSN 2278 0149 www.ijmerr.com Vol. 2, No. 3, July 2013 2013 IJMERR. All Rights Reserved ANALYSIS OF PIEZOELECTRIC

More information

Analysis, extensions and applications of the Finite-Volume Particle Method (FVPM) PN-II-RU-TE Synthesis of the technical report -

Analysis, extensions and applications of the Finite-Volume Particle Method (FVPM) PN-II-RU-TE Synthesis of the technical report - Analysis, extensions and applications of the Finite-Volume Particle Method (FVPM) PN-II-RU-TE-2011-3-0256 - Synthesis of the technical report - Phase 1: Preparation phase Authors: Delia Teleaga, Eliza

More information

Numerical Study of Turbulent Flow over Backward-Facing Step with Different Turbulence Models

Numerical Study of Turbulent Flow over Backward-Facing Step with Different Turbulence Models Numerical Study of Turbulent Flow over Backward-Facing Step with Different Turbulence Models D. G. Jehad *,a, G. A. Hashim b, A. K. Zarzoor c and C. S. Nor Azwadi d Department of Thermo-Fluids, Faculty

More information

EDEM CFD Coupling Interface: Programming Guide

EDEM CFD Coupling Interface: Programming Guide EDEM CFD Coupling Interface: Programming Guide EDEM 2.4, Revision 1 Copyrights and Trademarks Copyright 2012 DEM Solutions. All rights reserved. Information in this document is subject to change without

More information

Phase-field simulation of two-phase micro-flows in a Hele-Shaw cell

Phase-field simulation of two-phase micro-flows in a Hele-Shaw cell Computational Methods in Multiphase Flow III 7 Phase-field simulation of two-phase micro-flows in a Hele-Shaw cell Y. Sun & C. Beckermann Department of Mechanical and Industrial Engineering, University

More information

Investigation of cross flow over a circular cylinder at low Re using the Immersed Boundary Method (IBM)

Investigation of cross flow over a circular cylinder at low Re using the Immersed Boundary Method (IBM) Computational Methods and Experimental Measurements XVII 235 Investigation of cross flow over a circular cylinder at low Re using the Immersed Boundary Method (IBM) K. Rehman Department of Mechanical Engineering,

More information

Analysis of Flow through a Drip Irrigation Emitter

Analysis of Flow through a Drip Irrigation Emitter International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Analysis of Flow through a Drip Irrigation Emitter Reethi K 1, Mallikarjuna 2, Vijaya Raghu B 3 1 (B.E Scholar, Mechanical Engineering,

More information

HIGH PERFORMANCE COMPUTATION (HPC) FOR THE

HIGH PERFORMANCE COMPUTATION (HPC) FOR THE HIGH PERFORMANCE COMPUTATION (HPC) FOR THE DEVELOPMENT OF FLUIDIZED BED TECHNOLOGIES FOR BIOMASS GASIFICATION AND CO2 CAPTURE P. Fede, H. Neau, O. Simonin Université de Toulouse; INPT, UPS ; IMFT ; 31400

More information

Research on Heterogeneous Communication Network for Power Distribution Automation

Research on Heterogeneous Communication Network for Power Distribution Automation 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) Research on Heterogeneous Communication Network for Power Distribution Automation Qiang YU 1,a*, Hui HUANG

More information

Large Eddy Simulation of Flow over a Backward Facing Step using Fire Dynamics Simulator (FDS)

Large Eddy Simulation of Flow over a Backward Facing Step using Fire Dynamics Simulator (FDS) The 14 th Asian Congress of Fluid Mechanics - 14ACFM October 15-19, 2013; Hanoi and Halong, Vietnam Large Eddy Simulation of Flow over a Backward Facing Step using Fire Dynamics Simulator (FDS) Md. Mahfuz

More information

Optimization of Hydraulic Fluid Parameters in Automotive Torque Converters

Optimization of Hydraulic Fluid Parameters in Automotive Torque Converters Optimization of Hydraulic Fluid Parameters in Automotive Torque Converters S. Venkateswaran, and C. Mallika Parveen Abstract The fluid flow and the properties of the hydraulic fluid inside a torque converter

More information

1 Past Research and Achievements

1 Past Research and Achievements Parallel Mesh Generation and Adaptation using MAdLib T. K. Sheel MEMA, Universite Catholique de Louvain Batiment Euler, Louvain-La-Neuve, BELGIUM Email: tarun.sheel@uclouvain.be 1 Past Research and Achievements

More information

Design Considerations on Implementing an Indoor Moving Objects Management System

Design Considerations on Implementing an Indoor Moving Objects Management System , pp.60-64 http://dx.doi.org/10.14257/astl.2014.45.12 Design Considerations on Implementing an s Management System Qian Wang, Qianyuan Li, Na Wang, Peiquan Jin School of Computer Science and Technology,

More information