Droplet Lagrangian Transient One-dimensional Reacting Code Implementation of both liquid and gas phase governing equations.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

180 lines
2.5KB

  1. # VSCode
  2. .vscode/*
  3. !.vscode/settings.json
  4. !.vscode/tasks.json
  5. !.vscode/launch.json
  6. !.vscode/extensions.json
  7. *.code-workspace
  8. # Local History for Visual Studio Code
  9. .history/
  10. # Common credential files
  11. **/credentials.json
  12. **/client_secrets.json
  13. **/client_secret.json
  14. *creds*
  15. *.dat
  16. *password*
  17. *.httr-oauth*
  18. # Private Node Modules
  19. node_modules/
  20. creds.js
  21. # Private Files
  22. *.json
  23. *.csv
  24. *.csv.gz
  25. *.tsv
  26. *.tsv.gz
  27. *.xlsx
  28. # Mac/OSX
  29. .DS_Store
  30. # Byte-compiled / optimized / DLL files
  31. __pycache__/
  32. *.py[cod]
  33. *$py.class
  34. # C extensions
  35. *.so
  36. # Distribution / packaging
  37. .Python
  38. build/
  39. develop-eggs/
  40. dist/
  41. downloads/
  42. eggs/
  43. .eggs/
  44. lib/
  45. lib64/
  46. parts/
  47. sdist/
  48. var/
  49. wheels/
  50. share/python-wheels/
  51. *.egg-info/
  52. .installed.cfg
  53. *.egg
  54. MANIFEST
  55. # PyInstaller
  56. # Usually these files are written by a python script from a template
  57. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  58. *.manifest
  59. *.spec
  60. # Installer logs
  61. pip-log.txt
  62. pip-delete-this-directory.txt
  63. # Unit test / coverage reports
  64. htmlcov/
  65. .tox/
  66. .nox/
  67. .coverage
  68. .coverage.*
  69. .cache
  70. nosetests.xml
  71. coverage.xml
  72. *.cover
  73. *.py,cover
  74. .hypothesis/
  75. .pytest_cache/
  76. cover/
  77. # Translations
  78. *.mo
  79. *.pot
  80. # Django stuff:
  81. *.log
  82. local_settings.py
  83. db.sqlite3
  84. db.sqlite3-journal
  85. # Flask stuff:
  86. instance/
  87. .webassets-cache
  88. # Scrapy stuff:
  89. .scrapy
  90. # Sphinx documentation
  91. docs/_build/
  92. # PyBuilder
  93. .pybuilder/
  94. target/
  95. # Jupyter Notebook
  96. .ipynb_checkpoints
  97. # IPython
  98. profile_default/
  99. ipython_config.py
  100. # pyenv
  101. # For a library or package, you might want to ignore these files since the code is
  102. # intended to run in multiple environments; otherwise, check them in:
  103. # .python-version
  104. # pipenv
  105. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  106. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  107. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  108. # install all needed dependencies.
  109. #Pipfile.lock
  110. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  111. __pypackages__/
  112. # Celery stuff
  113. celerybeat-schedule
  114. celerybeat.pid
  115. # SageMath parsed files
  116. *.sage.py
  117. # Environments
  118. .env
  119. .venv
  120. env/
  121. venv/
  122. ENV/
  123. env.bak/
  124. venv.bak/
  125. # Spyder project settings
  126. .spyderproject
  127. .spyproject
  128. # Rope project settings
  129. .ropeproject
  130. # mkdocs documentation
  131. /site
  132. # mypy
  133. .mypy_cache/
  134. .dmypy.json
  135. dmypy.json
  136. # Pyre type checker
  137. .pyre/
  138. # pytype static type analyzer
  139. .pytype/
  140. # Cython debug symbols
  141. cython_debug/
  142. # clion
  143. cmake-build-*/
  144. .idea/
  145. bin/