You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.8KB

3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #sensBVP
  2. This is the public repository for the code sensBVP as cited in the paper
  3. [Direct Sensitivity Analysis for ignition delay
  4. times](https://doi.org/10.1016/j.combustflame.2019.08.007). Its use is
  5. in calculating the sensitivity of ignition delay time to rate
  6. coefficients. In sensBVP, this is carried out by transforming the
  7. initial value problem to a boundary value problem, reducing the time to
  8. calculate the sensitivity coefficients by at least an order of
  9. magnitude.
  10. In order to install sensBVP, modify the various paths in the Makefile.
  11. Make sure that SUNDIALS (v3.1.1 or higher), Cantera (2.3 or higher), and
  12. GSL are installed. Run make all, followed by make install in the source
  13. directory.
  14. After installing, the executable sensBVP can be executed as follows:
  15. ```
  16. sensBVP -a <absolute tolerance>
  17. -r <relative tolerance>
  18. -f <BVP residue tolerance>
  19. -T <initial temperature in K>
  20. -P <initial pressure in atm>
  21. -m <mechanism file (cti or xml)>
  22. -c <mole fraction composition>
  23. -t <integration time>
  24. -s <enable sensitivity analysis>
  25. -n <disable solution of BVP>
  26. ```
  27. Execute sensBVP -h for all available options. The time evolution of
  28. species mass fractions, temperature, and pressure can be found in
  29. "output.dat". The ignition delay sensitivities can be found in
  30. "ignitionSensitivities.dat".
  31. Try the cases in the examples directory.
  32. If you use this code in your work, please cite:
  33. ```
  34. @article{GURURAJAN2019478,
  35. title = "Direct sensitivity analysis for ignition delay times",
  36. journal = "Combustion and Flame",
  37. volume = "209",
  38. pages = "478 - 480",
  39. year = "2019",
  40. issn = "0010-2180",
  41. doi = "https://doi.org/10.1016/j.combustflame.2019.08.007",
  42. url = "http://www.sciencedirect.com/science/article/pii/S0010218019303645",
  43. author = "Vyaas Gururajan and Fokion N. Egolfopoulos",
  44. keywords = "Ignition, Sensitivity, Jacobian, Chemical kinetics",
  45. }
  46. ```