CodeBlue

Welcome to my blog!

Creating your own OpenFOAM solver

2022-02-08 OpenFOAM Satya K
AIM: The aim of this project is to create a custom solver in OpenFOAM that solves a transport equation for a scalar named s. This project also aims to understand the structure of the OpenFOAM files and organisation that will help to make any changes required to make a new solver OBJECTIVES: The solver will be modified from icoFoam which is present in $FOAM/applications/solvers/incompressible/icoFoam. The case should be a scalar quantity ’s’ that is being transported by velocity u and the transport equation is represented by $$ \frac{\partial u}{\partial t} + \nabla \cdot (u s) = 0 $$ The case will be modified from Continue reading