gitextract_tl1dvoty/ ├── .github/ │ └── workflows/ │ ├── build-multiarch.yml │ ├── build.yml │ ├── build_multi_numpy_scipy.yml │ ├── build_third_party_packagers.yml │ ├── publish-pypi.yml │ └── quality.yml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── AUTHORS ├── Changelog.md ├── Justfile ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── asv.conf.json ├── bench/ │ └── ht function performance comparison.ipynb ├── conftest.py ├── dev/ │ ├── basic_standalone_ht_check.py │ ├── cx_freeze/ │ │ └── cx_freeze_basic_standalone_check_builder.py │ └── prerelease.py ├── docs/ │ ├── conf.py │ ├── ht.air_cooler.rst │ ├── ht.boiling_flow.rst │ ├── ht.boiling_nucleic.rst │ ├── ht.boiling_plate.rst │ ├── ht.condensation.rst │ ├── ht.conduction.rst │ ├── ht.conv_external.rst │ ├── ht.conv_free_enclosed.rst │ ├── ht.conv_free_immersed.rst │ ├── ht.conv_internal.rst │ ├── ht.conv_jacket.rst │ ├── ht.conv_packed_bed.rst │ ├── ht.conv_plate.rst │ ├── ht.conv_supercritical.rst │ ├── ht.conv_tube_bank.rst │ ├── ht.conv_two_phase.rst │ ├── ht.core.rst │ ├── ht.hx.rst │ ├── ht.insulation.rst │ ├── ht.numba.rst │ ├── ht.radiation.rst │ ├── ht.vectorized.rst │ ├── index.rst │ ├── plots/ │ │ └── Nu_external_cylinder.py │ ├── test_documentation.py │ └── tutorial.rst ├── ht/ │ ├── air_cooler.py │ ├── boiling_flow.py │ ├── boiling_nucleic.py │ ├── boiling_plate.py │ ├── condensation.py │ ├── conduction.py │ ├── conv_external.py │ ├── conv_free_enclosed.py │ ├── conv_free_immersed.py │ ├── conv_internal.py │ ├── conv_jacket.py │ ├── conv_packed_bed.py │ ├── conv_plate.py │ ├── conv_supercritical.py │ ├── conv_tube_bank.py │ ├── conv_two_phase.py │ ├── core.py │ ├── data/ │ │ ├── square_C1s_Phadkeb.npy │ │ ├── square_Ns_Phadkeb.npy │ │ ├── triangular_C1s_Phadkeb.npy │ │ └── triangular_Ns_Phadkeb.npy │ ├── hx.py │ ├── insulation.py │ ├── numba.py │ ├── numba_vectorized.py │ ├── py.typed │ ├── radiation.py │ ├── units.py │ └── vectorized.py ├── pyproject.toml ├── requirements_security.txt └── tests/ ├── test_air_cooler.py ├── test_boiling_flow.py ├── test_boiling_nucleic.py ├── test_boiling_plate.py ├── test_condensation.py ├── test_conduction.py ├── test_conv_external.py ├── test_conv_free_enclosed.py ├── test_conv_free_immersed.py ├── test_conv_internal.py ├── test_conv_jacket.py ├── test_conv_packed_bed.py ├── test_conv_plate.py ├── test_conv_supercritical.py ├── test_conv_tube_bank.py ├── test_conv_two_phase.py ├── test_core.py ├── test_hx.py ├── test_numba.py ├── test_radiation.py ├── test_units.py └── test_vectorized.py