Coder Social home page Coder Social logo

hsiehty / ucns3d Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ucns3d-team/ucns3d

0.0 0.0 0.0 61.57 MB

Unstructured Compressible Navier Stokes 3D code (UCNS3D)

Home Page: https://ucns3d.com

License: GNU General Public License v3.0

Shell 0.31% C 0.07% Fortran 99.37% Makefile 0.18% Dockerfile 0.07%

ucns3d's Introduction

UCNS3D: The Open-Source High-Order Finite-Volume CFD Solver

Overview

This repository contains the source code ucns3d Computational Fluid Dynamics (CFD) solver and instructions on how to use it with representative examples.

UCNS3D is an open-source computational solver for compressible flows on unstructured meshes. State-of-the-art high-order methods are are available in a versatile 2D and 3D unstructured CFD framework for a wide-range of compressible flow problems.

The 2022 "whitepaper" contains a detail overview of the methods, capabilities and application of the solver.

Overview

The ucns3d solver is portable to Linux operating systems and MacOS (Catalina or newer) as well as on Windows 10 using Windows Subsystem for Linux (WLS-2). The parallel CFD code employing MPI+OpenMP for distributed memory machines.

ucns3d can deal with triangular, quadrilateral,tetrahedral,pyramidal, prismatic, and hexahedral elements.

Install

There are two main methods to locally install the solver and run the solver.

  • Install through Docker
  • Install all dependencies and compilers manually.

Docker

  1. Install Docker Desktop on any operating system you are working. For Windows 10 or 11 you would need WSL ideally WSL2 installed, follow Microsoft's instructions.

  2. In your bash terminal build the ucns3d image, you would need invoke docker build from the repository root directory:

docker build . -t ucns3d -f Dockerfile
  1. Once the image is build run the image, you can run the image interactively like so:
docker run -ti ucns3d

The current Dockerfile contains an example case under tests. Alternatively, you can mount a tmp directory and copy other uses cases when you run the image like so:

docker run -v $PWD/tmp/:/tmp/ -ti ucns3d

Manual Build

The source code is written in Fortran and can be compiled in various environment. The following OS options are available.

  • Linux x86-64 (Tested on Redhat, Ubuntu, Centos, Suse).
  • MacOS Intel based (Catalina and newer).
  • Windows 10 through WSL2, Ubuntu 20.04

Build

The source code requires compilation and linking both static and dynamic libraries. The source code can be compiled with the following compilers.

  • Intel Parallel Studio Version 17 or newer.
  • G-Fortran and gcc with an MPI distribution.

Compilation Dependencies

The solver makes use of BLAS libraries that are required for the compilation and running of the solver.

  • Intel MKL library
  • OpenBLAS

The mesh is partitioned using metis software.

  • Open a terminal window in the src directory

  • Ensure that you have selected the desirable compiling options in the Makefile, by specifying the appropriate fortran compiler (ftn, ifort etc) and ensure that you have copied the static libraries from the lib directory. Always compile with full debug options when developing something new, and then proceed to the more optimised compiler options.

  • For a clean installation

make -f Makefile clean all
  • For recompiling changed files and their dependencies
make -f Makefile
  • the name of the executable is ucns3d_p.

Running

For running ucns3d you will need the following files in a directory of your choice:

  • a grid file generated with any software packages exported in Ansys fluent format (ASCII *.msh extension), given the name grid.msh or their translated to native format files GRID.cel, GRID.vrt, GRID.bnd (a detailed description of the files can be found in FILES.md)
  • the UCNS3D.DAT parameter file responsible for all the settings of the code (details for the parameters of this can be found in PARAMETERS.md file)
  • the executable ucns3d_p
  • For interactively running the code specify the number of threads to be used by typing in the terminal window
export OMP_NUM_THREADS=N

N being the number of threads to be used (use 1 for MPI only mode)

  • in the same terminal window run the code by typing
mpirun -np M ./ucns3d_p

M being the number of MPI processes (at least 2 are required), for running at different HPC systems sample scripts and libraries are provided.

Visualisation of outputs

The solver outputs to different formats enable post-processing and visualisation through the folowing software

Examples

Representative tests can be downloaded from

tests1

tests2

and a detailed description is provided in the file TESTS.md

License

The ucns3d solver is distributed under the GNU General Public Licence v3 See the LICENSE file for details.

Support

Please get in touch and let us know how we can make this project better [email protected]

ucns3d's People

Contributors

takiscfd avatar antonis-f avatar antonis-arrival avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.