Skip to content
forked from SuXY15/KerM

Kernel Mixing Model for Turbulent Combustion and Transport-PDF method

Notifications You must be signed in to change notification settings

adongre279/KerM

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KerM

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

1. Usage

  • Fortran version:

    # build executable file (single precision float)
    make fortran
    # run simulation, faster than cpp version
    ./mix
    # show results
    python performance.py fortran
    • Comparison results of 10k particles for EMST and 50k particles for other models (KerM sigma_k=0.25)

    • Performance of mixing models (right side is achieved by further optimization and acceleration, but leads to around 2% timescale error)

  • C++ Version:

    # 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 no IEM assisted, for original EMST implementation, please refer to the Fortran version)

  • Python Version:

    # 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)

2. Implementations

Please refer to TheoryGuide.pdf

Footnotes

  1. Original EMST implementation https://tcg.mae.cornell.edu/emst/

About

Kernel Mixing Model for Turbulent Combustion and Transport-PDF method

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Fortran 73.7%
  • Python 13.3%
  • C++ 12.3%
  • Makefile 0.7%