February 26, 2015

Convection and diffusion, transport equations in OpenFOAM

26.2.15 Posted by Florin 1 comment
In the CFDPython series I showed the components of the Navier-Stokes equations and I've solved them one by one; this helped a lot in understanding the complexity of the momentum equations. In this post I will show the effects of diffusion and convection in a passive scalar transport problem solved with...

February 11, 2015

Solving the Poisson equation using Python

11.2.15 Posted by Florin No comments
This  post is part of the CFDPython series that shows how to solve the Navier Stokes equations with finite difference method by use of Python. This is the last step to the small solver we want to create. The Poisson equation is actually the Laplace equation to which we add a source term to the...

February 04, 2015

Solving the pressure pulse traveling in a tube with sonicFoam

4.2.15 Posted by Florin No comments
This is the shock tube problem solved 1D using OpenFOAM. Problem description: a cylindrical tube is separated at the middle with a non-deformable membrane; in right hand side chamber the pressure is 10 000 Pa and temperature is 248 K; in the left hand side chamber the pressure is 100 000 Pa and temperature...

February 01, 2015

Creating grids with blockMesh

1.2.15 Posted by Florin No comments
OpenFOAM, like any other CFD package that uses the finite volume method, needs a mesh on which to solve the NS equations. There are a lot of tools to make meshes these days, free or commercial. Today I will focus on one of the tools provided with OpenFOAM: the blockMesh; this is mainly a dictionary in which the user types in vertices, edges, blocks and settings for the mesh and afterwards defines...