Kernel Mixing Model for Turbulent Combustion and Transport PDF method.
This repo is for 0-D simple validation, for PaSR validation please refer to PaSR
-
Fortran version:
- src_fortran/mixing_test.f90: main program for testing.
- src_fortran/mixing_model_kerm.f90: source code of
KerM
with differential diffusion supported. - src_fortran/mixing_model_iem.f90: source code of
IEM
, used for comparison. - src_fortran/mixing_model_mcurl.f90: source code of
MC
, used for comparison. - src_fortran/emst.f and src_fortran/emst_subs.f: source code of
EMST
adopted from 1, used for comparison.
# build executable file (single precision float) make fortran # run simulation, faster than cpp version ./mix # show results python performance.py fortran
-
C++ Version:
- src_cpp/MixingModels.hpp: implementation of mixing models
- src_cpp/main.cpp: run simulation
- performance.py: show results
# build executable file make # run simulation, taking around 10 seconds for N=1000 ./mix # show results python performance.py
Comparison results of 4k particles for EMST and 100k particles for other models (
KerM
sigma_k=0.25)Performance of mixing models (
EMST-D
do not account aging properties and noIEM
assisted, for originalEMST
implementation, please refer to the Fortran version) -
Python Version:
- src_python/models.py: implementation of mixing models
- src_python/mixing_py.py: run simulation
# run simulation, EMST taking around 10 minute for N=1000 python src_python/mixing_py.py
Comparison results of 1k particles for EMST and 10k particles for other models (uniform weighted samples,
KerM
sigma_k=0.25)
Please refer to TheoryGuide.pdf
Footnotes
-
Original EMST implementation https://tcg.mae.cornell.edu/emst/ ↩