Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. #sensBVP
  2. This is the public repository for the code sensBVP. Its use is in
  3. calculating sensitivity coefficients of ignition delay time to rate
  4. coefficients. In sensBVP, this is carried out by transforming the
  5. initial value problem to a boundary value problem, reducing the time to
  6. calculate the sensitivity coefficients by at least an order of
  7. magnitude.
  8. In order to install sensBVP, modify the various paths in the Makefile.
  9. Make sure that SUNDIALS (v3.1.1 or higher), Cantera (2.3 or higher), and
  10. GSL are installed. Run make all, followed by make install in the source
  11. directory.
  12. After installing, the executable sensBVP can be executed as follows:
  13. ```
  14. sensBVP -a <absolute tolerance>
  15. -r <relative tolerance>
  16. -f <BVP residue tolerance>
  17. -T <initial temperature in K>
  18. -P <initial pressure in atm>
  19. -m <mechanism file (cti or xml)>
  20. -c <mole fraction composition>
  21. -t <integration time>
  22. -s <enable sensitivity analysis>
  23. ```
  24. Execute sensBVP -h for all available options. The time evolution of
  25. species mass fractions, temperature, and pressure can be found in
  26. "output.dat". The ignition delay sensitivities can be found in
  27. "ignitionSensitivities.dat".
  28. Try the cases in the examples directory.