An open API service indexing awesome lists of open source software.

https://github.com/chiefenne/jet

Numerical solution of a 2D turbulent hot jet exiting from a nozzle into still atmosphere
https://github.com/chiefenne/jet

jet python

Last synced: about 1 month ago
JSON representation

Numerical solution of a 2D turbulent hot jet exiting from a nozzle into still atmosphere

Awesome Lists containing this project

README

        

# JET

Numerical solution of a 2D turbulent hot jet exiting from a nozzle into still atmosphere.

The numerical solution procedure adopts Keller's BOX scheme. It is slightly changed, so that linearizations are skipped and instead a non-linear solver ([fsolve](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.fsolve.html)) from the [SciPy package](https://docs.scipy.org/doc/scipy/reference/index.html) is adopted.

During my master thesis 30 years ago I had to rework the numerical solution procedure and also the software given in the book "Physical and computational aspects of convective heat transfer" by T. Cebeci and P. Bradshaw.

The code was done in FORTRAN 77 and the plotting was performed using the BENSON plot library on a VT200 or VT300 series monochrome terminal with graphics capability.

This work here is revisiting the topic with modern programming tools like Python and Matplotlib.