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
- Host: GitHub
- URL: https://github.com/chiefenne/jet
- Owner: chiefenne
- License: mit
- Created: 2015-08-28T11:15:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-07T10:43:32.000Z (about 1 year ago)
- Last Synced: 2025-02-14T05:41:17.801Z (3 months ago)
- Topics: jet, python
- Language: Jupyter Notebook
- Homepage:
- Size: 291 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.