CFDnet: Computational Fluid Dynamics on the Internet

Size: px
Start display at page:

Download "CFDnet: Computational Fluid Dynamics on the Internet"

Transcription

1 CFDnet: Computational Fluid Dynamics on the Internet F. E. Ham, J. Militzer and A. Bemfica Department of Mechanical Engineering Dalhousie University - DalTech Halifax, Nova Scotia Abstract CFDnet is computational fluid dynamics (CFD) software that allows students to setup, solve, and visualize their own fluid flow problems. Unlike conventional CFD software, however, students access CFDnet over the Internet and dynamically control the server's meshing and solving routines from a Java Applet-based user interface running in their web browser. By using the platform-independent Java language to provide the user interface, student access to CFDnet is made independent of the type of client computer used. Additionally, by performing the computationally intensive meshing, solving, and visualization processes on a serverside network of powerful computers, this flow modeling tool is made available to users with relatively low speed, inexpensive computers. In the present contribution, the technical aspects implementing CFDnet are discussed, and the process of solving a sample problem is presented. In the fall of 1997, as part of an evaluation program, CFDnet was integrated into the fluid dynamics courses at two Canadian Universities. Results of this evaluation by students are reported. 1. Introduction Computational Fluid Dynamics (CFD) refers to the computer simulation of fluid flow and heat transfer. When the result of a CFD simulation is presented as a visualization of the calculated flow field, CFD can be a very powerful educational tool, giving students an appreciation for how fluid behaves under many different conditions. Although commercial CFD software packages have been available for many years, their penetration into the undergraduate engineering teaching of fluid mechanics and heat transfer has been quite limited. The following factors have contributed to this limited penetration: Software functionality is orientated towards industrial users, and costs tend to be prohibitively high for educational institutions. Users must either have or have access to relatively powerful, high speed computers.

2 Familiarity with these complex codes requires many hours of learning, with a substantial portion being software specific and not transferable to other programs. To address some of these problems we undertook to develop a unique CFD program called CFDnet. The main goals of the development program were: 1. Create software accessible to the largest possible number of users. 2. Develop a simple, modular user interface that minimizes both the learning time and the specialized knowledge required. 3. Provide, at least initially, free access to academic users (students and researchers). The Internet - specifically the world wide web - was selected as the development environment. With the advent of Java, engineering applications can now be embedded in web pages as Java Applets (Dietz 1996, 1997). The Java programming language offers the additional attraction of platform independence, requiring the development of a single code for many different types of computers. Low Internet bandwidth, however, currently makes it impractical to develop large software packages such as an entire CFD software package as an embedded Java Applet. Even when Internet bandwidth and the resulting transfer speeds become significantly faster, other issues make it undesirable to download and run the software entirely on the user s client computer. These issues include our desire to make the computationally intensive processes efficient for all users, even those with less powerful computers, and our desire to protect the developed software package from piracy. In consideration of these issues, CFDnet was developed with processing shared between three separate modules: 1) a small Java Applet-based user interface running on the client computer, 2) specialized server software to control the flow of information over the Internet between the server and client computers, and 3) relatively large, computationally intensive serverbased programs to setup, solve, and generate visualizations of the resulting flows (see Figure 1). Figure 1 - CFDnet's Technical Components The present version of CFDnet is limited to two-dimensional, laminar, incompressible flows, and is available on the Internet at In the fall term of 1997, this version was evaluated by engineering students at both Dalhousie University, Halifax, Nova Scotia, and the University of Victoria, British Columbia. To investigate the sensitivity to Internet bandwidth,

3 servers at Dalhousie were used for both testing locations. Results of this student evaluation are reported, and will be used to direct the future development of the software. 2. The Technical Components Figure 1 summarizes the relationship between the technical components of the CFDnet software package. Although only one client computer is shown in the figure, the software has been designed for the simultaneous connection of potentially hundreds of clients. The Java Applet-Based User Interface When a student accesses the CFDnet web site ( with a Java-enabled web browser (e.g. Netscape, Internet Explorer), the Java Applet-based graphical user interface (GUI) is automatically loaded along with the text and images of the web page. In its present form, the user interface consists of several class files and associated images that total about 80 Kbytes, making the download time about 20 seconds for modem connections, and virtually unnoticeable for the higher speed connections normally available at universities. Once started by the student, the GUI has the look and feel of a native application, and can be used to input the geometry, select the type of problem, and specify the boundary conditions and solution parameters. The GUI is also used to initiate and communicate with Figure 2 - CFDnet Java Applet-based GUI during inspection of the backward-facing step flow server-based processes including mesh generation, solution of the flow field, and the generation of visualizations, such as MPEG movies. Once a problem is solved, the same GUI facilitates inspection of the solution. Figure 2 illustrates the appearance of CFDnet s Java Applet-based GUI in the Windows 95 environment. Requiring the CFDnet user to download the GUI from our server means the user is always accessing the most recent, up to date version - i.e. "upgrades" are effectively instantaneous. In addition, no software downloading or installation by the user is required, apart from an appropriate Java-enabled

4 browser, and user access can be monitored and controlled if desired. Minimizing perceived response time by the user was the overriding factor in determining whether a particular process should be handled locally at the client, or remotely at the server. When a particular action requires a response time of less than several seconds (e.g. selecting a boundary, applying a boundary condition), all associated coding was provided with the GUI. For actions where a longer response time can be tolerated or is expected (e.g. generating the mesh, or solving the flow problem), the GUI was coded with only the method of initiating the process on the server, along with a filter for interpreting and displaying the results. This philosophy tends to minimize the size of the GUI, but can result in a single user making many simultaneous attempts to establish server connections. To overcome this potential bottleneck, a special client class was developed as part of the GUI that established and maintained a single connection to the server to support all interactive requests. To free up server resources, this client class was designed to disconnect after 15 seconds of inactivity. To further reduce GUI size and minimize coding effort, it was decided to use the media playing/viewing technology of the web browser environment whenever possible. For example, when visualizing a transient flow solution, server-based processes can generate either an animated gif image or MPEG movie, which can then be automatically downloaded and viewed by the browser. All Java GUI development, debugging, and compilation was performed using Sun Microsystem s Java Development Kit [freely available at Our development experience using Java compared very favourably to similar GUI development projects using Visual BASIC, and C++. However, because of the evolutionary nature of the Java language, and because of some platform-dependent bugs that appear to be present in several of the Java interpreters for different platforms, our efforts to minimize the size and complexity of the GUI proved very prudent. Specialized Server Software During the initial development of CFDnet, an effort was made to avoid writing a specialized server daemon, and use a standard http daemon in conjunction with server-side CGI programs to facilitate client-server communication. This arrangement was unable to provide truly interactive, 2-way communication between client and server processes, and it was necessary to develop a specialized server daemon, which we call artifacto. Written in ANSI C, and running on a UNIX server, artifacto directs the connection requests from the client GUI s on to the appropriate server based programs. Consequently, customized binary streams of data can be exchanged between client and server, permitting interactive client control of potentially very powerful programs. Server-based Processes CFD problems are traditionally slow to converge, and require a significant amount of computer memory. As such, they are normally run on very powerful computers. A network of UNIX-based workstations and PC s at Dalhousie University has been made publicly available for

5 testing CFDnet. In general, these computers are relatively powerful and fast, allowing for the quick and efficient solution of problems, independent of the client s computer speed. To allow the CFDnet server to make use of all computers on the local network as potential solvers, the meshing, solving, and visualization routines incorporate the publicly available parallel virtual machine (PVM) libraries and software [freely available at ftp://netlib2.cs.utk.edu/pvm3]. Initially developed by Los Alamos Laboratories, PVM provides a standard message passing interface, and allows the client s requested process to be initiated and run on any one of the network computers. Through this parallelization strategy, the requirements of a large number of users can be served simultaneously, and the server itself does not need to run any computationally intensive processes, thus improving response time. In its present form, individual CFDnet processes themselves are not parallelized. Although it is not the purpose of this paper to present the details of the flow solution algorithms used by CFDnet, the following information and references are provided for the interested reader. CFDnet uses multi-block structured meshes, generated using elliptic mesh generation with control functions selected to produce mesh orthogonality at the block boundaries [Thompson et al.]. The governing equations of fluid flow are discretized on the body-fitted grid using the Finite Analytic Method (FAM) [Sun and Militzer 1992a and 1992b; Ham and Militzer]. The primitive flow variables - u, v, and p - are solved using an iterative pressure correction scheme similar to SIMPLER [Patankar; Ham and Militzer]. These choices for mesh generation and flow solution algorithms were made because suitable meshing and solving routines already existed within our research group. The Internet-based philosophy of CFDnet could, however, easily be extended to other solution methods (e.g. finite volume or finite element methods, unstructured meshes, etc.). 3. Using CFDnet - A Sample Problem To make CFDnet a powerful educational tool for engineering students, the program described thus far is complemented by an expanding set of web-based help pages and tutorials. These pages are designed to be referenced by the student during their CFDnet session, and teach how to use CFDnet through the setup and solution of some interesting fluid mechanics problems. Figure 3 presents the geometry and inlet conditions for one sample problem available as a tutorial at the web site: the laminar backward facing step flow or sudden enlargement in a channel. This is a well understood simple recirculating flow, and is useful to introduce students to the concepts of flow separation, reattachment, and recirculation, and the Figure 3 - Geometry and Inlet Conditions for the Backward Facing Step Flow Problem

6 variation in all these with Reynolds number. The fluid enters the calculation region with a parabolic velocity distribution through the top half of the channel, and immediately separates from the boundary. At some distance down the channel, the bulk flow reattaches to the bottom boundary. Students are asked to use CFDnet to calculate the reattachment length as a function of Reynolds number (Re) for the range Re=100 to Re=800. At DalTech, students are given a 45 minutes introductory session, and then work in groups of two per computer through the following steps: 1) starting a CFDnet session 2) defining geometry 3) creating the grid (and refining if neccesary) 4) defining boundary conditions and solution parameters 5) solving the problem 6) analyzing results Figure 2 illustrates the GUI as it might appear during the analysis of results phase. A ruler in conjunction with flow tracers can be used to extract the reattachment length. In general, students have no difficulties in obtaining the solution and comparing their results with the experimental data provided in the tutorial. 3. Evaluation by Students As part of a joint evaluation project between the authors and McGraw Hill Ryerson, CFDnet was tested by over 100 undergraduate and graduate students at Dalhousie University - DalTech (Halifax, Nova Scotia), and the University of Victoria (British Columbia). This evaluation was carried out by incorporating CFDnet into the fluid mechanics courses of the fall term of In order to test the effect of Internet bandwidth on CFDnet s performance, the DalTech servers were used for both test locations. Figure 4 summarizes the average response of the students to four questions. Responses from the two test locations are separated in an effort to extract the effect of reduced bandwidth on software performance. In general, student Figure 4 - Summary of Student Evaluation of CFDnet reaction was positive.

7 CFDnet provided students with a sense of empowerment that allowed them to use their fluid mechanics knowledge to solve a flow problem and immediately visualize the solution. Although responses from UVic were consistently lower than those from DalTech, the general results were very encouraging. Student comments also helped to identify many improvements that will be incorporated in future versions of the program. 4. Conclusions CFDnet has demonstrated the possibilities of integrating Java with server-based processing to significantly boost the interactive power of Internet for engineering students. After a short introductory session, undergraduate engineering students were able to solve relevant and interesting fluid dynamics problems. Our experience has clearly demonstrated the value of introducing CFD in the undergraduate teaching of fluid mechanics. CFDnet is still in an early developmental stage and will require additional work before it reaches its full potential as a teaching tool. References Dietz, D. (1996) Java: A New Tool For Engineering. Mechanical Engineering, Vol. 118 No. 4 April 1996, pp Deitz, D. (1997) Product Development On The Web. Mechanical Engineering, Vol. 119 No. 1 January 1997, pp Ham, F. and Militzer, J. (1997) Development of the Finite Analytic Method for Body Fitted Multi-Zoned Structured Meshes. Proceeding of CFD97, The Fifth Annual Conference of the Computational Fluid Dynamics Society of Canada, May 25-27, 1997, Victoria, Canada. Patankar, S. V. (1980) Numerical Heat Transfer and Fluid Flow. Hemisphere Publishing Corporation. Sun, Y. and Militzer, J. (1992a) The Piece-Wise Parabolic Finite Analytic Method - Part 1: Theory. Applied Mathematical Modeling, Vol 16, pp , Oct Sun, Y. and Militzer, J. (1992b) The Piece-Wise Parabolic Finite Analytic Method - Part 2: Application. Applied Mathematical Modeling, Vol. 17, pp , February Thompson, J.F., Warsi, Z.U.A., and Mastin, C.W. (1985) Numerical Grid Generation, Foundations and Applications. North Holland, Amsterdam.

CFDNET RECENT DEVELOPMENTS AND FUTURE WORK

CFDNET RECENT DEVELOPMENTS AND FUTURE WORK CFDNET RECENT DEVELOPMENTS AND FUTURE WORK J. Militzer and Theo A. Bell Department of Mechanical Engineering Dalhousie University Halifax, P.O.Box 1000, Nova Scotia, B3J 2X4, Canada http://cfdnet.com,

More information

Simulation of Flow Development in a Pipe

Simulation of Flow Development in a Pipe Tutorial 4. Simulation of Flow Development in a Pipe Introduction The purpose of this tutorial is to illustrate the setup and solution of a 3D turbulent fluid flow in a pipe. The pipe networks are common

More information

Introduction to C omputational F luid Dynamics. D. Murrin

Introduction to C omputational F luid Dynamics. D. Murrin Introduction to C omputational F luid Dynamics D. Murrin Computational fluid dynamics (CFD) is the science of predicting fluid flow, heat transfer, mass transfer, chemical reactions, and related phenomena

More information

Driven Cavity Example

Driven Cavity Example BMAppendixI.qxd 11/14/12 6:55 PM Page I-1 I CFD Driven Cavity Example I.1 Problem One of the classic benchmarks in CFD is the driven cavity problem. Consider steady, incompressible, viscous flow in a square

More information

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP

MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Vol. 12, Issue 1/2016, 63-68 DOI: 10.1515/cee-2016-0009 MESHLESS SOLUTION OF INCOMPRESSIBLE FLOW OVER BACKWARD-FACING STEP Juraj MUŽÍK 1,* 1 Department of Geotechnics, Faculty of Civil Engineering, University

More information

Introduction to Computational Fluid Dynamics Mech 122 D. Fabris, K. Lynch, D. Rich

Introduction to Computational Fluid Dynamics Mech 122 D. Fabris, K. Lynch, D. Rich Introduction to Computational Fluid Dynamics Mech 122 D. Fabris, K. Lynch, D. Rich 1 Computational Fluid dynamics Computational fluid dynamics (CFD) is the analysis of systems involving fluid flow, heat

More information

Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways

Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways Three Dimensional Numerical Simulation of Turbulent Flow Over Spillways Latif Bouhadji ASL-AQFlow Inc., Sidney, British Columbia, Canada Email: lbouhadji@aslenv.com ABSTRACT Turbulent flows over a spillway

More information

Flow and Heat Transfer in a Mixing Elbow

Flow and Heat Transfer in a Mixing Elbow Flow and Heat Transfer in a Mixing Elbow Objectives The main objectives of the project are to learn (i) how to set up and perform flow simulations with heat transfer and mixing, (ii) post-processing and

More information

Numerical and theoretical analysis of shock waves interaction and reflection

Numerical and theoretical analysis of shock waves interaction and reflection Fluid Structure Interaction and Moving Boundary Problems IV 299 Numerical and theoretical analysis of shock waves interaction and reflection K. Alhussan Space Research Institute, King Abdulaziz City for

More information

FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016

FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016 FLUENT Secondary flow in a teacup Author: John M. Cimbala, Penn State University Latest revision: 26 January 2016 Note: These instructions are based on an older version of FLUENT, and some of the instructions

More information

Simulation of Turbulent Flow in an Asymmetric Diffuser

Simulation of Turbulent Flow in an Asymmetric Diffuser Simulation of Turbulent Flow in an Asymmetric Diffuser 1. Purpose 58:160 Intermediate Mechanics of Fluids CFD LAB 3 By Tao Xing and Fred Stern IIHR-Hydroscience & Engineering The University of Iowa C.

More information

Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent

Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent MEGR 7090-003, Computational Fluid Dynamics :1 7 Spring 2015 Computational Study of Laminar Flowfield around a Square Cylinder using Ansys Fluent Rahul R Upadhyay Master of Science, Dept of Mechanical

More information

A parallel computing framework and a modular collaborative cfd workbench in Java

A parallel computing framework and a modular collaborative cfd workbench in Java Advances in Fluid Mechanics VI 21 A parallel computing framework and a modular collaborative cfd workbench in Java S. Sengupta & K. P. Sinhamahapatra Department of Aerospace Engineering, IIT Kharagpur,

More information

Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard

Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard Verification and Validation in CFD and Heat Transfer: ANSYS Practice and the New ASME Standard Dimitri P. Tselepidakis & Lewis Collins ASME 2012 Verification and Validation Symposium May 3 rd, 2012 1 Outline

More information

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil

Verification and Validation of Turbulent Flow around a Clark-Y Airfoil Verification and Validation of Turbulent Flow around a Clark-Y Airfoil 1. Purpose 58:160 Intermediate Mechanics of Fluids CFD LAB 2 By Tao Xing and Fred Stern IIHR-Hydroscience & Engineering The University

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

Tutorial 2. Modeling Periodic Flow and Heat Transfer

Tutorial 2. Modeling Periodic Flow and Heat Transfer Tutorial 2. Modeling Periodic Flow and Heat Transfer Introduction: Many industrial applications, such as steam generation in a boiler or air cooling in the coil of an air conditioner, can be modeled as

More information

Program: Advanced Certificate Program

Program: Advanced Certificate Program Program: Advanced Certificate Program Course: CFD-Vehicle Aerodynamics Directorate of Training and Lifelong Learning #470-P, Peenya Industrial Area, 4th Phase Peenya, Bengaluru 560 058 www.msruas.ac.in

More information

Flow in an Intake Manifold

Flow in an Intake Manifold Tutorial 2. Flow in an Intake Manifold Introduction The purpose of this tutorial is to model turbulent flow in a simple intake manifold geometry. An intake manifold is a system of passages which carry

More information

Pressure Correction Scheme for Incompressible Fluid Flow

Pressure Correction Scheme for Incompressible Fluid Flow AALTO UNIVERSITY School of Chemical Technology CHEM-E7160 Fluid Flow in Process Units Pressure Correction Scheme for Incompressible Fluid Flow Ong Chin Kai 620503 Lee De Ming Benedict 620448 Page 1 Abstract

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

The viscous forces on the cylinder are proportional to the gradient of the velocity field at the

The viscous forces on the cylinder are proportional to the gradient of the velocity field at the Fluid Dynamics Models : Flow Past a Cylinder Flow Past a Cylinder Introduction The flow of fluid behind a blunt body such as an automobile is difficult to compute due to the unsteady flows. The wake behind

More information

CFD-1. Introduction: What is CFD? T. J. Craft. Msc CFD-1. CFD: Computational Fluid Dynamics

CFD-1. Introduction: What is CFD? T. J. Craft. Msc CFD-1. CFD: Computational Fluid Dynamics School of Mechanical Aerospace and Civil Engineering CFD-1 T. J. Craft George Begg Building, C41 Msc CFD-1 Reading: J. Ferziger, M. Peric, Computational Methods for Fluid Dynamics H.K. Versteeg, W. Malalasekara,

More information

Simulation of Turbulent Flow over the Ahmed Body

Simulation of Turbulent Flow over the Ahmed Body Simulation of Turbulent Flow over the Ahmed Body 58:160 Intermediate Mechanics of Fluids CFD LAB 4 By Timur K. Dogan, Michael Conger, Maysam Mousaviraad, and Fred Stern IIHR-Hydroscience & Engineering

More information

MODELLING-Representing space and time in a numerical model

MODELLING-Representing space and time in a numerical model MODELLING-Representing space and time in a numerical model Simulation parameters When setting up any simulation, whether computer-based or to be computed manually, it is important to identify the parameters

More information

Block Nested Refinement and Numerical Estimation for Sudden Expansion Pipes in Various Step Angles

Block Nested Refinement and Numerical Estimation for Sudden Expansion Pipes in Various Step Angles Block Nested finement and Numerical Estimation for Sudden Expansion Pipes in Various Step Angles CHRISTINA G. GEORGANTOPOULOU School of Engineering, Bahrain Polytechnic Isa Town, Po box 33349 KINGDOM OF

More information

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING

NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Review of the Air Force Academy No.3 (35)/2017 NUMERICAL 3D TRANSONIC FLOW SIMULATION OVER A WING Cvetelina VELKOVA Department of Technical Mechanics, Naval Academy Nikola Vaptsarov,Varna, Bulgaria (cvetelina.velkova1985@gmail.com)

More information

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Introduction This tutorial illustrates the setup and solution of the two-dimensional turbulent fluid flow and heat

More information

An Overview of Computational Fluid Dynamics

An Overview of Computational Fluid Dynamics An Overview of Computational Fluid Dynamics Dr. Nor Azwadi bin Che Sidik Faculty of Mechanical Engineering Universiti Teknologi Malaysia INSPIRING CREATIVE AND INNOVATIVE MINDS 1 What is CFD? C computational

More information

On the numerical accuracy of particle dispersion simulation in operating theatres

On the numerical accuracy of particle dispersion simulation in operating theatres On the numerical accuracy of particle dispersion simulation in operating theatres Wiebe Zoon 1,*, Marcel Loomans 1 and Jan Hensen 1 1 Eindhoven University of Technology, Eindhoven, the Netherlands * Corresponding

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

CFD Analysis of 2-D Unsteady Flow Past a Square Cylinder at an Angle of Incidence

CFD Analysis of 2-D Unsteady Flow Past a Square Cylinder at an Angle of Incidence CFD Analysis of 2-D Unsteady Flow Past a Square Cylinder at an Angle of Incidence Kavya H.P, Banjara Kotresha 2, Kishan Naik 3 Dept. of Studies in Mechanical Engineering, University BDT College of Engineering,

More information

Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil

Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil Workbench Tutorial Flow Over an Airfoil, Page 1 ANSYS Workbench Tutorial Flow Over an Airfoil Authors: Scott Richards, Keith Martin, and John M. Cimbala, Penn State University Latest revision: 17 January

More information

Stream Function-Vorticity CFD Solver MAE 6263

Stream Function-Vorticity CFD Solver MAE 6263 Stream Function-Vorticity CFD Solver MAE 66 Charles O Neill April, 00 Abstract A finite difference CFD solver was developed for transient, two-dimensional Cartesian viscous flows. Flow parameters are solved

More information

Effect of Position of Wall Mounted Surface Protrusion in Drag Characteristics At Low Reynolds Number

Effect of Position of Wall Mounted Surface Protrusion in Drag Characteristics At Low Reynolds Number ISSN (e): 2250 3005 Volume, 07 Issue, 11 November 2017 International Journal of Computational Engineering Research (IJCER) Effect of Position of Wall Mounted Surface Protrusion in Drag Characteristics

More information

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4

Strömningslära Fluid Dynamics. Computer laboratories using COMSOL v4.4 UMEÅ UNIVERSITY Department of Physics Claude Dion Olexii Iukhymenko May 15, 2015 Strömningslära Fluid Dynamics (5FY144) Computer laboratories using COMSOL v4.4!! Report requirements Computer labs must

More information

COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY. Abstract. I. Introduction

COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY. Abstract. I. Introduction COMPUTATIONAL AND EXPERIMENTAL INTERFEROMETRIC ANALYSIS OF A CONE-CYLINDER-FLARE BODY John R. Cipolla 709 West Homeway Loop, Citrus Springs FL 34434 Abstract A series of computational fluid dynamic (CFD)

More information

Solution Recording and Playback: Vortex Shedding

Solution Recording and Playback: Vortex Shedding STAR-CCM+ User Guide 6663 Solution Recording and Playback: Vortex Shedding This tutorial demonstrates how to use the solution recording and playback module for capturing the results of transient phenomena.

More information

computational Fluid Dynamics - Prof. V. Esfahanian

computational Fluid Dynamics - Prof. V. Esfahanian Three boards categories: Experimental Theoretical Computational Crucial to know all three: Each has their advantages and disadvantages. Require validation and verification. School of Mechanical Engineering

More information

Simulation of Laminar Pipe Flows

Simulation of Laminar Pipe Flows Simulation of Laminar Pipe Flows 57:020 Mechanics of Fluids and Transport Processes CFD PRELAB 1 By Timur Dogan, Michael Conger, Maysam Mousaviraad, Tao Xing and Fred Stern IIHR-Hydroscience & Engineering

More information

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

Verification of Laminar and Validation of Turbulent Pipe Flows

Verification of Laminar and Validation of Turbulent Pipe Flows 1 Verification of Laminar and Validation of Turbulent Pipe Flows 1. Purpose ME:5160 Intermediate Mechanics of Fluids CFD LAB 1 (ANSYS 18.1; Last Updated: Aug. 1, 2017) By Timur Dogan, Michael Conger, Dong-Hwan

More information

ANSYS FLUENT. Lecture 3. Basic Overview of Using the FLUENT User Interface L3-1. Customer Training Material

ANSYS FLUENT. Lecture 3. Basic Overview of Using the FLUENT User Interface L3-1. Customer Training Material Lecture 3 Basic Overview of Using the FLUENT User Interface Introduction to ANSYS FLUENT L3-1 Parallel Processing FLUENT can readily be run across many processors in parallel. This will greatly speed up

More information

CHAPTER 1. Introduction

CHAPTER 1. Introduction ME 475: Computer-Aided Design of Structures 1-1 CHAPTER 1 Introduction 1.1 Analysis versus Design 1.2 Basic Steps in Analysis 1.3 What is the Finite Element Method? 1.4 Geometrical Representation, Discretization

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

Tutorial: Heat and Mass Transfer with the Mixture Model

Tutorial: Heat and Mass Transfer with the Mixture Model Tutorial: Heat and Mass Transfer with the Mixture Model Purpose The purpose of this tutorial is to demonstrate the use of mixture model in FLUENT 6.0 to solve a mixture multiphase problem involving heat

More information

Appendix: To be performed during the lab session

Appendix: To be performed during the lab session Appendix: To be performed during the lab session Flow over a Cylinder Two Dimensional Case Using ANSYS Workbench Simple Mesh Latest revision: September 18, 2014 The primary objective of this Tutorial is

More information

CFD design tool for industrial applications

CFD design tool for industrial applications Sixth LACCEI International Latin American and Caribbean Conference for Engineering and Technology (LACCEI 2008) Partnering to Success: Engineering, Education, Research and Development June 4 June 6 2008,

More information

A NURBS-BASED APPROACH FOR SHAPE AND TOPOLOGY OPTIMIZATION OF FLOW DOMAINS

A NURBS-BASED APPROACH FOR SHAPE AND TOPOLOGY OPTIMIZATION OF FLOW DOMAINS 6th European Conference on Computational Mechanics (ECCM 6) 7th European Conference on Computational Fluid Dynamics (ECFD 7) 11 15 June 2018, Glasgow, UK A NURBS-BASED APPROACH FOR SHAPE AND TOPOLOGY OPTIMIZATION

More information

Computational Flow Analysis of Para-rec Bluff Body at Various Reynold s Number

Computational Flow Analysis of Para-rec Bluff Body at Various Reynold s Number International Journal of Engineering Research and Technology. ISSN 0974-3154 Volume 6, Number 5 (2013), pp. 667-674 International Research Publication House http://www.irphouse.com Computational Flow Analysis

More information

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Objective: The objective of this laboratory is to introduce how to use FLUENT to solve both transient and natural convection problems.

More information

Module D: Laminar Flow over a Flat Plate

Module D: Laminar Flow over a Flat Plate Module D: Laminar Flow over a Flat Plate Summary... Problem Statement Geometry and Mesh Creation Problem Setup Solution. Results Validation......... Mesh Refinement.. Summary This ANSYS FLUENT tutorial

More information

Multigrid Solvers in CFD. David Emerson. Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK

Multigrid Solvers in CFD. David Emerson. Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK Multigrid Solvers in CFD David Emerson Scientific Computing Department STFC Daresbury Laboratory Daresbury, Warrington, WA4 4AD, UK david.emerson@stfc.ac.uk 1 Outline Multigrid: general comments Incompressible

More information

Educational Fusion. Implementing a Production Quality User Interface With JFC

Educational Fusion. Implementing a Production Quality User Interface With JFC Educational Fusion Implementing a Production Quality User Interface With JFC Kevin Kennedy Prof. Seth Teller 6.199 May 1999 Abstract Educational Fusion is a online algorithmic teaching program implemented

More information

ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step

ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step ANSYS AIM Tutorial Turbulent Flow Over a Backward Facing Step Author(s): Sebastian Vecchi, ANSYS Created using ANSYS AIM 18.1 Problem Specification Pre-Analysis & Start Up Governing Equation Start-Up Geometry

More information

Compressible Flow in a Nozzle

Compressible Flow in a Nozzle SPC 407 Supersonic & Hypersonic Fluid Dynamics Ansys Fluent Tutorial 1 Compressible Flow in a Nozzle Ahmed M Nagib Elmekawy, PhD, P.E. Problem Specification Consider air flowing at high-speed through a

More information

CFD Analysis on Heat Transfer Through Different Extended Surfaces

CFD Analysis on Heat Transfer Through Different Extended Surfaces CFD Analysis on Heat Transfer Through Different Extended Surfaces Ravindra Kondaguli 1 1 Department of Mechanical Engineering BLDECET Vijayapur Abstract: The present work includes CFD analysis and comparison

More information

Calculate a solution using the pressure-based coupled solver.

Calculate a solution using the pressure-based coupled solver. Tutorial 19. Modeling Cavitation Introduction This tutorial examines the pressure-driven cavitating flow of water through a sharpedged orifice. This is a typical configuration in fuel injectors, and brings

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

A B C D E. Settings Choose height, H, free stream velocity, U, and fluid (dynamic viscosity and density ) so that: Reynolds number

A B C D E. Settings Choose height, H, free stream velocity, U, and fluid (dynamic viscosity and density ) so that: Reynolds number Individual task Objective To derive the drag coefficient for a 2D object, defined as where D (N/m) is the aerodynamic drag force (per unit length in the third direction) acting on the object. The object

More information

Modeling Unsteady Compressible Flow

Modeling Unsteady Compressible Flow Tutorial 4. Modeling Unsteady Compressible Flow Introduction In this tutorial, FLUENT s density-based implicit solver is used to predict the timedependent flow through a two-dimensional nozzle. As an initial

More information

Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes

Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes Express Introductory Training in ANSYS Fluent Workshop 06 Using Moving Reference Frames and Sliding Meshes Dimitrios Sofialidis Technical Manager, SimTec Ltd. Mechanical Engineer, PhD PRACE Autumn School

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

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

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

More information

SPICE based Circuit Analysis using Web Pages

SPICE based Circuit Analysis using Web Pages SPICE based Circuit Analysis using Web Pages Session 2520 Bogdan Wilamowski, Aleksander Malinowski, John Regnier University of Wyoming / Bradley University / Micron Technology Abstract An application called

More information

Optimisation of liquid flow in cavitation tunnel using CFD method

Optimisation of liquid flow in cavitation tunnel using CFD method Optimisation of liquid flow in cavitation tunnel using CFD method Robert Jasionowski 1,*, and Waldemar Kostrzewa 1 1 Maritime University of Szczecin, Institute of Basic Technical Sciences, 2-4 Willowa

More information

Unique Airflow Visualization Techniques for the Design and Validation of Above-Plenum Data Center CFD Models

Unique Airflow Visualization Techniques for the Design and Validation of Above-Plenum Data Center CFD Models Unique Airflow Visualization Techniques for the Design and Validation of Above-Plenum Data Center CFD Models The MIT Faculty has made this article openly available. Please share how this access benefits

More information

Computational Fluid Dynamics (CFD) Simulation in Air Duct Channels Using STAR CCM+

Computational Fluid Dynamics (CFD) Simulation in Air Duct Channels Using STAR CCM+ Available onlinewww.ejaet.com European Journal of Advances in Engineering and Technology, 2017,4 (3): 216-220 Research Article ISSN: 2394-658X Computational Fluid Dynamics (CFD) Simulation in Air Duct

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

Performance of Implicit Solver Strategies on GPUs

Performance of Implicit Solver Strategies on GPUs 9. LS-DYNA Forum, Bamberg 2010 IT / Performance Performance of Implicit Solver Strategies on GPUs Prof. Dr. Uli Göhner DYNAmore GmbH Stuttgart, Germany Abstract: The increasing power of GPUs can be used

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

Boundary/Contour Fitted Grid Generation for Effective Visualizations in a Digital Library of Mathematical Functions

Boundary/Contour Fitted Grid Generation for Effective Visualizations in a Digital Library of Mathematical Functions Boundary/Contour Fitted Grid Generation for Effective Visualizations in a Digital Library of Mathematical Functions Bonita Saunders Qiming Wang National Institute of Standards and Technology Bureau Drive

More information

A Grid Web Portal for Aerospace

A Grid Web Portal for Aerospace A Grid Web Portal for Aerospace Sang Boem Lim*, Joobum Kim*, Nam Gyu Kim*, June H. Lee*, Chongam Kim, Yoonhee Kim * Supercomputing Application Technology Department, Korea Institute of Science and Technology

More information

Optimizing Bio-Inspired Flow Channel Design on Bipolar Plates of PEM Fuel Cells

Optimizing Bio-Inspired Flow Channel Design on Bipolar Plates of PEM Fuel Cells Excerpt from the Proceedings of the COMSOL Conference 2010 Boston Optimizing Bio-Inspired Flow Channel Design on Bipolar Plates of PEM Fuel Cells James A. Peitzmeier *1, Steven Kapturowski 2 and Xia Wang

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

The Virtual Lab for Controlling Real Experiments via Internet

The Virtual Lab for Controlling Real Experiments via Internet The Virtual Lab for Controlling Real Experiments via Internet Christof Röhrig and Andreas Jochheim Department of Electrical Engineering University of Hagen D-58084 Hagen, Germany christof.roehrig@fernuni-hagen.de

More information

Ashwin Shridhar et al. Int. Journal of Engineering Research and Applications ISSN : , Vol. 5, Issue 6, ( Part - 5) June 2015, pp.

Ashwin Shridhar et al. Int. Journal of Engineering Research and Applications ISSN : , Vol. 5, Issue 6, ( Part - 5) June 2015, pp. RESEARCH ARTICLE OPEN ACCESS Conjugate Heat transfer Analysis of helical fins with airfoil crosssection and its comparison with existing circular fin design for air cooled engines employing constant rectangular

More information

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Introduction The motion of rotating components is often complicated by the fact that the rotational axis about which

More information

Simulation of Turbulent Flow over the Ahmed Body

Simulation of Turbulent Flow over the Ahmed Body 1 Simulation of Turbulent Flow over the Ahmed Body ME:5160 Intermediate Mechanics of Fluids CFD LAB 4 (ANSYS 18.1; Last Updated: Aug. 18, 2016) By Timur Dogan, Michael Conger, Dong-Hwan Kim, Maysam Mousaviraad,

More information

Investigation and Feasibility Study of Linux and Windows in the Computational Processing Power of ANSYS Software

Investigation and Feasibility Study of Linux and Windows in the Computational Processing Power of ANSYS Software Science Arena Publications Specialty Journal of Electronic and Computer Sciences Available online at www.sciarena.com 2017, Vol, 3 (1): 40-46 Investigation and Feasibility Study of Linux and Windows in

More information

Lecture 1 GENERAL INTRODUCTION: HISTORICAL BACKGROUND AND SPECTRUM OF APPLICATIONS

Lecture 1 GENERAL INTRODUCTION: HISTORICAL BACKGROUND AND SPECTRUM OF APPLICATIONS Lecture 1 GENERAL INTRODUCTION: HISTORICAL BACKGROUND AND SPECTRUM OF APPLICATIONS 1.1 INTRODUCTION Analysis of physical problems in any area of engineering and science involves a multipronged approach:

More information

Using the Eulerian Multiphase Model for Granular Flow

Using the Eulerian Multiphase Model for Granular Flow Tutorial 21. Using the Eulerian Multiphase Model for Granular Flow Introduction Mixing tanks are used to maintain solid particles or droplets of heavy fluids in suspension. Mixing may be required to enhance

More information

Shape optimisation using breakthrough technologies

Shape optimisation using breakthrough technologies Shape optimisation using breakthrough technologies Compiled by Mike Slack Ansys Technical Services 2010 ANSYS, Inc. All rights reserved. 1 ANSYS, Inc. Proprietary Introduction Shape optimisation technologies

More information

Turbulent Premixed Combustion with Flamelet Generated Manifolds in COMSOL Multiphysics

Turbulent Premixed Combustion with Flamelet Generated Manifolds in COMSOL Multiphysics Turbulent Premixed Combustion with Flamelet Generated Manifolds in COMSOL Multiphysics Rob J.M Bastiaans* Eindhoven University of Technology *Corresponding author: PO box 512, 5600 MB, Eindhoven, r.j.m.bastiaans@tue.nl

More information

Analysis of an airfoil

Analysis of an airfoil UNDERGRADUATE RESEARCH FALL 2010 Analysis of an airfoil using Computational Fluid Dynamics Tanveer Chandok 12/17/2010 Independent research thesis at the Georgia Institute of Technology under the supervision

More information

A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation

A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation A High-Order Accurate Unstructured GMRES Solver for Poisson s Equation Amir Nejat * and Carl Ollivier-Gooch Department of Mechanical Engineering, The University of British Columbia, BC V6T 1Z4, Canada

More information

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial

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

More information

Computational Simulation of the Wind-force on Metal Meshes

Computational Simulation of the Wind-force on Metal Meshes 16 th Australasian Fluid Mechanics Conference Crown Plaza, Gold Coast, Australia 2-7 December 2007 Computational Simulation of the Wind-force on Metal Meshes Ahmad Sharifian & David R. Buttsworth Faculty

More information

ISSN(PRINT): ,(ONLINE): ,VOLUME-1,ISSUE-1,

ISSN(PRINT): ,(ONLINE): ,VOLUME-1,ISSUE-1, NUMERICAL ANALYSIS OF THE TUBE BANK PRESSURE DROP OF A SHELL AND TUBE HEAT EXCHANGER Kartik Ajugia, Kunal Bhavsar Lecturer, Mechanical Department, SJCET Mumbai University, Maharashtra Assistant Professor,

More information

Modeling Flow Through Porous Media

Modeling Flow Through Porous Media Tutorial 7. Modeling Flow Through Porous Media Introduction Many industrial applications involve the modeling of flow through porous media, such as filters, catalyst beds, and packing. This tutorial illustrates

More information

FAST ALGORITHMS FOR CALCULATIONS OF VISCOUS INCOMPRESSIBLE FLOWS USING THE ARTIFICIAL COMPRESSIBILITY METHOD

FAST ALGORITHMS FOR CALCULATIONS OF VISCOUS INCOMPRESSIBLE FLOWS USING THE ARTIFICIAL COMPRESSIBILITY METHOD TASK QUARTERLY 12 No 3, 273 287 FAST ALGORITHMS FOR CALCULATIONS OF VISCOUS INCOMPRESSIBLE FLOWS USING THE ARTIFICIAL COMPRESSIBILITY METHOD ZBIGNIEW KOSMA Institute of Applied Mechanics, Technical University

More information

Aerodynamic Study of a Realistic Car W. TOUGERON

Aerodynamic Study of a Realistic Car W. TOUGERON Aerodynamic Study of a Realistic Car W. TOUGERON Tougeron CFD Engineer 2016 Abstract This document presents an aerodynamic CFD study of a realistic car geometry. The aim is to demonstrate the efficiency

More information

A higher-order finite volume method with collocated grid arrangement for incompressible flows

A higher-order finite volume method with collocated grid arrangement for incompressible flows Computational Methods and Experimental Measurements XVII 109 A higher-order finite volume method with collocated grid arrangement for incompressible flows L. Ramirez 1, X. Nogueira 1, S. Khelladi 2, J.

More information

Prerequisites: This tutorial assumes that you are familiar with the menu structure in FLUENT, and that you have solved Tutorial 1.

Prerequisites: This tutorial assumes that you are familiar with the menu structure in FLUENT, and that you have solved Tutorial 1. Tutorial 22. Postprocessing Introduction: In this tutorial, the postprocessing capabilities of FLUENT are demonstrated for a 3D laminar flow involving conjugate heat transfer. The flow is over a rectangular

More information

Non-Newtonian Transitional Flow in an Eccentric Annulus

Non-Newtonian Transitional Flow in an Eccentric Annulus Tutorial 8. Non-Newtonian Transitional Flow in an Eccentric Annulus Introduction The purpose of this tutorial is to illustrate the setup and solution of a 3D, turbulent flow of a non-newtonian fluid. Turbulent

More information

Faculty of Mechanical and Manufacturing Engineering, University Tun Hussein Onn Malaysia (UTHM), Parit Raja, Batu Pahat, Johor, Malaysia

Faculty of Mechanical and Manufacturing Engineering, University Tun Hussein Onn Malaysia (UTHM), Parit Raja, Batu Pahat, Johor, Malaysia Applied Mechanics and Materials Vol. 393 (2013) pp 305-310 (2013) Trans Tech Publications, Switzerland doi:10.4028/www.scientific.net/amm.393.305 The Implementation of Cell-Centred Finite Volume Method

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

STUDY OF FLOW PERFORMANCE OF A GLOBE VALVE AND DESIGN OPTIMISATION

STUDY OF FLOW PERFORMANCE OF A GLOBE VALVE AND DESIGN OPTIMISATION Journal of Engineering Science and Technology Vol. 12, No. 9 (2017) 2403-2409 School of Engineering, Taylor s University STUDY OF FLOW PERFORMANCE OF A GLOBE VALVE AND DESIGN OPTIMISATION SREEKALA S. K.

More information

The 3D DSC in Fluid Simulation

The 3D DSC in Fluid Simulation The 3D DSC in Fluid Simulation Marek K. Misztal Informatics and Mathematical Modelling, Technical University of Denmark mkm@imm.dtu.dk DSC 2011 Workshop Kgs. Lyngby, 26th August 2011 Governing Equations

More information

Finite Element Convergence for Time-Dependent PDEs with a Point Source in COMSOL 4.2

Finite Element Convergence for Time-Dependent PDEs with a Point Source in COMSOL 4.2 Finite Element Convergence for Time-Dependent PDEs with a Point Source in COMSOL 4.2 David W. Trott and Matthias K. Gobbert Department of Mathematics and Statistics, University of Maryland, Baltimore County,

More information