├── .DS_Store ├── .gitattributes ├── .github └── workflows │ ├── Compile_manual.yaml │ ├── codeql-analysis.yml │ ├── draft-pdf.yml │ └── python-app.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Manual.md ├── Manual.zip ├── README.md ├── coverage.xml ├── dist ├── HydDown-0.20.0-py3-none-any.whl ├── hyddown-0.20.0.tar.gz ├── hyddown-0.21.0-py3-none-any.whl ├── hyddown-0.21.0.tar.gz ├── hyddown-0.22.0-py3-none-any.whl ├── hyddown-0.22.0.tar.gz ├── hyddown-0.23.0-py3-none-any.whl └── hyddown-0.23.0.tar.gz ├── docs ├── .DS_Store ├── MANUAL.pdf ├── compile_book.bat ├── img │ ├── Byrnes_run7.png │ ├── Byrnes_run8.png │ ├── Byrnes_run9.png │ ├── First_law_open_system.png │ ├── KIT_1.png │ ├── KIT_III_tprofile1.png │ ├── KIT_III_tprofile2.png │ ├── KIT_II_tprofile1.png │ ├── KIT_II_tprofile2.png │ ├── KIT_TypeIII_temp.png │ ├── KIT_TypeIV.png │ ├── KIT_TypeIV_temp.png │ ├── KIT_type_III.png │ ├── N2_filling.png │ ├── NG_validation.png │ ├── PSV.pdf │ ├── Sketch.png │ ├── Striednig_fillingH2_10MPa_min.png │ ├── Striednig_fillingH2_30MPa_min.png │ ├── Striednig_fillingH2_5MPa_min.png │ ├── TypeIII_1.png │ ├── TypeIII_Temp.png │ ├── demiguel.png │ ├── dicken_typeIII.png │ ├── dicken_typeIII_profile1.png │ ├── dicken_typeIII_profile2.png │ ├── dischargeH2_woodfield.png │ ├── hysteresis.pdf │ ├── jet_and_pool_heat_flux_graph.pdf │ ├── ng_all.png │ ├── ng_pe.png │ └── unisim_validation.png ├── references.bib └── title.txt ├── input.yml ├── joss ├── paper.bib └── paper.md ├── pyproject.toml ├── requirements.txt ├── scripts ├── hyddown_main.py ├── main_bimaterial.py ├── streamlit_app.py ├── streamlit_bdv_sbapp.py ├── streamlit_cvapp.py ├── streamlit_genapp.py ├── streamlit_h2app.py ├── streamlit_sbapp.py ├── streamlit_simple.py └── validation_plot.py ├── setup.cfg ├── src ├── HydDown.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── hyddown │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ └── materials.cpython-311.pyc │ ├── examples │ │ ├── LPG.yml │ │ ├── LPG_small.yml │ │ ├── bdv_sb.yml │ │ ├── controlvalve.yml │ │ ├── cv_filling.yml │ │ ├── filling.yml │ │ ├── fillingH2.yml │ │ ├── input.yml │ │ ├── isenthalpic.yml │ │ ├── isentropic.yml │ │ ├── mdot_filling.yml │ │ ├── ng.yml │ │ ├── ng_inlet.yml │ │ ├── ng_outlet.yml │ │ ├── psv.yml │ │ ├── psv_sb.yml │ │ ├── relief.yml │ │ └── scema_check.yml │ ├── fire.py │ ├── hdclass.py │ ├── hdclass.pyc │ ├── materials.py │ ├── test_all.py │ ├── thermesh.py │ ├── transport.py │ └── validator.py └── main.py └── validation ├── 1D-check-calc-openthermo.yml ├── Air_3-7kPa_21mm.yml ├── Air_3-7kPa_271mm.yml ├── Air_790kPa_21mm.yml ├── Byrnes_run7.yml ├── Byrnes_run8.yml ├── Byrnes_run9.yml ├── CO2_pipe.yml ├── CO2_pipe_DN100.txt ├── CO2_pipe_DN200.txt ├── CO2_pipe_DN250.txt ├── CO2_tank.txt ├── CO2_tank_BDV.yml ├── LPG-heat_load.txt ├── N2_Exp_I1.yml ├── NG_Exp.yml ├── NG_Exp_S9.yml ├── Striednig_fillingH2.yml ├── Striednig_fillingH2_10MPa_min.yml ├── Striednig_fillingH2_30MPa_min.yml ├── Striednig_fillingH2_5MPa_min.yml ├── TypeIII.yml ├── Unisim_Type_IV.csv ├── demiguel.yml ├── demiguel_type_III.yml ├── dickens_typeIII.yml ├── dischargeH2_woodfield.yml ├── fillingH2_woodfield.yml ├── kit.yml ├── kit_composite.yml ├── kit_composite_typeIII.yml ├── unisim-1D-H2 copy.yml └── unisim-1D-H2.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Compile_manual.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.github/workflows/Compile_manual.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/draft-pdf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.github/workflows/draft-pdf.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include src *.yml 2 | -------------------------------------------------------------------------------- /Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/Manual.md -------------------------------------------------------------------------------- /Manual.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/Manual.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/README.md -------------------------------------------------------------------------------- /coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/coverage.xml -------------------------------------------------------------------------------- /dist/HydDown-0.20.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/HydDown-0.20.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/hyddown-0.20.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.20.0.tar.gz -------------------------------------------------------------------------------- /dist/hyddown-0.21.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.21.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/hyddown-0.21.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.21.0.tar.gz -------------------------------------------------------------------------------- /dist/hyddown-0.22.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.22.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/hyddown-0.22.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.22.0.tar.gz -------------------------------------------------------------------------------- /dist/hyddown-0.23.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.23.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/hyddown-0.23.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/dist/hyddown-0.23.0.tar.gz -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/MANUAL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/MANUAL.pdf -------------------------------------------------------------------------------- /docs/compile_book.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/compile_book.bat -------------------------------------------------------------------------------- /docs/img/Byrnes_run7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Byrnes_run7.png -------------------------------------------------------------------------------- /docs/img/Byrnes_run8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Byrnes_run8.png -------------------------------------------------------------------------------- /docs/img/Byrnes_run9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Byrnes_run9.png -------------------------------------------------------------------------------- /docs/img/First_law_open_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/First_law_open_system.png -------------------------------------------------------------------------------- /docs/img/KIT_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_1.png -------------------------------------------------------------------------------- /docs/img/KIT_III_tprofile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_III_tprofile1.png -------------------------------------------------------------------------------- /docs/img/KIT_III_tprofile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_III_tprofile2.png -------------------------------------------------------------------------------- /docs/img/KIT_II_tprofile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_II_tprofile1.png -------------------------------------------------------------------------------- /docs/img/KIT_II_tprofile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_II_tprofile2.png -------------------------------------------------------------------------------- /docs/img/KIT_TypeIII_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_TypeIII_temp.png -------------------------------------------------------------------------------- /docs/img/KIT_TypeIV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_TypeIV.png -------------------------------------------------------------------------------- /docs/img/KIT_TypeIV_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_TypeIV_temp.png -------------------------------------------------------------------------------- /docs/img/KIT_type_III.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/KIT_type_III.png -------------------------------------------------------------------------------- /docs/img/N2_filling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/N2_filling.png -------------------------------------------------------------------------------- /docs/img/NG_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/NG_validation.png -------------------------------------------------------------------------------- /docs/img/PSV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/PSV.pdf -------------------------------------------------------------------------------- /docs/img/Sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Sketch.png -------------------------------------------------------------------------------- /docs/img/Striednig_fillingH2_10MPa_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Striednig_fillingH2_10MPa_min.png -------------------------------------------------------------------------------- /docs/img/Striednig_fillingH2_30MPa_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Striednig_fillingH2_30MPa_min.png -------------------------------------------------------------------------------- /docs/img/Striednig_fillingH2_5MPa_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/Striednig_fillingH2_5MPa_min.png -------------------------------------------------------------------------------- /docs/img/TypeIII_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/TypeIII_1.png -------------------------------------------------------------------------------- /docs/img/TypeIII_Temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/TypeIII_Temp.png -------------------------------------------------------------------------------- /docs/img/demiguel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/demiguel.png -------------------------------------------------------------------------------- /docs/img/dicken_typeIII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/dicken_typeIII.png -------------------------------------------------------------------------------- /docs/img/dicken_typeIII_profile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/dicken_typeIII_profile1.png -------------------------------------------------------------------------------- /docs/img/dicken_typeIII_profile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/dicken_typeIII_profile2.png -------------------------------------------------------------------------------- /docs/img/dischargeH2_woodfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/dischargeH2_woodfield.png -------------------------------------------------------------------------------- /docs/img/hysteresis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/hysteresis.pdf -------------------------------------------------------------------------------- /docs/img/jet_and_pool_heat_flux_graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/jet_and_pool_heat_flux_graph.pdf -------------------------------------------------------------------------------- /docs/img/ng_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/ng_all.png -------------------------------------------------------------------------------- /docs/img/ng_pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/ng_pe.png -------------------------------------------------------------------------------- /docs/img/unisim_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/img/unisim_validation.png -------------------------------------------------------------------------------- /docs/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/references.bib -------------------------------------------------------------------------------- /docs/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/docs/title.txt -------------------------------------------------------------------------------- /input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/input.yml -------------------------------------------------------------------------------- /joss/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/joss/paper.bib -------------------------------------------------------------------------------- /joss/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/joss/paper.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/hyddown_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/hyddown_main.py -------------------------------------------------------------------------------- /scripts/main_bimaterial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/main_bimaterial.py -------------------------------------------------------------------------------- /scripts/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_app.py -------------------------------------------------------------------------------- /scripts/streamlit_bdv_sbapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_bdv_sbapp.py -------------------------------------------------------------------------------- /scripts/streamlit_cvapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_cvapp.py -------------------------------------------------------------------------------- /scripts/streamlit_genapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_genapp.py -------------------------------------------------------------------------------- /scripts/streamlit_h2app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_h2app.py -------------------------------------------------------------------------------- /scripts/streamlit_sbapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_sbapp.py -------------------------------------------------------------------------------- /scripts/streamlit_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/streamlit_simple.py -------------------------------------------------------------------------------- /scripts/validation_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/scripts/validation_plot.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/HydDown.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/HydDown.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/HydDown.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/HydDown.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/HydDown.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/HydDown.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/HydDown.egg-info/requires.txt -------------------------------------------------------------------------------- /src/HydDown.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | hyddown 2 | -------------------------------------------------------------------------------- /src/hyddown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/__init__.py -------------------------------------------------------------------------------- /src/hyddown/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/__init__.pyc -------------------------------------------------------------------------------- /src/hyddown/__pycache__/materials.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/__pycache__/materials.cpython-311.pyc -------------------------------------------------------------------------------- /src/hyddown/examples/LPG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/LPG.yml -------------------------------------------------------------------------------- /src/hyddown/examples/LPG_small.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/LPG_small.yml -------------------------------------------------------------------------------- /src/hyddown/examples/bdv_sb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/bdv_sb.yml -------------------------------------------------------------------------------- /src/hyddown/examples/controlvalve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/controlvalve.yml -------------------------------------------------------------------------------- /src/hyddown/examples/cv_filling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/cv_filling.yml -------------------------------------------------------------------------------- /src/hyddown/examples/filling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/filling.yml -------------------------------------------------------------------------------- /src/hyddown/examples/fillingH2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/fillingH2.yml -------------------------------------------------------------------------------- /src/hyddown/examples/input.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/input.yml -------------------------------------------------------------------------------- /src/hyddown/examples/isenthalpic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/isenthalpic.yml -------------------------------------------------------------------------------- /src/hyddown/examples/isentropic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/isentropic.yml -------------------------------------------------------------------------------- /src/hyddown/examples/mdot_filling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/mdot_filling.yml -------------------------------------------------------------------------------- /src/hyddown/examples/ng.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/ng.yml -------------------------------------------------------------------------------- /src/hyddown/examples/ng_inlet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/ng_inlet.yml -------------------------------------------------------------------------------- /src/hyddown/examples/ng_outlet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/ng_outlet.yml -------------------------------------------------------------------------------- /src/hyddown/examples/psv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/psv.yml -------------------------------------------------------------------------------- /src/hyddown/examples/psv_sb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/psv_sb.yml -------------------------------------------------------------------------------- /src/hyddown/examples/relief.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/relief.yml -------------------------------------------------------------------------------- /src/hyddown/examples/scema_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/examples/scema_check.yml -------------------------------------------------------------------------------- /src/hyddown/fire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/fire.py -------------------------------------------------------------------------------- /src/hyddown/hdclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/hdclass.py -------------------------------------------------------------------------------- /src/hyddown/hdclass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/hdclass.pyc -------------------------------------------------------------------------------- /src/hyddown/materials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/materials.py -------------------------------------------------------------------------------- /src/hyddown/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/test_all.py -------------------------------------------------------------------------------- /src/hyddown/thermesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/thermesh.py -------------------------------------------------------------------------------- /src/hyddown/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/transport.py -------------------------------------------------------------------------------- /src/hyddown/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/hyddown/validator.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/src/main.py -------------------------------------------------------------------------------- /validation/1D-check-calc-openthermo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/1D-check-calc-openthermo.yml -------------------------------------------------------------------------------- /validation/Air_3-7kPa_21mm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Air_3-7kPa_21mm.yml -------------------------------------------------------------------------------- /validation/Air_3-7kPa_271mm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Air_3-7kPa_271mm.yml -------------------------------------------------------------------------------- /validation/Air_790kPa_21mm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Air_790kPa_21mm.yml -------------------------------------------------------------------------------- /validation/Byrnes_run7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Byrnes_run7.yml -------------------------------------------------------------------------------- /validation/Byrnes_run8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Byrnes_run8.yml -------------------------------------------------------------------------------- /validation/Byrnes_run9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Byrnes_run9.yml -------------------------------------------------------------------------------- /validation/CO2_pipe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_pipe.yml -------------------------------------------------------------------------------- /validation/CO2_pipe_DN100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_pipe_DN100.txt -------------------------------------------------------------------------------- /validation/CO2_pipe_DN200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_pipe_DN200.txt -------------------------------------------------------------------------------- /validation/CO2_pipe_DN250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_pipe_DN250.txt -------------------------------------------------------------------------------- /validation/CO2_tank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_tank.txt -------------------------------------------------------------------------------- /validation/CO2_tank_BDV.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/CO2_tank_BDV.yml -------------------------------------------------------------------------------- /validation/LPG-heat_load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/LPG-heat_load.txt -------------------------------------------------------------------------------- /validation/N2_Exp_I1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/N2_Exp_I1.yml -------------------------------------------------------------------------------- /validation/NG_Exp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/NG_Exp.yml -------------------------------------------------------------------------------- /validation/NG_Exp_S9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/NG_Exp_S9.yml -------------------------------------------------------------------------------- /validation/Striednig_fillingH2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Striednig_fillingH2.yml -------------------------------------------------------------------------------- /validation/Striednig_fillingH2_10MPa_min.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Striednig_fillingH2_10MPa_min.yml -------------------------------------------------------------------------------- /validation/Striednig_fillingH2_30MPa_min.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Striednig_fillingH2_30MPa_min.yml -------------------------------------------------------------------------------- /validation/Striednig_fillingH2_5MPa_min.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Striednig_fillingH2_5MPa_min.yml -------------------------------------------------------------------------------- /validation/TypeIII.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/TypeIII.yml -------------------------------------------------------------------------------- /validation/Unisim_Type_IV.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/Unisim_Type_IV.csv -------------------------------------------------------------------------------- /validation/demiguel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/demiguel.yml -------------------------------------------------------------------------------- /validation/demiguel_type_III.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/demiguel_type_III.yml -------------------------------------------------------------------------------- /validation/dickens_typeIII.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/dickens_typeIII.yml -------------------------------------------------------------------------------- /validation/dischargeH2_woodfield.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/dischargeH2_woodfield.yml -------------------------------------------------------------------------------- /validation/fillingH2_woodfield.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/fillingH2_woodfield.yml -------------------------------------------------------------------------------- /validation/kit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/kit.yml -------------------------------------------------------------------------------- /validation/kit_composite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/kit_composite.yml -------------------------------------------------------------------------------- /validation/kit_composite_typeIII.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/kit_composite_typeIII.yml -------------------------------------------------------------------------------- /validation/unisim-1D-H2 copy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/unisim-1D-H2 copy.yml -------------------------------------------------------------------------------- /validation/unisim-1D-H2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andr1976/HydDown/HEAD/validation/unisim-1D-H2.yml --------------------------------------------------------------------------------