Disclaimer : under construction
Tags :
- open_source : pypi, gitlab.com, readthedocs.
- tool : Multispecies thermodynamics tools.
- CFD : Include a “gasout” generic tool to add burnt hot gases in a cold flow.
- Python package : available on pypi.
ms-thermo
This small package tackle most of the problems coming with the setup of multispecies CFD simulations.
The following example shows how to change the temperature of a CFD field :
>>> import ms_thermo as ms
>>> case = ms.State()
>>> print(case)
Current primitive state of the mixture
| Most Common | Min | Max
----------------------------------------------------
rho| 1.17192e+00 | 1.172e+00 | 1.172e+00
energy| 2.16038e+05 | 2.160e+05 | 2.160e+05
temperature| 3.00000e+02 | 3.000e+02 | 3.000e+02
pressure| 1.01325e+05 | 1.013e+05 | 1.013e+05
Y_O2| 2.32500e-01 | 2.325e-01 | 2.325e-01
Y_N2| 7.67500e-01 | 7.675e-01 | 7.675e-01
>>> case.temperature = 1200
>>> print(case)
Current primitive state of the mixture
| Most Common | Min | Max
----------------------------------------------------
rho| 2.92980e-01 | 2.930e-01 | 2.930e-01
energy| 9.41143e+05 | 9.411e+05 | 9.411e+05
temperature| 1.20000e+03 | 1.200e+03 | 1.200e+03
pressure| 1.01325e+05 | 1.013e+05 | 1.013e+05
Y_O2| 2.32500e-01 | 2.325e-01 | 2.325e-01
Y_N2| 7.67500e-01 | 7.675e-01 | 7.675e-01
It is available on pipy, documentation is on readtthedocs, sources are mirrored on gitlab.com