Andrew Moa Blog Site

Solver Verification Comparison - Laminar Flow Between Rotating and Static Concentric Cylinders

This paper uses different CFD solvers to verify the laminar flow problem. Verify the accuracy of each solver by listing the operating procedures and differences in the output results of different solvers.


1. Problem description

As shown in the figure below, a fixed-constant laminar flow model between two concentric cylinders is established. The flow is caused by the rotation of the inner cylinder at a constant angular velocity, while the outer cylinder remains stationary. Using periodic boundaries, only a portion of the basin needs to be modeled. The physical model and input data are shown in the following table.

16 minutes to read
Andrew Moa

Compile and install OpenFOAM and parallelize PBS under ArchLinux

1. Download source

1.1 Download OpenFOAM source

Create a new OpenFOAM directory under the ${HOME}:

cd ${HOME}
mkdir OpenFOAM && cd OpenFOAM

Download the source of OpenFOAM and ThirdParty from GitHub and put it in the ${HOME}/OpenFOAM:

git clone https://github.com/OpenFOAM/OpenFOAM-dev --depth=1
git clone https://github.com/OpenFOAM/ThirdParty-dev --depth=1

1.2 Download Torque (PBS) source

Here we use Torque from AUR. CentOS, Debian and SUSE operating systems can download ready-made binary packages from OpenPBS on Github. If you use OpenPBS or PBS Pro, please skip Section 3 of this article and refer to other documents to configure PBS.

6 minutes to read
Andrew Moa